]> git.ipfire.org Git - people/ms/libloc.git/commitdiff
debian: Ensure changelog distribution is tagged
authorValters Jansons <valter.jansons@gmail.com>
Thu, 23 Sep 2021 10:23:50 +0000 (13:23 +0300)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 23 Sep 2021 10:28:45 +0000 (10:28 +0000)
UNRELEASED should not be left as-is when actually releasing.
The latest changelog entry now point at unstable instead.

The simple d/genchangelog.sh now does `dch -r ''` automatically
to ensure this distribution update doesn't get lost along the way
on future invocations.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
debian/changelog
debian/genchangelog.sh

index fcef2cb4ac994ad6bf1990c552dd81a2c8d26951..3b9054201077f4e826bbbd134334656b710f3dd1 100644 (file)
@@ -1,4 +1,4 @@
-libloc (0.9.8-1) UNRELEASED; urgency=medium
+libloc (0.9.8-1) unstable; urgency=medium
 
   [ Michael Tremer ]
   * importer: Do not try to initialise a column that cannot be NULL with
index 85d3922fd640514b48b5d88a1f19bf0e91c297da..ab1c1980cba1032046467d493a9218e8938301e3 100755 (executable)
@@ -31,6 +31,8 @@ main () {
     echo "$author_name <$author_email>  $subject"
     DEBFULLNAME="$author_name" DEBEMAIL="$author_email" debchange --upstream --multimaint-merge "$subject"
   done
+
+  debchange --release ''
 }
 
 main "$@" || exit $?