Codebase list colorclass / ea44bbf
Merge branch 'nmu' Sandro Tosi 1 year, 10 months ago
5 changed file(s) with 47 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 # see git-dpm(1) from git-dpm package
1 bf531346100de79a1a832ec54d3c5c8c8a9f16a5
2 bf531346100de79a1a832ec54d3c5c8c8a9f16a5
3 bf531346100de79a1a832ec54d3c5c8c8a9f16a5
4 bf531346100de79a1a832ec54d3c5c8c8a9f16a5
5 colorclass_2.2.0.orig.tar.gz
6 e1a713dd315095eb901e13c37ef02202a5ff0033
7 486151
8 debianTag="debian/%e%v"
9 patchedTag="patched/%e%v"
10 upstreamTag="upstream/%e%u"
1717
1818 -- Ondřej Nový <onovy@debian.org> Tue, 13 Feb 2018 10:18:39 +0100
1919
20 colorclass (2.2.0-2.2) unstable; urgency=medium
21
22 * Non-maintainer upload.
23 * Applying patch from Steve Langasek <steve.langasek@canonical.com>
24 for Python 3.10 (Closes: #1001289).
25
26 -- Daniel Baumann <daniel.baumann@progress-linux.org> Thu, 16 Dec 2021 05:16:44 +0200
27
28 colorclass (2.2.0-2.1) unstable; urgency=medium
29
30 * Non maintainer upload by the Reproducible Builds team.
31 * No source change upload to rebuild on buildd with .buildinfo files.
32
33 -- Holger Levsen <holger@debian.org> Wed, 06 Jan 2021 18:09:16 +0100
34
2035 colorclass (2.2.0-2) unstable; urgency=medium
2136
2237 * Upload to unstable.
0 Description: compatibility with python 3.10
1 Author: Steve Langasek <steve.langasek@ubuntu.com>
2 Bug-Debian: https://bugs.debian.org/1001289
3 Last-Update: 2021-12-10
4 Forwarded: no
5
6 Index: colorclass-2.2.0/colorclass/codes.py
7 ===================================================================
8 --- colorclass-2.2.0.orig/colorclass/codes.py
9 +++ colorclass-2.2.0/colorclass/codes.py
10 @@ -1,7 +1,7 @@
11 """Handles mapping between color names and ANSI codes and determining auto color codes."""
12
13 import sys
14 -from collections import Mapping
15 +from collections.abc import Mapping
16
17 BASE_CODES = {
18 '/all': 0, 'b': 1, 'f': 2, 'i': 3, 'u': 4, 'flash': 5, 'outline': 6, 'negative': 7, 'invis': 8, 'strike': 9,
0 python-3.10.patch