Processed: Re: Bug#1069297: bullseye-pu: package reportbug/7.10.3+deb11u2

2024-04-22 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 confirmed
Bug #1069297 [release.debian.org] bullseye-pu: package reportbug/7.10.3+deb11u2
Added tag(s) confirmed.

-- 
1069297: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1069297
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1069297: bullseye-pu: package reportbug/7.10.3+deb11u2

2024-04-22 Thread Jonathan Wiltshire
Control: tag -1 confirmed

On Fri, Apr 19, 2024 at 04:03:37PM +0200, Andreas Beckmann wrote:
> 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.

Please go ahead.

Thanks,

-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51
ed25519/0x196418AAEB74C8A1: CA619D65A72A7BADFC96D280196418AAEB74C8A1



Bug#1069297: bullseye-pu: package reportbug/7.10.3+deb11u2

2024-04-19 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu
X-Debbugs-Cc: Reportbug Maintainers 
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   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.0 
+0200
+++ reportbug-7.10.3+deb11u2/debian/changelog   2024-04-19 15:45:33.0 
+0200
@@ -1,3 +1,9 @@
+reportbug (7.10.3+deb11u2) bullseye; urgency=medium
+
+  * Rotate suite names after the bookworm release.
+
+ -- Andreas Beckmann   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.0 +0200
+++ reportbug-7.10.3+deb11u2/reportbug/__init__.py  2024-04-19 
15:45:33.0 +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 
' + \
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.0 
+0200
+++ reportbug-7.10.3+deb11u2/reportbug/utils.py 2024-04-19 15:45:33.0 
+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())])