Skip to content
Commits on Source (7)
grinder (0.5.4-5) unstable; urgency=medium
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.3.0
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Remove trailing whitespace in debian/changelog
* Fix Perl interpreter
-- Andreas Tille <tille@debian.org> Wed, 02 Jan 2019 15:44:52 +0100
grinder (0.5.4-4) unstable; urgency=medium
* debian/rules: set PERL5LIB for `helpman … grinder' call.
......
......@@ -5,14 +5,14 @@ Uploaders: Florent Angly <florent.angly@gmail.com>,
Section: science
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 10)
Build-Depends: debhelper (>= 11~)
Build-Depends-Indep: libbio-perl-perl,
libgetopt-euclid-perl,
libmath-random-mt-perl,
help2man
Standards-Version: 4.1.2
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/grinder.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/grinder.git
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/grinder
Vcs-Git: https://salsa.debian.org/med-team/grinder.git
Homepage: https://sourceforge.net/projects/biogrinder/
Package: grinder
......
......@@ -45,7 +45,9 @@ override_dh_auto_configure:
# Because of Grinder's random output, some tests are brittle and may fail...
# Only test that the program loads successfully
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
$(MAKE) testdb TEST_FILE=t/00-load.t TESTDB_SW=''
endif
# Generate manpages on the fly
override_dh_auto_build:
......@@ -67,3 +69,9 @@ override_dh_auto_clean:
done ; \
fi
rm -rf _disposal
override_dh_install:
dh_install
for pl in `grep -Rl '#!/usr/bin/env[[:space:]]\+perl' debian/*/usr/*` ; do \
sed -i '1s?^#!/usr/bin/env[[:space:]]\+perl?#!/usr/bin/perl?' $${pl} ; \
done