Skip to content
Commits on Source (3)
freebayes (1.2.0-2) UNRELEASED; urgency=medium
freebayes (1.2.0-2) unstable; urgency=medium
* Standards-Version: 4.2.1
* Versioned Build-Depends: libvcflib-dev (>= 1.0.0~rc2+dfsg-2~)
* debian/rules:
+ --no-parallel
Closes: #910324
+ Respect DEB_BUILD_OPTIONS in override_dh_auto_test
-- Andreas Tille <tille@debian.org> Fri, 14 Sep 2018 11:44:55 +0200
-- Andreas Tille <tille@debian.org> Tue, 09 Oct 2018 07:56:21 +0200
freebayes (1.2.0-1) unstable; urgency=medium
......
......@@ -3,12 +3,13 @@
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
%:
dh $@
dh $@ --no-parallel
override_dh_auto_install:
echo "Skip autoinstall process - files are moved around by dh_install"
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
mkdir -p $(CURDIR)/test/bash-tap/
for bt in $(CURDIR)/debian/bash-tap/* ; do ln -s $${bt} $(CURDIR)/test/bash-tap/`basename $${bt}` ; done
ln -s $(CURDIR)/debian/test-simple-bash/lib test/test-simple-bash
......@@ -17,3 +18,4 @@ override_dh_auto_test:
echo "Tests should be run" && PATH=/usr/lib/vcflib/binaries/:$(PATH) dh_auto_test && echo "Tests were running successfully"
rm -rf $(CURDIR)/test/bash-tap
rm test/test-simple-bash/lib
endif