Skip to content

Commits on Source 12

python-caja (1.23.0-1) unstable; urgency=medium
* Upload to unstable as is.
-- Mike Gabriel <sunweaver@debian.org> Fri, 03 Jan 2020 06:51:11 +0100
python-caja (1.23.0-1~exp2) experimental; urgency=medium
* debian/control:
+ Add B:/R: relation (python3-caja) to python-caja (<< 1.23~).
* debian/patches:
+ Add 1002_port-fixref-py-with-2to3.patch. Port to Python3.
-- Mike Gabriel <sunweaver@debian.org> Tue, 10 Dec 2019 10:27:53 +0100
python-caja (1.23.0-1~exp1) experimental; urgency=medium
* New upstream (development) release.
* debian/watch:
+ Temporarily allow development releases of python-caja.
* debian/control:
+ Bump Standards-Version: to 4.4.1. No changes needed.
+ Add Rules-Requires-Root: field and set it to no.
* debian/{control,rules,*.install}:
+ Switch to Python3 build. (Closes: #937628, #945863).
* debian/copyright:
+ Update copyright attributions.
* debian/patches:
+ Rebase 0001_reproducible-build.patch."
-- Mike Gabriel <sunweaver@debian.org> Tue, 10 Dec 2019 09:23:20 +0100
python-caja (1.22.1-2) unstable; urgency=medium
[ Martin Wimpress ]
......
......@@ -12,8 +12,9 @@ Build-Depends: debhelper-compat (=12),
gtk-doc-tools,
libcaja-extension-dev (>= 1.20),
libgirepository1.0-dev,
libglib2.0-dev,
mate-common (>= 1.20),
python-dev,
python3-dev,
python-gi-dev,
quilt,
Standards-Version: 4.4.1
......@@ -22,13 +23,15 @@ Homepage: http://www.mate-desktop.org/
Vcs-Browser: https://salsa.debian.org/debian-mate-team/python-caja
Vcs-Git: https://salsa.debian.org/debian-mate-team/python-caja.git
Package: python-caja
Package: python3-caja
Architecture: any
Depends: gir1.2-caja-2.0,
python-caja-common (= ${source:Version}),
${misc:Depends},
${shlibs:Depends},
Description: Python binding for Caja components
Breaks: python-caja (<< 1.23~),
Replaces: python-caja (<< 1.23~),
Description: Python3 binding for Caja components
Caja is the official file manager for the MATE desktop. It allows one
to browse directories, preview files and launch applications associated
with them. It is also responsible for handling the icons on the MATE
......
......@@ -30,8 +30,8 @@ License: GPL-2+
Files: .travis.yml
.tx/config
.github/issue_template.md
.github/FUNDING.yml
AUTHORS
COPYING
ChangeLog
Makefile.am
NEWS
......@@ -49,6 +49,7 @@ Files: .travis.yml
docs/reference/caja-python-menu-item.xml
docs/reference/caja-python-menu-provider.xml
docs/reference/caja-python-menu.xml
docs/reference/caja-python-operation-handle.xml
docs/reference/caja-python-operation-result.xml
docs/reference/caja-python-overview-example.xml
docs/reference/caja-python-overview-methods.xml
......
Description: Make build reproducible.
Author: Chris Lamb <lamby@debian.org>
--- python-caja-1.10.0.orig/docs/Makefile.am
+++ python-caja-1.10.0/docs/Makefile.am
@@ -86,7 +86,7 @@ BUILT_SOURCES = \
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -88,7 +88,7 @@
$(HTML_FILES)
reference/builddate.xml: $(REFERENCE_DEPS)
......
Description: Port to Python3.
Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
--- a/docs/xsl/fixxref.py
+++ b/docs/xsl/fixxref.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- Mode: Python; py-indent-offset: 4 -*-
import getopt
@@ -30,7 +30,7 @@
def link_subst(m):
id, text = m.groups()
- if id in anchors.keys():
+ if id in list(anchors.keys()):
return '<a\nhref="../' + anchors[id] + '"\n>' + text + '</a>'
return text
0001_reproducible-build.patch
1001_pkg-config-macro-not-cross-compilation-safe.patch
1002_port-fixref-py-with-2to3.patch
......@@ -6,6 +6,8 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
export PYTHON=python3
%:
dh $@ $(DHFLAGS) --without autoreconf
......
version=3
https://git.mate-desktop.org/python-caja/ \
snapshot/python-caja-(\d\.(?:[0-9]+|)[24680]\.\d)\.tar\.xz
snapshot/python-caja-(\d\.(?:[0-9]+|)[0-9]\.\d)\.tar\.xz