Your message dated Fri, 06 Dec 2019 12:00:20 +0000
with message-id <[email protected]>
and subject line Bug#883804: fixed in vmdk-stream-converter 0.2-4.1~exp0
has caused the Debian Bug report #883804,
regarding vmdk-stream-converter: please switch to Python3
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
883804: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=883804
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: vmdk-stream-converter
Version: 0.2-3
Severity: normal
Tags: upstream patch
Forwarded: https://github.com/imcleod/VMDK-stream-converter/pull/3

Dear Maintainer,

Support for Python 2.7 will end in 2020 [1], in Buster's support period.
Please switch to Python3 with the package to rely on a supported Python
version for the foreseeable future.

The current upstream code does not work with Python3 but an open PR [2]
fixes that.

I'm attaching proposed changes to the package to make the switch to
Python3 and also switch to a package name aligning with the policy for
shipping Python3 modules

Thanks,
Balint

[1] https://www.python.org/dev/peps/pep-0373/
[2] https://github.com/imcleod/VMDK-stream-converter/pull/3

-- System Information:
Debian Release: buster/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.14.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968), LANGUAGE=C
(charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages vmdk-stream-converter depends on:
ii  python  2.7.14-1

vmdk-stream-converter recommends no packages.

vmdk-stream-converter suggests no packages.

-- no debconf information
>From 4402e18137736cbd6d56e11522ff274d9abf0029 Mon Sep 17 00:00:00 2001
From: Balint Reczey <[email protected]>
Date: Wed, 6 Dec 2017 01:30:08 +0100
Subject: [PATCH 2/2] Rename main package to python3-vmdkstream to follow
 Python 3 module naming policy

---
 debian/control                    | 14 ++++++++++----
 debian/python3-vmdkstream.install |  1 +
 debian/source.lintian-overrides   |  2 ++
 3 files changed, 13 insertions(+), 4 deletions(-)
 create mode 100644 debian/python3-vmdkstream.install
 create mode 100644 debian/source.lintian-overrides

diff --git a/debian/control b/debian/control
index 446da44..c5449f6 100644
--- a/debian/control
+++ b/debian/control
@@ -8,13 +8,19 @@ Homepage: https://github.com/imcleod/VMDK-stream-converter
 Vcs-Git: https://anonscm.debian.org/git/collab-maint/vmdk-stream-converter.git
 Vcs-Browser: https://anonscm.debian.org/collab-maint/vmdk-stream-converter.git
 
-Package: vmdk-stream-converter
+Package: python3-vmdkstream
 Architecture: all
 Depends: ${python3:Depends}, ${misc:Depends}
-Description: raw disk images to stream-optimized VMDK files convert tool
- This tool convert raw disk images to stream-optimized VMDK files for VMWare
- ESX/vSphere environment, and known to work on ESXi 4.1.
+Description: Python 3 module for converting raw disk images to VMDK files
+ This Python 3 module converts raw disk images to stream-optimized VMDK files
+ for VMWare ESX/vSphere environment, and known to work on ESXi 4.1.
  .
  Its format is only useful if you are attempting to import virtual machines
  into ESX using the vSphere SOAP API and HTTP POST uploads of image files.
  (In which case, it is required.)
+
+Package: vmdk-stream-converter
+Architecture: all
+Depends: python3-vmdkstream
+Description: transitional dummy package
+ This is a transitional dummy package. It can safely be removed.
diff --git a/debian/python3-vmdkstream.install b/debian/python3-vmdkstream.install
new file mode 100644
index 0000000..4606faa
--- /dev/null
+++ b/debian/python3-vmdkstream.install
@@ -0,0 +1 @@
+usr/lib/python3*
diff --git a/debian/source.lintian-overrides b/debian/source.lintian-overrides
new file mode 100644
index 0000000..fec7b78
--- /dev/null
+++ b/debian/source.lintian-overrides
@@ -0,0 +1,2 @@
+# this is a transitional package
+vmdk-stream-converter source: debhelper-but-no-misc-depends vmdk-stream-converter
-- 
2.11.0

>From 6e9b336479976ff5b47734d595a9d96506619f8a Mon Sep 17 00:00:00 2001
From: Balint Reczey <[email protected]>
Date: Thu, 30 Nov 2017 18:35:34 +0100
Subject: [PATCH 1/2] Switch to Python 3

---
 debian/control | 4 ++--
 debian/rules   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/debian/control b/debian/control
index 22487ef..446da44 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: vmdk-stream-converter
 Section: misc
 Priority: optional
 Maintainer: Hideki Yamane <[email protected]>
-Build-Depends: debhelper (>= 10), python | python-all | python-dev | python-all-dev
+Build-Depends: debhelper (>= 10), python3 | python3-all | python3-dev | python3-all-dev
 Standards-Version: 4.1.1
 Homepage: https://github.com/imcleod/VMDK-stream-converter
 Vcs-Git: https://anonscm.debian.org/git/collab-maint/vmdk-stream-converter.git
@@ -10,7 +10,7 @@ Vcs-Browser: https://anonscm.debian.org/collab-maint/vmdk-stream-converter.git
 
 Package: vmdk-stream-converter
 Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}
+Depends: ${python3:Depends}, ${misc:Depends}
 Description: raw disk images to stream-optimized VMDK files convert tool
  This tool convert raw disk images to stream-optimized VMDK files for VMWare
  ESX/vSphere environment, and known to work on ESXi 4.1.
diff --git a/debian/rules b/debian/rules
index 00a288f..4a50b60 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,4 +3,4 @@
 #export DH_VERBOSE=1
 
 %:
