diff -Nru pyjavaproperties-0.7/debian/changelog pyjavaproperties-0.7/debian/changelog --- pyjavaproperties-0.7/debian/changelog 2019-01-29 22:56:57.000000000 +0000 +++ pyjavaproperties-0.7/debian/changelog 2019-12-17 12:52:38.000000000 +0000 @@ -1,3 +1,16 @@ +pyjavaproperties (0.7-2build1) focal; urgency=medium + + * No-change rebuild to generate dependencies on python2. + + -- Matthias Klose Tue, 17 Dec 2019 12:52:38 +0000 + +pyjavaproperties (0.7-2) unstable; urgency=medium + + * Team upload. + * Drop python2 support; Closes: #937461 + + -- Sandro Tosi Sun, 15 Dec 2019 14:50:54 -0500 + pyjavaproperties (0.7-1) unstable; urgency=medium * New upstream version diff -Nru pyjavaproperties-0.7/debian/control pyjavaproperties-0.7/debian/control --- pyjavaproperties-0.7/debian/control 2018-12-05 10:20:58.000000000 +0000 +++ pyjavaproperties-0.7/debian/control 2019-12-15 19:50:54.000000000 +0000 @@ -5,8 +5,6 @@ Uploaders: Hans-Christoph Steiner Build-Depends: debhelper (>= 9.0.0~), dh-python, - python-all (>= 2.6.6-3), - python-setuptools (>= 0.6b3), python3-all, python3-setuptools, Standards-Version: 4.2.1 @@ -14,24 +12,6 @@ Vcs-Git: https://salsa.debian.org/python-team/modules/pyjavaproperties.git Vcs-Browser: https://salsa.debian.org/python-team/modules/pyjavaproperties -Package: python-pyjavaproperties -Architecture: all -Depends: ${python:Depends}, ${misc:Depends} -Provides: ${python:Provides} -Description: Python implementation of java.util.Properties - This module is designed to be a Python equivalent to the java.util.Properties - class. Currently, the basic input/output methods are supported, and there are - plans to add the XML input/output methods found in J2SE 5.0. - . - Fundamentally, this module is designed so that users can easily parse and - manipulate Java Properties files - that's it. There's a fair number of - Pythonistas who work in multi-language shops, and constantly writing your own - parsing mechanism is just painful. Not to mention Java guys are notoriously - unwilling to use anything which is cross-language for configuration, unless - it's XML, which is a form of self-punishment. :) - . - This package provides the Python 2.7 module. - Package: python3-pyjavaproperties Architecture: all Depends: ${python3:Depends}, ${misc:Depends} diff -Nru pyjavaproperties-0.7/debian/rules pyjavaproperties-0.7/debian/rules --- pyjavaproperties-0.7/debian/rules 2018-12-05 10:20:58.000000000 +0000 +++ pyjavaproperties-0.7/debian/rules 2019-12-15 19:50:54.000000000 +0000 @@ -4,10 +4,9 @@ export PYBUILD_NAME=pyjavaproperties %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) - python pyjavaproperties_test.py python3 pyjavaproperties_test.py endif diff -Nru pyjavaproperties-0.7/debian/tests/control pyjavaproperties-0.7/debian/tests/control --- pyjavaproperties-0.7/debian/tests/control 2018-12-05 10:20:58.000000000 +0000 +++ pyjavaproperties-0.7/debian/tests/control 2019-12-15 19:50:54.000000000 +0000 @@ -1,7 +1,3 @@ -Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import pyjavaproperties; print pyjavaproperties" ; $py /usr/share/python-pyjavaproperties/pyjavaproperties_test.py ; done -Depends: @, python-all, python-pyjavaproperties -Restrictions: allow-stderr - Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import pyjavaproperties; print(pyjavaproperties)" ; $py /usr/share/python3-pyjavaproperties/pyjavaproperties_test.py ; done Depends: @, python3-all, python3-pyjavaproperties Restrictions: allow-stderr