Package: release.debian.org Severity: normal Tags: bullseye User: release.debian....@packages.debian.org Usertags: pu X-Debbugs-Cc: Reportbug Maintainers <debian-report...@lists.debian.org> Control: affects -1 + src:reportbug
[ Reason ] After the release of bookworm, we should rotate the release codenames in reportbug/bullseye again to keep reportbug/bullseye useful. Fixed in sid/bookworm via #1034260. [ Impact ] Requires manual error prone adjustments if templates for e.g. some release.debian.org bug classes are not available. [ Tests ] This bug report. :-) [ Risks ] low, only data update [ Checklist ] [*] *all* changes are documented in the d/changelog [*] I reviewed all changes and I approve them [*] attach debdiff against the package in (old)stable [*] the issue is verified as fixed in unstable [ Changes ] +reportbug (7.10.3+deb11u2) bullseye; urgency=medium + + * Rotate suite names after the bookworm release. + + -- Andreas Beckmann <a...@debian.org> Fri, 19 Apr 2024 15:45:33 +0200 [ Other info ] n/a Andreas
diff -Nru reportbug-7.10.3+deb11u1/debian/changelog reportbug-7.10.3+deb11u2/debian/changelog --- reportbug-7.10.3+deb11u1/debian/changelog 2021-09-06 17:35:39.000000000 +0200 +++ reportbug-7.10.3+deb11u2/debian/changelog 2024-04-19 15:45:33.000000000 +0200 @@ -1,3 +1,9 @@ +reportbug (7.10.3+deb11u2) bullseye; urgency=medium + + * Rotate suite names after the bookworm release. + + -- Andreas Beckmann <a...@debian.org> Fri, 19 Apr 2024 15:45:33 +0200 + reportbug (7.10.3+deb11u1) bullseye; urgency=medium [ Thomas Goirand ] diff -Nru reportbug-7.10.3+deb11u1/reportbug/__init__.py reportbug-7.10.3+deb11u2/reportbug/__init__.py --- reportbug-7.10.3+deb11u1/reportbug/__init__.py 2021-09-06 17:35:39.000000000 +0200 +++ reportbug-7.10.3+deb11u2/reportbug/__init__.py 2024-04-19 15:45:33.000000000 +0200 @@ -25,7 +25,7 @@ __all__ = ['bugreport', 'utils', 'urlutils', 'checkbuildd', 'checkversions', 'debbugs', 'exceptions', 'submit', 'tempfile', 'mailer'] -VERSION_NUMBER = "7.10.3+deb11u1" +VERSION_NUMBER = "7.10.3+deb11u2" VERSION = "reportbug " + VERSION_NUMBER COPYRIGHT = VERSION + '\nCopyright (C) 1999-2008 Chris Lawrence <lawre...@debian.org>' + \ diff -Nru reportbug-7.10.3+deb11u1/reportbug/utils.py reportbug-7.10.3+deb11u2/reportbug/utils.py --- reportbug-7.10.3+deb11u1/reportbug/utils.py 2021-09-06 17:35:39.000000000 +0200 +++ reportbug-7.10.3+deb11u2/reportbug/utils.py 2024-04-19 15:45:33.000000000 +0200 @@ -95,13 +95,14 @@ '/usr/man', '/usr/doc', '/usr/bin'] # A map between codenames and suites -CODENAME2SUITE = {'wheezy': 'oldoldoldoldstable', - 'jessie': 'oldoldoldstable', - 'stretch': 'oldoldstable', - 'buster': 'oldstable', - 'bullseye': 'stable', - 'bookworm': 'testing', - 'trixie': 'next-testing', +CODENAME2SUITE = {'wheezy': 'oldoldoldoldoldstable', + 'jessie': 'oldoldoldoldstable', + 'stretch': 'oldoldoldstable', + 'buster': 'oldoldstable', + 'bullseye': 'oldstable', + 'bookworm': 'stable', + 'trixie': 'testing', + 'forky': 'next-testing', 'sid': 'unstable', 'experimental': 'experimental'} SUITE2CODENAME = dict([(suite, codename) for codename, suite in list(CODENAME2SUITE.items())])