From 9f294e0153c1a4c96b4c56013c959497101ccf76 Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 10 Jan 2025 02:23:29 -0500 Subject: [PATCH] eliminate anticipated-repack-count lintian warning --- doc/release-checklist.md | 6 +++--- tools/debrelease.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/release-checklist.md b/doc/release-checklist.md index d01a1a94d..2384b61d4 100644 --- a/doc/release-checklist.md +++ b/doc/release-checklist.md @@ -33,13 +33,13 @@ ### Debian * In gbp repository, run `tools/debrelease.sh $VERSION path-to-notcurses-checkout`: - * Updates Debian changelog with `dch -v $VERSION+dfsg.1-1` + * Updates Debian changelog with `dch -v $VERSION+dfsg-1` * Finalizes Debian changelog with `dch -r` * Repacks DFSG-safe tarball with `uscan`: * `uscan --repack --compression xz --force` - * `gpg --sign --armor --detach-sign ../notcurses_$VERSION+dfsg.1.orig.tar.xz` + * `gpg --sign --armor --detach-sign ../notcurses_$VERSION+dfsg.orig.tar.xz` * Uploads repack + signature to github - * imports new version: `gbp import-orig ../notcurses_$VERSION+dfsg.1.orig.tar.xz` + * imports new version: `gbp import-orig ../notcurses_$VERSION+dfsg.orig.tar.xz` * `git push --tags` * builds source package: `dpkg-buildpackage --build=source` * builds binaries: `cd .. && export TERM=xterm-256color && sudo pbuilder build *dsc` diff --git a/tools/debrelease.sh b/tools/debrelease.sh index 282e1eb31..0913d8696 100755 --- a/tools/debrelease.sh +++ b/tools/debrelease.sh @@ -17,14 +17,14 @@ if [ -z "$DEBVERSION" ] ; then fi rm -fv debian/files -dch -v $VERSION+dfsg1-$DEBVERSION +dch -v $VERSION+dfsg-$DEBVERSION if [ -n "$DISTRIBUTION" ] ; then dch -r --distribution "$DISTRIBUTION" else dch -r fi uscan --repack --compression xz --force -XBALL=notcurses_$VERSION+dfsg1.orig.tar.xz +XBALL=notcurses_$VERSION+dfsg.orig.tar.xz gpg --sign --armor --detach-sign ../$XBALL ASC=$(readlink -f ../$XBALL.asc) XBALL=$(readlink -f $XBALL) @@ -33,7 +33,7 @@ gh release upload v$VERSION $ASC $XBALL cd - git commit -m "v$VERSION" -a -gbp import-orig --upstream-version=$VERSION ../notcurses_$VERSION+dfsg1.orig.tar.xz +gbp import-orig --upstream-version=$VERSION ../notcurses_$VERSION+dfsg.orig.tar.xz git push --tags dpkg-buildpackage --build=source cd ..