Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (7)
debhelper 11
· 9bce0ce0
Andreas Tille
authored
Sep 24, 2018
9bce0ce0
Point Vcs fields to salsa.debian.org
· 32e1a974
Andreas Tille
authored
Sep 24, 2018
32e1a974
Standards-Version: 4.2.1
· 4d6b872b
Andreas Tille
authored
Sep 24, 2018
4d6b872b
Drop unneeded Testsuite field
· ecaefdb3
Andreas Tille
authored
Sep 24, 2018
ecaefdb3
Less parsing of d/changelog, Binary package in section python
· 5dc932f0
Andreas Tille
authored
Sep 24, 2018
5dc932f0
Do not parse d/changelog
· 6f2d351a
Andreas Tille
authored
Sep 24, 2018
6f2d351a
Upload to unstable
· b04ffebf
Andreas Tille
authored
Sep 24, 2018
b04ffebf
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
b04ffebf
gfapy (1.0.0+dfsg-3) unstable; urgency=medium
* Team upload.
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.2.1
* Drop unneeded Testsuite field
* Do not parse d/changelog
* Binary package in section python
-- Andreas Tille <tille@debian.org> Mon, 24 Sep 2018 11:17:29 +0200
gfapy (1.0.0+dfsg-2) unstable; urgency=medium
* Fix upstream info YAML.
...
...
debian/compat
View file @
b04ffebf
9
11
debian/control
View file @
b04ffebf
...
...
@@ -2,21 +2,21 @@ Source: gfapy
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Sascha Steinbiss <satta@debian.org>
Section: science
Testsuite: autopkgtest
Priority: optional
Build-Depends: debhelper (>=
9
),
Build-Depends: debhelper (>=
11~
),
python3,
python3-dev,
python3-setuptools,
python3-nose,
txt2man
Standards-Version: 4.
0.0
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/gfapy
.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/gfapy.git
Standards-Version: 4.
2.1
Vcs-Browser: https://
salsa
.debian.org/
med-team
/gfapy
Vcs-Git: https://
salsa
.debian.org/
med-team
/gfapy.git
Homepage: https://github.com/ggonnella/gfapy
Package: python3-gfapy
Architecture: any
Section: python
Depends: ${misc:Depends},
${python3:Depends},
${shlibs:Depends}
...
...
debian/rules
View file @
b04ffebf
...
...
@@ -2,9 +2,11 @@
export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow
export PYBUILD_NAME=gfapy
UPSTREAM_VERSION=$(shell dpkg-parsechangelog -SVersion | cut -f1 -d+)
TIMESTAMP=$(shell dpkg-parsechangelog -STimestamp)
DATE=$(shell date --date=@$(TIMESTAMP) '+%d %B %Y')
include /usr/share/dpkg/default.mk
export LC_ALL=C.UTF-8
DATE=$(shell date --date=@$(SOURCE_DATE_EPOCH) '+%d %B %Y')
MANPAGES=debian/man/gfapy-convert.1 \
debian/man/gfapy-mergelinear.1 \
...
...
@@ -13,7 +15,7 @@ MANPAGES=debian/man/gfapy-convert.1 \
%.1: %.1.txt
TZ=UTC LC_ALL=C \
txt2man -d "$(DATE)" \
-s 1 -r "gfapy $(UPSTREAM
_VERSION
)" \
-s 1 -r "gfapy $(
DEB_VERSION_
UPSTREAM)" \
-t $(shell basename -a -s.1 $@) \
$< > $@
...
...