Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (7)
debhelper 12
· df9eb27e
Andreas Tille
authored
Apr 08, 2019
df9eb27e
Point Vcs fields to salsa.debian.org
· 4882e612
Andreas Tille
authored
Apr 08, 2019
4882e612
Standards-Version: 4.3.0
· bf18a892
Andreas Tille
authored
Apr 08, 2019
bf18a892
Secure URI in copyright format
· f6c59f37
Andreas Tille
authored
Apr 08, 2019
f6c59f37
Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
· 1a96963b
Andreas Tille
authored
Apr 08, 2019
1a96963b
Do not parse d/changelog
· cb307b7c
Andreas Tille
authored
Apr 08, 2019
cb307b7c
Remove autogenerated changes
· 8d32bf58
Andreas Tille
authored
Apr 08, 2019
8d32bf58
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
8d32bf58
blat (35-1)
unstable
; urgency=low
blat (35-1)
UNRELEASED
; urgency=low
* Initial release (Closes: #740601)
-- Andreas Tille <tille@debian.org>
Wed, 26 Feb
201
4
1
3:52:17
+0
1
00
-- Andreas Tille <tille@debian.org>
Mon, 08 Apr
201
9
1
1:36:24
+0
2
00
debian/compat
View file @
8d32bf58
9
12
debian/control
View file @
8d32bf58
Source: blat
Section: non-free/science
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Andreas Tille <tille@debian.org>
Build-Depends: debhelper (>= 9),
libpng12-dev | libpng-dev
Standards-Version: 3.9.5
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-med/blat.git
Vcs-Git: git://anonscm.debian.org/debian-med/blat.git
Section: non-free/science
XS-Autobuild: no
Priority: optional
Build-Depends: debhelper (>= 12~),
libpng-dev
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/blat
Vcs-Git: https://salsa.debian.org/med-team/blat.git
Homepage: http://genome.ucsc.edu/cgi-bin/hgBlat
Package: blat
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Depends: ${shlibs:Depends},
${misc:Depends}
Description: BLAST-Like Alignment Tool
BLAT on DNA is designed to quickly find sequences of 95% and greater
similarity of length 25 bases or more. It may miss more divergent or shorter
...
...
@@ -29,4 +31,3 @@ Description: BLAST-Like Alignment Tool
of probable homology, which are then loaded into memory for a detailed
alignment. Protein BLAT works in a similar manner, except with 4-mers rather
than 11-mers. The protein index takes a little more than 2 gigabytes.
debian/copyright
View file @
8d32bf58
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Format: http
s
://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: BLAT
Upstream-Contact: Jim Kent <jim_kent@pacbell.net>
Source: http://users.soe.ucsc.edu/~kent/src/
...
...
debian/rules
View file @
8d32bf58
...
...
@@ -2,7 +2,7 @@
DH_VERBOSE := 1
DEBPKGNAME := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')
include /usr/share/dpkg/default.mk
# alternatively to manually set those variables you can
# include /usr/share/cdbs/1/rules/buildvars.mk
...
...
@@ -10,7 +10,7 @@ DEBPKGNAME := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')
# a similar manner are welcome.
MACHTYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
DESTDIR := $(CURDIR)/debian/$(DEB
PKGNAM
E)/usr/
DESTDIR := $(CURDIR)/debian/$(DEB
_SOURC
E)/usr/
# When using -O2 optimisation the BLAT test (cd blat/test; make) will fail
CFLAGS:=$(shell dpkg-buildflags --get CFLAGS | sed 's/-O2/-O1/')
...
...
@@ -46,5 +46,7 @@ override_dh_auto_install:
PATH=$(DESTDIR)/bin:$${PATH} make test
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
echo "Test suite is running after dh_auto_install"
echo "Probably it would be better to create a proper install target"
endif