Bug#993793: bullseye-pu: package reportbug/7.10.3

2021-09-07 Thread Jonathan Wiltshire
On Tue, Sep 07, 2021 at 02:52:35PM +0100, Jonathan Wiltshire wrote:
> Control: tag -1 confirmed moreinfo
> 
> On Mon, Sep 06, 2021 at 05:47:40PM +0200, Thomas Goirand wrote:
> > This fixes the suite names against stable.
> > Note that Sandro Tosi (maintainer of reportbug) agrees
> > that I do this update in Stable.
> 
> Please go ahead and remove this bug's wontfix tag when uploaded.

Err, I meant moreinfo. Nothing to read into that, honest :)


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

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



signature.asc
Description: PGP signature


Bug#993793: bullseye-pu: package reportbug/7.10.3

2021-09-07 Thread Jonathan Wiltshire
Control: tag -1 confirmed moreinfo

On Mon, Sep 06, 2021 at 05:47:40PM +0200, Thomas Goirand wrote:
> This fixes the suite names against stable.
> Note that Sandro Tosi (maintainer of reportbug) agrees
> that I do this update in Stable.

Please go ahead and remove this bug's wontfix tag when uploaded.

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



signature.asc
Description: PGP signature


Bug#993793: bullseye-pu: package reportbug/7.10.3

2021-09-06 Thread Thomas Goirand
Package: release.debian.org
Severity: normal
Tags: bullseye
User: release.debian@packages.debian.org
Usertags: pu

Hi,

[ Reason ]
This fixes the suite names against stable.
Note that Sandro Tosi (maintainer of reportbug) agrees
that I do this update in Stable.

[ Impact ]
Can't choose bullseye-pu otherwise.

[ Tests ]
Tried the fixed version: works! :)

[ Risks ]
No risk, IMO. It's a trivial patch.

[ Checklist ]
  [x] *all* changes are documented in the d/changelog
  [x] I reviewed all changes and I approve them
  [x] attach debdiff against the package in (old)stable
  [x] the issue is verified as fixed in unstable

Cheers,

Thomas Goirand (zigo)
diff -Nru reportbug-7.10.3/debian/changelog 
reportbug-7.10.3+deb11u1/debian/changelog
--- reportbug-7.10.3/debian/changelog   2021-02-24 22:32:29.0 +0100
+++ reportbug-7.10.3+deb11u1/debian/changelog   2021-09-06 17:35:39.0 
+0200
@@ -1,3 +1,11 @@
+reportbug (7.10.3+deb11u1) bullseye; urgency=medium
+
+  [ Thomas Goirand ]
+  * Update suite names vs stable/oldstable, so it's possible to request for
+bullseye-pu (Closes: #992332).
+
+ -- Thomas Goirand   Mon, 06 Sep 2021 17:35:39 +0200
+
 reportbug (7.10.3) unstable; urgency=medium
 
   * reportbug/debbugs.py: handle installation-reports (Closes: #931438)
diff -Nru reportbug-7.10.3/reportbug/__init__.py 
reportbug-7.10.3+deb11u1/reportbug/__init__.py
--- reportbug-7.10.3/reportbug/__init__.py  2021-02-24 22:32:07.0 
+0100
+++ reportbug-7.10.3+deb11u1/reportbug/__init__.py  2021-09-06 
17:35:39.0 +0200
@@ -25,7 +25,7 @@
 __all__ = ['bugreport', 'utils', 'urlutils', 'checkbuildd', 'checkversions',
'debbugs', 'exceptions', 'submit', 'tempfile', 'mailer']
 
-VERSION_NUMBER = "7.10.3"
+VERSION_NUMBER = "7.10.3+deb11u1"
 
 VERSION = "reportbug " + VERSION_NUMBER
 COPYRIGHT = VERSION + '\nCopyright (C) 1999-2008 Chris Lawrence 
' + \
diff -Nru reportbug-7.10.3/reportbug/utils.py 
reportbug-7.10.3+deb11u1/reportbug/utils.py
--- reportbug-7.10.3/reportbug/utils.py 2021-02-09 18:38:37.0 +0100
+++ reportbug-7.10.3+deb11u1/reportbug/utils.py 2021-09-06 17:35:39.0 
+0200
@@ -95,12 +95,13 @@
'/usr/man', '/usr/doc', '/usr/bin']
 
 # A map between codenames and suites
-CODENAME2SUITE = {'wheezy': 'oldoldoldstable',
-  'jessie': 'oldoldstable',
-  'stretch': 'oldstable',
-  'buster': 'stable',
-  'bullseye': 'testing',
-  'bookworm': 'next-testing',
+CODENAME2SUITE = {'wheezy': 'oldoldoldoldstable',
+  'jessie': 'oldoldoldstable',
+  'stretch': 'oldoldstable',
+  'buster': 'oldstable',
+  'bullseye': 'stable',
+  'bookworm': 'testing',
+  'trixie': 'next-testing',
   'sid': 'unstable',
   'experimental': 'experimental'}
 SUITE2CODENAME = dict([(suite, codename) for codename, suite in 
list(CODENAME2SUITE.items())])