Mike Gabriel pushed to branch debian/experimental at Debian and Ubuntu MATE Packaging Team / python-caja
Commits:
-
e857edd9
by Mike Gabriel at 2019-12-10T09:27:10Z
-
f23a14c4
by Mike Gabriel at 2019-12-10T09:44:15Z
-
d7d658a2
by Mike Gabriel at 2019-12-10T09:44:28Z
4 changed files:
- debian/changelog
- debian/control
- + debian/patches/1002_port-fixref-py-with-2to3.patch
- debian/patches/series
Changes:
| 1 |
+python-caja (1.23.0-1~exp2) experimental; urgency=medium
|
|
| 2 |
+ |
|
| 3 |
+ * debian/control:
|
|
| 4 |
+ + Add B:/R: relation (python3-caja) to python-caja (<< 1.23~).
|
|
| 5 |
+ * debian/patches:
|
|
| 6 |
+ + Add 1002_port-fixref-py-with-2to3.patch. Port to Python3.
|
|
| 7 |
+ |
|
| 8 |
+ -- Mike Gabriel <sunweaver@debian.org> Tue, 10 Dec 2019 10:27:53 +0100
|
|
| 9 |
+ |
|
| 1 | 10 |
python-caja (1.23.0-1~exp1) experimental; urgency=medium
|
| 2 | 11 |
|
| 3 | 12 |
* New upstream (development) release.
|
| ... | ... | @@ -29,6 +29,8 @@ Depends: gir1.2-caja-2.0, |
| 29 | 29 |
python-caja-common (= ${source:Version}),
|
| 30 | 30 |
${misc:Depends},
|
| 31 | 31 |
${shlibs:Depends},
|
| 32 |
+Breaks: python-caja (<< 1.23~),
|
|
| 33 |
+Replaces: python-caja (<< 1.23~),
|
|
| 32 | 34 |
Description: Python3 binding for Caja components
|
| 33 | 35 |
Caja is the official file manager for the MATE desktop. It allows one
|
| 34 | 36 |
to browse directories, preview files and launch applications associated
|
| 1 |
+Description: Port to Python3.
|
|
| 2 |
+Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
|
|
| 3 |
+ |
|
| 4 |
+--- a/docs/xsl/fixxref.py
|
|
| 5 |
++++ b/docs/xsl/fixxref.py
|
|
| 6 |
+@@ -1,4 +1,4 @@
|
|
| 7 |
+-#!/usr/bin/env python
|
|
| 8 |
++#!/usr/bin/env python3
|
|
| 9 |
+ # -*- Mode: Python; py-indent-offset: 4 -*-
|
|
| 10 |
+
|
|
| 11 |
+ import getopt
|
|
| 12 |
+@@ -30,7 +30,7 @@
|
|
| 13 |
+
|
|
| 14 |
+ def link_subst(m):
|
|
| 15 |
+ id, text = m.groups()
|
|
| 16 |
+- if id in anchors.keys():
|
|
| 17 |
++ if id in list(anchors.keys()):
|
|
| 18 |
+ return '<a\nhref="../' + anchors[id] + '"\n>' + text + '</a>'
|
|
| 19 |
+ return text
|
|
| 20 |
+
|
| 1 | 1 |
0001_reproducible-build.patch
|
| 2 | 2 |
1001_pkg-config-macro-not-cross-compilation-safe.patch
|
| 3 |
+1002_port-fixref-py-with-2to3.patch
|