Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
skip i386 due to lack of tabix/libhts
· af239313
Michael R. Crusoe
authored
Aug 06, 2019
af239313
don't parallelize the tests
· 2d799163
Michael R. Crusoe
authored
Aug 06, 2019
2d799163
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
2d799163
bcftools (1.9-2)
UNRELEASED
; urgency=medium
bcftools (1.9-2)
unstable
; urgency=medium
* Team upload.
* Remove now-unneeded lintian-override
* Re
duce test failures on i386 from 113 to 18 by compiling with -msse
and -mfpmath=sse
* Re
move i386 as libhts/tabix has dropped it
* Temporarily disable failing plugins tests
* Remove trailing whitespace in debian/copyright
* Standards-Version: 4.3.0, no changes needed
-- Michael R. Crusoe <michael.crusoe@gmail.com>
Wed
,
1
6
Jan
2019
01:18:22 -08
00
-- Michael R. Crusoe <michael.crusoe@gmail.com>
Tue
,
0
6
Aug
2019
19:32:16 +02
00
bcftools (1.9-1) unstable; urgency=medium
...
...
debian/control
View file @
2d799163
...
...
@@ -16,7 +16,7 @@ Vcs-Git: https://salsa.debian.org/med-team/bcftools.git
Homepage: http://samtools.github.io/bcftools/
Package: bcftools
Architecture: any
Architecture: any
-amd64 arm64 armel armhf mips mips64el mipsel ppc64el s390x alpha hppa ia64 m68k powerpc powerpcspe ppc64 riscv64 sh4 sparc64 x32
Depends: ${shlibs:Depends},
${misc:Depends},
${perl:Depends}
...
...
debian/rules
View file @
2d799163
...
...
@@ -2,9 +2,6 @@
#export DH_VERBOSE = 1
#include /usr/share/dpkg/default.mk
ifneq (,$(filter $(DEB_HOST_ARCH),i386 kfreebsd-i386 hurd-i386))
export DEB_CFLAGS_MAINT_APPEND=-msse -mfpmath=sse
endif
%:
dh $@
...
...
@@ -40,3 +37,8 @@ override_dh_install:
for pscript in `grep -Rl '#!/usr/bin/env \+perl' debian/*` ; do \
sed -i '1s?#!/usr/bin/env \+perl?#!/usr/bin/perl?' $${pscript} ; \
done
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
make test-no-plugins VERBOSE=1
endif
debian/tests/control
View file @
2d799163
Test-Command:
ln -s /usr/bin/bcftools bcftools &&
mv -f bcftools bcftools.orig || /bin/true;
ln -s /usr/bin/bcftools bcftools &&
./test/test.pl
--plugins
--exec bgzip=/usr/bin/bgzip
--exec tabix=/usr/bin/tabix
--exec tabix=/usr/bin/tabix
&& mv -f bcftools.orig bcftools
Depends:
@,
tabix,
...
...