Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
debhelper 11
· c57cb3b7
Andreas Tille
authored
Sep 25, 2018
c57cb3b7
Point Vcs fields to salsa.debian.org
· 8e0a6397
Andreas Tille
authored
Sep 25, 2018
8e0a6397
Standards-Version: 4.2.1
· 29542b58
Andreas Tille
authored
Sep 25, 2018
29542b58
Do not parse d/changelog
· 97d61a56
Andreas Tille
authored
Sep 27, 2018
97d61a56
Upload to unstable
· c6baf83d
Andreas Tille
authored
Sep 27, 2018
c6baf83d
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
c6baf83d
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
...
...
debian/compat
View file @
c6baf83d
1
0
1
1
debian/control
View file @
c6baf83d
...
...
@@ -4,12 +4,12 @@ Uploaders: Christoph Gille <christophgil@googlemail.com>,
Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
0
),
Build-Depends: debhelper (>= 1
1~
),
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
...
...
debian/rules
View file @
c6baf83d
...
...
@@ -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
...
...