Skip to content
Commits on Source (3)
javatools (0.66) UNRELEASED; urgency=medium
javatools (0.66) unstable; urgency=medium
* Team upload.
* jh_installlibs: Re-add glob-expansion in jlibs files, which were
......@@ -7,8 +7,10 @@ javatools (0.66) UNRELEASED; urgency=medium
* jh_exec: Fix missing guard to skip directories that do not exist.
* jh_installlibs: Avoid duplicated upstream version in file name
like the original version of jh_installlibs did.
* d/rules: Use dpkg's pkg-info.mk include file rather than parsing
dpkg-parsechangelog output manually.
-- Niels Thykier <niels@thykier.net> Tue, 18 Sep 2018 17:24:59 +0000
-- Niels Thykier <niels@thykier.net> Tue, 18 Sep 2018 19:09:45 +0000
javatools (0.65) unstable; urgency=medium
......@@ -841,4 +843,3 @@ jarwrapper (0.1) unstable; urgency=low
* Initial release (Closes: #423081)
-- Matthew Johnson <debian@matthew.ath.cx> Wed, 09 May 2007 17:50:24 +0100
#!/usr/bin/make -f
VERSION=$(shell dpkg-parsechangelog | sed -n 's/^Version: //p')
include /usr/share/dpkg/pkg-info.mk
POD2MAN=pod2man --stderr --utf8 -c Javahelper -r "$(VERSION)"
POD2MAN=pod2man --stderr --utf8 -c Javahelper -r "$(DEB_VERSION)"
MOD_PATH:=lib/Debian/Javahelper
......@@ -10,7 +10,7 @@ MOD_PATH:=lib/Debian/Javahelper
dh $@
jh_lib.sh: jh_lib.sh.in
sed 's,%JAVATOOLS_VERSION%,${VERSION},' < $< > $@
sed 's,%JAVATOOLS_VERSION%,${DEB_VERSION},' < $< > $@
override_dh_auto_build: jh_lib.sh
mkdir -p target/classes
......