diff -Nru python-waiting-1.4.1/debian/changelog python-waiting-1.4.1/debian/changelog --- python-waiting-1.4.1/debian/changelog 2019-01-26 13:19:32.000000000 +0000 +++ python-waiting-1.4.1/debian/changelog 2019-08-07 14:47:43.000000000 +0000 @@ -1,3 +1,11 @@ +python-waiting (1.4.1-4) unstable; urgency=medium + + * Drop Python 2 package python-waiting. + * Update to debhelper 12. + * Update Standards-Version to 4.4.0 (no changes required). + + -- Stuart Prescott Thu, 08 Aug 2019 00:47:43 +1000 + python-waiting (1.4.1-3) unstable; urgency=medium [ Ondřej Nový ] diff -Nru python-waiting-1.4.1/debian/control python-waiting-1.4.1/debian/control --- python-waiting-1.4.1/debian/control 2019-01-26 13:19:32.000000000 +0000 +++ python-waiting-1.4.1/debian/control 2019-08-07 14:47:43.000000000 +0000 @@ -3,34 +3,17 @@ Section: python Priority: optional Build-Depends: - debhelper-compat (= 11), + debhelper-compat (= 12), dh-python, - python-all (>= 2.6.6-3), - python-forge, - python-pytest, - python-setuptools (>= 0.6b3), python3-all, python3-forge, python3-pytest, python3-setuptools (>= 0.6b3), -Standards-Version: 4.3.0 +Standards-Version: 4.4.0 Homepage: https://github.com/vmalloc/waiting Vcs-Git: https://salsa.debian.org/debian/python-waiting.git Vcs-Browser: https://salsa.debian.org/debian/python-waiting -Package: python-waiting -Architecture: all -Depends: - ${misc:Depends}, - ${python:Depends} -Description: Python module for waiting for events to happen (Python 2 version) - The waiting module is designed to wait for events to occur. The waiting - routine polls a given predicate function until it returns True, polling on - a regular basis, at defined times, with exponential back-off or with a - time-out. - . - This package contains the Python 2 version of the waiting module. - Package: python3-waiting Architecture: all Depends: diff -Nru python-waiting-1.4.1/debian/pybuild.testfiles python-waiting-1.4.1/debian/pybuild.testfiles --- python-waiting-1.4.1/debian/pybuild.testfiles 1970-01-01 00:00:00.000000000 +0000 +++ python-waiting-1.4.1/debian/pybuild.testfiles 2019-08-07 14:47:43.000000000 +0000 @@ -0,0 +1,2 @@ +tests +README.rst diff -Nru python-waiting-1.4.1/debian/python-waiting.docs python-waiting-1.4.1/debian/python-waiting.docs --- python-waiting-1.4.1/debian/python-waiting.docs 2019-01-26 13:19:32.000000000 +0000 +++ python-waiting-1.4.1/debian/python-waiting.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -README.rst diff -Nru python-waiting-1.4.1/debian/rules python-waiting-1.4.1/debian/rules --- python-waiting-1.4.1/debian/rules 2019-01-26 13:19:32.000000000 +0000 +++ python-waiting-1.4.1/debian/rules 2019-08-07 14:47:43.000000000 +0000 @@ -3,8 +3,6 @@ export PYBUILD_NAME = waiting export PYBUILD_TEST_PYTEST = 1 -export PYBUILD_BEFORE_TEST = cp -r tests/ README.rst {build_dir} -export PYBUILD_AFTER_TEST = rm {build_dir}/README.rst %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild diff -Nru python-waiting-1.4.1/debian/tests/control python-waiting-1.4.1/debian/tests/control --- python-waiting-1.4.1/debian/tests/control 2019-01-26 13:19:32.000000000 +0000 +++ python-waiting-1.4.1/debian/tests/control 2019-08-07 14:47:43.000000000 +0000 @@ -1,9 +1,3 @@ -Tests: python-waiting -Depends: - python-forge, - python-pytest, - python-waiting, - Tests: python3-waiting Depends: python3-all, diff -Nru python-waiting-1.4.1/debian/tests/python-waiting python-waiting-1.4.1/debian/tests/python-waiting --- python-waiting-1.4.1/debian/tests/python-waiting 2019-01-26 13:19:32.000000000 +0000 +++ python-waiting-1.4.1/debian/tests/python-waiting 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -#!/bin/sh -set -e -u -cp -a README.rst tests/ "$AUTOPKGTEST_TMP" -cd "$AUTOPKGTEST_TMP/tests/" -export PYTHONWARNINGS=d -for py in $(pyversions -i); do - $py -m pytest -v 2>&1 -done