diff -Nru apipkg-1.5/debian/changelog apipkg-1.5/debian/changelog --- apipkg-1.5/debian/changelog 2019-08-09 03:23:39.000000000 +0000 +++ apipkg-1.5/debian/changelog 2019-12-17 12:51:50.000000000 +0000 @@ -1,3 +1,19 @@ +apipkg (1.5-4build1) focal; urgency=medium + + * No-change rebuild to generate dependencies on python2. + + -- Matthias Klose Tue, 17 Dec 2019 12:51:50 +0000 + +apipkg (1.5-4) unstable; urgency=medium + + [ Ondřej Nový ] + * Bump Standards-Version to 4.4.1. + + [ Scott Talbert ] + * Remove Python 2 support (Closes: #936125) + + -- Scott Talbert Mon, 09 Dec 2019 22:33:28 -0500 + apipkg (1.5-3) unstable; urgency=medium [ Ondřej Nový ] diff -Nru apipkg-1.5/debian/control apipkg-1.5/debian/control --- apipkg-1.5/debian/control 2019-08-09 03:22:41.000000000 +0000 +++ apipkg-1.5/debian/control 2019-12-10 03:31:18.000000000 +0000 @@ -5,37 +5,17 @@ Build-Depends: debhelper-compat (= 12), dh-python, - python-all (>= 2.6.6-3), python3-all, - python-setuptools, python3-setuptools, - python-setuptools-scm, python3-setuptools-scm, - python-pytest, python3-pytest, - python-py, python3-py -Standards-Version: 4.4.0 +Standards-Version: 4.4.1 Section: python Homepage: https://github.com/pytest-dev/apipkg Vcs-Git: https://salsa.debian.org/python-team/modules/apipkg.git Vcs-Browser: https://salsa.debian.org/python-team/modules/apipkg -Package: python-apipkg -Architecture: all -Depends: - ${python:Depends}, - ${misc:Depends} -Description: namespace control and lazy-import mechanism for Python - With apipkg you can control the exported namespace of a Python package and - greatly reduce the number of imports for your users. It is a small pure - Python module that works on virtually all Python versions, including - CPython2.3 to Python3.1, Jython and PyPy. It co-operates well with Python's - help() system, custom importers (PEP302) and common command line completion - tools. - . - This package contains apipkg for Python 2. - Package: python3-apipkg Architecture: all Depends: diff -Nru apipkg-1.5/debian/rules apipkg-1.5/debian/rules --- apipkg-1.5/debian/rules 2018-10-15 03:21:52.000000000 +0000 +++ apipkg-1.5/debian/rules 2019-12-10 03:31:39.000000000 +0000 @@ -2,7 +2,7 @@ export PYBUILD_NAME=apipkg %: - dh $@ --buildsystem=pybuild --with python2,python3 + dh $@ --buildsystem=pybuild --with python3 override_dh_auto_test: PYBUILD_SYSTEM=custom PYBUILD_TEST_ARGS="{interpreter} -m pytest -v -x" dh_auto_test diff -Nru apipkg-1.5/debian/tests/control apipkg-1.5/debian/tests/control --- apipkg-1.5/debian/tests/control 2018-10-18 02:27:00.000000000 +0000 +++ apipkg-1.5/debian/tests/control 2019-12-10 03:32:58.000000000 +0000 @@ -1,5 +1,2 @@ -Tests: python-apipkg -Depends: python-all, python-apipkg, python-setuptools, python-pytest, python-py - Tests: python3-apipkg Depends: python3-all, python3-apipkg, python3-setuptools, python3-pytest, python3-py diff -Nru apipkg-1.5/debian/tests/python-apipkg apipkg-1.5/debian/tests/python-apipkg --- apipkg-1.5/debian/tests/python-apipkg 2018-10-15 02:17:41.000000000 +0000 +++ apipkg-1.5/debian/tests/python-apipkg 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -#!/bin/sh -set -e -for py in $(pyversions -i); do echo "[*] testing on $py:"; $py -Wd -m pytest -v -x 2>&1; done