Skip to content
Commits on Source (5)
neobio (0.0.20030929-4) unstable; urgency=medium
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.2.1
* Do not parse d/changelog
-- Andreas Tille <tille@debian.org> Thu, 27 Sep 2018 10:13:29 +0200
neobio (0.0.20030929-3) unstable; urgency=medium
* Moved packaging from SVN to Git
......
......@@ -4,12 +4,12 @@ Uploaders: Christoph Gille <christophgil@googlemail.com>,
Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 10),
Build-Depends: debhelper (>= 11~),
default-jdk,
javahelper
Standards-Version: 4.1.0
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/neobio.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/neobio.git
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/med-team/neobio
Vcs-Git: https://salsa.debian.org/med-team/neobio.git
Homepage: http://neobio.sourceforge.net/
Package: neobio
......
......@@ -4,8 +4,7 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
DEBVERS := $(shell dpkg-parsechangelog | awk '/^Version:/ {print $$2}')
VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/^[0-9]*://' -e 's/-.*//')
include /usr/share/dpkg/default.mk
%:
dh $@ --with javahelper
......@@ -14,7 +13,7 @@ VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/^[0-9]*://' -e 's/-.*//'
override_dh_auto_build:
mkdir -p classes
javac -cp src -source 1.6 -target 1.6 -d classes $(shell find src -name "*.java")
jar -cf neobio-$(VERSION).jar -C classes neobio -C bin neobio/gui/icons
jar -cf neobio-$(DEB_VERSION_UPSTREAM).jar -C classes neobio -C bin neobio/gui/icons
override_dh_clean:
rm -f neobio*.jar
......