Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (7)
debhelper 11
· b8ea652a
Andreas Tille
authored
Jan 02, 2019
b8ea652a
Point Vcs fields to salsa.debian.org
· 80d4b628
Andreas Tille
authored
Jan 02, 2019
80d4b628
Standards-Version: 4.3.0
· 057132d7
Andreas Tille
authored
Jan 02, 2019
057132d7
Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
· e7e0cacc
Andreas Tille
authored
Jan 02, 2019
e7e0cacc
Remove trailing whitespace in debian/changelog
· f4ef3ab6
Andreas Tille
authored
Jan 02, 2019
f4ef3ab6
Fix Perl interpreter
· 7f755ca6
Andreas Tille
authored
Jan 02, 2019
7f755ca6
Upload to unstable
· 6ab5abd9
Andreas Tille
authored
Jan 02, 2019
6ab5abd9
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
6ab5abd9
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.
...
...
debian/compat
View file @
6ab5abd9
1
0
1
1
debian/control
View file @
6ab5abd9
...
...
@@ -5,14 +5,14 @@ Uploaders: Florent Angly <florent.angly@gmail.com>,
Section: science
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 1
0
)
Build-Depends: debhelper (>= 1
1~
)
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
...
...
debian/rules
View file @
6ab5abd9
...
...
@@ -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