Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Try the ppc64el targeted floating point patch again
· e0408336
Michael R. Crusoe
authored
Jan 07, 2019
e0408336
Bring the ppc64el & i386 pkg-config enhancements to unstable.
· fc16055b
Michael R. Crusoe
authored
Jan 15, 2019
fc16055b
clean up version
· 0d044593
Michael R. Crusoe
authored
Jan 15, 2019
0d044593
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
0d044593
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
...
...
debian/patches/no_git_version
0 → 100644
View file @
0d044593
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
#
debian/patches/series
View file @
0d044593
no_git_version
define_PATH_MAX.patch
fPIC.patch
testShebang.patch
#
fix_float_precision
fix_float_precision
debian/rules
View file @
0d044593
#!/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)" \
...
...