Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Explicitly pass paths to configure instead of looking up tools
· 904c5244
Andreas Tille
authored
Dec 08, 2018
904c5244
Standards-Version: 4.2.1
· 05f3d21e
Andreas Tille
authored
Dec 08, 2018
05f3d21e
Upload to unstable
· 15e44507
Andreas Tille
authored
Dec 08, 2018
15e44507
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
15e44507
toppred (1.10-7) unstable; urgency=medium
[ Andreas Henriksson ]
* Explicitly pass paths to configure instead of looking up tools
- fixes reproducible builds on merged-usr vs non-merged systems
[ Andreas Tille ]
* Standards-Version: 4.2.1
-- Andreas Tille <tille@debian.org> Sat, 08 Dec 2018 07:37:13 +0100
toppred (1.10-6) unstable; urgency=medium
* d/rules: do not parse d/changelog
...
...
debian/control
View file @
15e44507
...
...
@@ -6,7 +6,7 @@ Priority: optional
Build-Depends: debhelper (>= 11~),
gnuplot,
libgd-dev
Standards-Version: 4.
1.5
Standards-Version: 4.
2.1
Vcs-Browser: https://salsa.debian.org/med-team/toppred
Vcs-Git: https://salsa.debian.org/med-team/toppred.git
Homepage: https://github.com/bioinfo-center-pasteur-fr/toppred
...
...
debian/rules
View file @
15e44507
...
...
@@ -11,6 +11,12 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
GREP=/bin/grep \
EGREP="/bin/grep -E" \
MKDIR_P="/bin/mkdir -p"
override_dh_installexamples:
make -C test clean
dh_installexamples
...
...