From c81a222dfc12755b3d8b8e206a55da7296e34395 Mon Sep 17 00:00:00 2001
From: nick black <dankamongmen@gmail.com>
Date: Thu, 9 Jan 2025 03:56:28 -0500
Subject: [PATCH] debrelease.sh: make things easier

now that we're using gh instead of github-release,
we no longer get our uploads stupidly renamed.
remove the reminder to manually change them. huzzah!
also, use --upstream-version with gbp so we don't
get asked.
---
 tools/debrelease.sh | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/tools/debrelease.sh b/tools/debrelease.sh
index 6660abe0d..0d686c565 100755
--- a/tools/debrelease.sh
+++ b/tools/debrelease.sh
@@ -33,11 +33,7 @@ gh release upload v$VERSION $ASC $XBALL
 cd -
 git commit -m "v$VERSION" -a
 
-echo
-echo "Go change the $VERSION.dfsg to $VERSION+dfsg before proceeding, bro"
-echo
-
-gbp import-orig ../notcurses_$VERSION+dfsg.1.orig.tar.xz
+gbp import-orig --upstream-version=$VERSION ../notcurses_$VERSION+dfsg.1.orig.tar.xz
 git push --tags
 dpkg-buildpackage --build=source
 cd ..