diff -Nru ncbi-seg-0.0.20000620/debian/changelog ncbi-seg-0.0.20000620/debian/changelog --- ncbi-seg-0.0.20000620/debian/changelog 2017-10-05 17:15:27.000000000 +0000 +++ ncbi-seg-0.0.20000620/debian/changelog 2018-10-13 22:42:34.000000000 +0000 @@ -1,3 +1,14 @@ +ncbi-seg (0.0.20000620-5) unstable; urgency=medium + + * debhelper 11 + * Point Vcs fields to salsa.debian.org + * Standards-Version: 4.2.1 + * debian/rules: + - hardening=+all + - obtain version automatically + + -- Andreas Tille Sun, 14 Oct 2018 00:42:34 +0200 + ncbi-seg (0.0.20000620-4) unstable; urgency=medium * Moved packaging from SVN to Git diff -Nru ncbi-seg-0.0.20000620/debian/compat ncbi-seg-0.0.20000620/debian/compat --- ncbi-seg-0.0.20000620/debian/compat 2017-10-05 17:15:27.000000000 +0000 +++ ncbi-seg-0.0.20000620/debian/compat 2018-10-13 22:42:34.000000000 +0000 @@ -1 +1 @@ -10 +11 diff -Nru ncbi-seg-0.0.20000620/debian/control ncbi-seg-0.0.20000620/debian/control --- ncbi-seg-0.0.20000620/debian/control 2017-10-05 17:15:27.000000000 +0000 +++ ncbi-seg-0.0.20000620/debian/control 2018-10-13 22:42:34.000000000 +0000 @@ -4,10 +4,10 @@ Andreas Tille Section: science Priority: optional -Build-Depends: debhelper (>= 10) -Standards-Version: 4.1.1 -Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/ncbi-seg.git -Vcs-Git: https://anonscm.debian.org/git/debian-med/ncbi-seg.git +Build-Depends: debhelper (>= 11~) +Standards-Version: 4.2.1 +Vcs-Browser: https://salsa.debian.org/med-team/ncbi-seg +Vcs-Git: https://salsa.debian.org/med-team/ncbi-seg.git Homepage: ftp://ftp.ncbi.nih.gov/pub/seg/seg/ Package: ncbi-seg diff -Nru ncbi-seg-0.0.20000620/debian/rules ncbi-seg-0.0.20000620/debian/rules --- ncbi-seg-0.0.20000620/debian/rules 2017-10-05 17:15:27.000000000 +0000 +++ ncbi-seg-0.0.20000620/debian/rules 2018-10-13 22:42:34.000000000 +0000 @@ -2,20 +2,21 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +export DEB_BUILD_MAINT_OPTIONS=hardening=+all + %: dh $@ override_dh_autoreconf: dh_autoreconf -X./COPYING -ver := 0.0.20000620 -pkg := ncbi-seg +include /usr/share/dpkg/default.mk get-orig-source: set -e; \ t=$$(mktemp -d) || exit 1; \ trap "rm -rf -- '$$t'" EXIT; \ - d="$$t/$(pkg)-$(ver).orig"; \ + d="$$t/$(DEB_SOURCE)-$(DEB_VERSION_UPSTREAM).orig"; \ mkdir "$$d"; \ ( cd "$$d"; \ wget \ @@ -28,5 +29,5 @@ ftp://ftp.ncbi.nih.gov/pub/seg/seg/seg.c\ ftp://ftp.ncbi.nih.gov/pub/seg/seg/seg.doc; \ ); \ - GZIP="--best --no-name" tar --owner=root --group=root --mode=a+rX -caf "./$(pkg)_$(ver).orig.tar.gz" -C "$$t" "$(pkg)-$(ver).orig" + GZIP="--best --no-name" tar --owner=root --group=root --mode=a+rX -caf "./$(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz" -C "$$t" "$(DEB_SOURCE)-$(DEB_VERSION_UPSTREAM).orig"