Skip to content
Commits on Source (3)
htslib (1.9-9) UNRELEASED; urgency=medium
htslib (1.9-9) unstable; urgency=medium
* Bring the ppc64el & i386 pkg-config enhancements to unstable.
-- Michael R. Crusoe <michael.crusoe@gmail.com> Tue, 15 Jan 2019 06:13:44 -0800
htslib (1.9-9~floatingpoint0) experimental; urgency=low
* add SSE flags for i386 to the pkg-config.
* Try the ppc64el targeted floating point patch again & re-enable -O2
-- Michael R. Crusoe <michael.crusoe@gmail.com> Wed, 02 Jan 2019 06:34:33 -0800
......
Author: Michael R. Crusoe <michael.crusoe@gmail.com>
Description: Don't check git tags for versioning
--- htslib.orig/version.sh
+++ htslib/version.sh
@@ -4,11 +4,11 @@
VERSION=1.9
# If we have a git clone, then check against the current tag
-if [ -e .git ]
-then
- # If we ever get to 10.x this will need to be more liberal
- VERSION=`git describe --match '[0-9].[0-9]*' --dirty`
-fi
+# if [ -e .git ]
+# then
+# # If we ever get to 10.x this will need to be more liberal
+# VERSION=`git describe --match '[0-9].[0-9]*' --dirty`
+# fi
# Numeric version is for use in .dylib or .so libraries
#
no_git_version
define_PATH_MAX.patch
fPIC.patch
testShebang.patch
#fix_float_precision
fix_float_precision
#!/usr/bin/make -f
# export DEB_BUILD_MAINT_OPTIONS = hardening=+all # Build fails due to -fpie
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DH_VERBOSE=1
include /usr/share/dpkg/default.mk
......@@ -28,7 +26,7 @@ endif
cp -a test test_backup
autoconf
dh_auto_configure -- --enable-libcurl
override_dh_auto_build:
dh_auto_build -- \
CFLAGS="$$(dpkg-buildflags --get CFLAGS)" \
......