-	dh $@ --with=python2
+	dh $@ --with python3 --buildsystem=pybuild
-- 
2.11.0


--- End Message ---
--- Begin Message ---
Source: vmdk-stream-converter
Source-Version: 0.2-4.1~exp0

We believe that the bug you reported is fixed in the latest version of
vmdk-stream-converter, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Balint Reczey <[email protected]> (supplier of updated vmdk-stream-converter 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 27 Nov 2019 15:01:52 +0100
Source: vmdk-stream-converter
Binary: python3-vmdkstream vmdk-stream-converter
Architecture: source all
Version: 0.2-4.1~exp0
Distribution: experimental
Urgency: medium
Maintainer: Hideki Yamane <[email protected]>
Changed-By: Balint Reczey <[email protected]>
Description:
 python3-vmdkstream - Python 3 module for converting raw disk images to VMDK 
files
 vmdk-stream-converter - transitional dummy package
Closes: 883804 938793
Changes:
 vmdk-stream-converter (0.2-4.1~exp0) experimental; urgency=medium
 .
   * Non-maintainer upload
   * Switch to Python 3 (LP: #1735370) (Closes: #883804, #938793)
   * Rename main package to python3-vmdkstream to follow Python 3 module naming 
policy
   * debian/control: Simplify build dependencies
Checksums-Sha1:
 fa881f6e2a381feb6f2bb210080e0ce9da9734c1 2075 
vmdk-stream-converter_0.2-4.1~exp0.dsc
 430013adca636feaa05465dff2fd919d84e06111 4100 
vmdk-stream-converter_0.2-4.1~exp0.debian.tar.xz
 62847a69adcfeec1d6f9ad92308d0c6dae516927 6740 
python3-vmdkstream_0.2-4.1~exp0_all.deb
 630120b3102bd9a31fc1f33ef40fb7c4d545aa06 2288 
vmdk-stream-converter_0.2-4.1~exp0_all.deb
 1dfc3b9fc56a4f3072f8162993ea7c57b6d52ba1 6604 
vmdk-stream-converter_0.2-4.1~exp0_amd64.buildinfo
Checksums-Sha256:
 6ae4d1636bbb2ac3a1b5cf4a371c33325e486133a67c16c8a0a17392602dea61 2075 
vmdk-stream-converter_0.2-4.1~exp0.dsc
 9d83ccdb004960a0d532e91d6d04ba9cf787e66b8b0e8b3369842c2a601c7df0 4100 
vmdk-stream-converter_0.2-4.1~exp0.debian.tar.xz
 01e1554f60541eb9d43d513f824f73a5fb34a9d25be79b400975b1d1185c065f 6740 
python3-vmdkstream_0.2-4.1~exp0_all.deb
 2d8bf4bd4664a417f4c27377b195dfdcd5894e4a8060670e774cf82a31735d1b 2288 
vmdk-stream-converter_0.2-4.1~exp0_all.deb
 ec29c40a2f78da3b242ac4d10ad75e18077c31f0acae2a7027c34c11b9f7cb17 6604 
vmdk-stream-converter_0.2-4.1~exp0_amd64.buildinfo
Files:
 206a5a9147a3358ae1b114c2069f1851 2075 misc optional 
vmdk-stream-converter_0.2-4.1~exp0.dsc
 eb062472481e622cf2192ff22a45a24e 4100 misc optional 
vmdk-stream-converter_0.2-4.1~exp0.debian.tar.xz
 fb2c96d3876ee9c02ea844b5bcf8a821 6740 misc optional 
python3-vmdkstream_0.2-4.1~exp0_all.deb
 a7ffd4efc3efc5b3b4009a08253def84 2288 misc optional 
vmdk-stream-converter_0.2-4.1~exp0_all.deb
 e853b772c7fd6540383b0062bcc4d7f8 6604 misc optional 
vmdk-stream-converter_0.2-4.1~exp0_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEI/PvTgXX55rLQUfDg6KBkWslS0UFAl3ehYkACgkQg6KBkWsl
S0WgBxAApT6ecBbLcEOCoV8pSpBY9Dfqz8F+fHfXGIdAFv8OrJZXIggB0pSfpF4n
luYrj9GofACkhHE1h0un+tXueEaZU5jSL+lSdwEvLkjq+vRojh3CfTLgKSJa+NQi
sVpfbttoErindV/cTSvlRHQEMr63SETKhCDm7jcARuQeAic2YSNMhxEXubKbraSQ
qHD6DyJjdbUqPiz13dy0weMITxARqSAoSPFo7O5scWM2/gC6L8haa3RjepP56n4g
e25mPp4nGv4yzKMVy0+opdUNExScUQCOtApsBThjd1UqQ727PJYBLtf86lsgoacI
ZbT4Yrqr8wXObkB27siF7RQ7G1K4AqWP0aUizpFHvPQBr2HjDyHHI4Qt8C01hchc
/iXnHfoNWlw3EZOhPL9z72dYWdynKlXhMi3jLA81v6leIdcScEk+TnovFN8FA65r
cEjwMtpYVjfBqHTghV85YDTRvMHE01oloaW3FD39vEwxjsABn4eGjd7mSGDHUlmM
MaPyGz8aegNGyCLpjbXGtei5OX/N1IL0ClpVhxiD8KMYFz8gyTEWJMWUwCWycFtt
Il7W/SjwvUN7FK2SGReu7rnmpXbPyKZ7c91xJLx51fFpeyFyRkyrBI3eUC+VPthz
yyqytxgkZRpFtRItT1qIQGX3+FrKLAbfQxAlUSa2EOj9EW6dDCA=
=Tujm
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to