From bc687121567d63e35844ffe30c3eda02ea861962 Mon Sep 17 00:00:00 2001 From: Charles Short Date: Mon, 29 Nov 2021 10:41:30 -0500 Subject: [PATCH] Fix lintian warning "Stable" is not a valid release so Lintian will complain about it, an example: W: systemd: latest-debian-changelog-entry-without-new-version Story: 2008846 Task: 44083 Signed-off-by: Charles Short Change-Id: I5765ffba3d1b5167bb78f30f66ed9caeb2333bd9 --- build-tools/stx/debrepack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools/stx/debrepack.py b/build-tools/stx/debrepack.py index ba38a55e..2122af2b 100755 --- a/build-tools/stx/debrepack.py +++ b/build-tools/stx/debrepack.py @@ -593,7 +593,7 @@ class Parser(): src = run_shell_cmd('dpkg-parsechangelog -l %s --show-field source' % changelog, self.logger) ver = run_shell_cmd('dpkg-parsechangelog -l %s --show-field version' % changelog, self.logger) ver += self.set_revision() - run_shell_cmd('cd %s; dch -p -D stable -v %s %s' % (self.pkginfo["srcdir"], ver, RELEASENOTES), self.logger) + run_shell_cmd('cd %s; dch -p -D bullseye -v %s %s' % (self.pkginfo["srcdir"], ver, RELEASENOTES), self.logger) # strip epoch ver = ver.split(":")[-1]