Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Do not force sse for i386
· ccfdd9ac
Andreas Tille
authored
Feb 04, 2019
ccfdd9ac
debhelper 12
· 6457c973
Andreas Tille
authored
Feb 04, 2019
6457c973
Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
· 5063d6b0
Andreas Tille
authored
Feb 04, 2019
5063d6b0
Upload to unstable
· c965dae8
Andreas Tille
authored
Feb 04, 2019
c965dae8
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
c965dae8
samtools (1.9-3) unstable; urgency=medium
* Do not force sse for i386
Closes: #921315
* debhelper 12
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
-- Andreas Tille <tille@debian.org> Mon, 04 Feb 2019 08:08:28 +0100
samtools (1.9-2) unstable; urgency=medium
* Team upload.
...
...
debian/compat
View file @
c965dae8
1
1
1
2
debian/control
View file @
c965dae8
...
...
@@ -4,7 +4,7 @@ Uploaders: Charles Plessy <plessy@debian.org>,
Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
1
~),
Build-Depends: debhelper (>= 1
2
~),
bash-completion,
# libio-pty-perl is needed by the regression test.
libio-pty-perl,
...
...
debian/rules
View file @
c965dae8
...
...
@@ -5,7 +5,7 @@ export CURSES_LIB=-lcurses
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
ifneq (,$(filter $(DEB_HOST_ARCH),i386 kfreebsd-i386 hurd-i386))
export DEB_CFLAGS_MAINT_APPEND=-
msse -mfpmath=ss
e
export DEB_CFLAGS_MAINT_APPEND=-
ffloat-stor
e
endif
%:
...
...
@@ -29,8 +29,10 @@ override_dh_auto_build:
LDFLAGS="$$(dpkg-buildflags --get LDFLAGS)"
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_test -- \
BGZIP=/usr/bin/bgzip
endif
override_dh_auto_install:
dh_auto_install -- \
...
...