On Fri, 30 Aug 2019 07:12:39 +0000 Matthias Klose <d...@debian.org> wrote:
> Package: src:cairo-dock-plug-ins
> Version: 3.4.1-4
> Severity: normal
> Tags: sid bullseye
> User: debian-pyt...@lists.debian.org
> Usertags: py2removal
>
> Python2 becomes end-of-live upstream, and Debian aims to remove
> Python2 from the distribution, as discussed in
> https://lists.debian.org/debian-python/2019/07/msg00080.html
>
> Your package either build-depends, depends on Python2, or uses Python2
> in the autopkg tests. Please stop using Python2, and fix this issue
> by one of the following actions.
...
Easy enough to fix. Patch attached. It's done in the form of an NMU diff, but
I don't currently plan to NMU. Please update the package.
Note: the way CMakeLists.txt is constructed, there doesn't seem to be a flag to
set to turn off the build for python2. The only way to do it is make sure
there's no python2 in the build environment.
Scott K
diff -Nru cairo-dock-plug-ins-3.4.1/debian/changelog cairo-dock-plug-ins-3.4.1/debian/changelog
--- cairo-dock-plug-ins-3.4.1/debian/changelog 2018-05-24 20:05:47.000000000 -0400
+++ cairo-dock-plug-ins-3.4.1/debian/changelog 2019-09-01 01:19:59.000000000 -0400
@@ -1,3 +1,10 @@
+cairo-dock-plug-ins (3.4.1-4.1) UNRELEASED; urgency=medium
+
+ * Non-maintainer upload.
+ * Drop python2 parts of cairo-dock-plug-ins (Closes: #936263)
+
+ -- Scott Kitterman <sc...@kitterman.com> Sun, 01 Sep 2019 05:19:59 +0000
+
cairo-dock-plug-ins (3.4.1-4) unstable; urgency=medium
* Change team mail address. (Closes: #899966)
diff -Nru cairo-dock-plug-ins-3.4.1/debian/control cairo-dock-plug-ins-3.4.1/debian/control
--- cairo-dock-plug-ins-3.4.1/debian/control 2018-05-24 20:05:47.000000000 -0400
+++ cairo-dock-plug-ins-3.4.1/debian/control 2019-09-01 01:19:59.000000000 -0400
@@ -39,13 +39,12 @@
libxxf86vm-dev,
libzeitgeist-2.0-dev,
mono-devel [amd64 armel armhf i386 mipsel kfreebsd-any ppc64 ppc64el s390x],
- python,
python3,
ruby,
ruby-dev,
valac,
x11proto-xf86vidmode-dev
-Build-Conflicts: libwebkitgtk-3.0-dev
+Build-Conflicts: libwebkitgtk-3.0-dev, python-minimal
Standards-Version: 4.1.4
Homepage: http://www.glx-dock.org/
Vcs-Git: https://salsa.debian.org/cairo-dock-team/cairo-dock-plug-ins.git
@@ -193,7 +192,7 @@
Package: cairo-dock-dbus-plug-in-interface-python
Architecture: all
-Depends: cairo-dock-plug-ins (>= ${source:Version}), ${misc:Depends}, python
+Depends: cairo-dock-plug-ins (>= ${source:Version}), ${misc:Depends}, python3
Description: library of D-Bus interface for Python of Cairo-dock
A collection of official plug-ins and applets for cairo-dock.
.