eliminate anticipated-repack-count lintian warning

This commit is contained in:
nick black 2025-01-10 02:23:29 -05:00
parent 7eacf2c974
commit 9f294e0153
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
2 changed files with 6 additions and 6 deletions

View File

@ -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`

View File

@ -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 ..