Skip to content
Commits on Source (7)
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.
......
......@@ -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}
......
......@@ -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 $@) \
$< > $@
......