diff -Nru python-progress-1.2/debian/changelog python-progress-1.2/debian/changelog --- python-progress-1.2/debian/changelog 2016-01-28 16:01:05.000000000 +0000 +++ python-progress-1.2/debian/changelog 2019-08-10 19:12:40.000000000 +0000 @@ -1,3 +1,23 @@ +python-progress (1.2-2) unstable; urgency=medium + + * Team upload. + [ Ondřej Nový ] + * Fixed VCS URL (https) + * d/control: Remove ancient X-Python-Version field + * d/control: Remove ancient X-Python3-Version field + * Convert git repository from git-dpm to gbp layout + * Use debhelper-compat instead of debian/compat. + * Drop Python 2 support. + + [ Barry Warsaw ] + * d/control: Put DPMT in Maintainers and myself in Uploaders. + + [ Ondřej Nový ] + * d/control: Set Vcs-* to salsa.debian.org + * d/copyright: Use https protocol in Format field + + -- Ondřej Nový Sat, 10 Aug 2019 21:12:40 +0200 + python-progress (1.2-1) unstable; urgency=medium * Initial release. (Closes: #812908) diff -Nru python-progress-1.2/debian/compat python-progress-1.2/debian/compat --- python-progress-1.2/debian/compat 2016-01-28 16:01:05.000000000 +0000 +++ python-progress-1.2/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -9 diff -Nru python-progress-1.2/debian/control python-progress-1.2/debian/control --- python-progress-1.2/debian/control 2016-01-28 16:01:05.000000000 +0000 +++ python-progress-1.2/debian/control 2019-08-10 18:59:35.000000000 +0000 @@ -1,30 +1,16 @@ Source: python-progress Section: python Priority: optional -Maintainer: Barry Warsaw -Uploaders: Debian Python Modules Team -Build-Depends: debhelper (>= 9), +Maintainer: Debian Python Modules Team +Uploaders: Barry Warsaw +Build-Depends: debhelper-compat (= 9), dh-python, - python-all (>= 2.6.6-3~), - python-setuptools, python3-all, python3-setuptools Standards-Version: 3.9.6 Homepage: https://github.com/verigak/progress/ -Vcs-Git: git://anonscm.debian.org/python-modules/packages/python-progress.git -Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-progress.git -X-Python-Version: >= 2.7, << 2.8 -X-Python3-Version: >= 3.4 - -Package: python-progress -Architecture: all -Depends: ${misc:Depends}, ${python:Depends} -Description: easy progress reporting for Python - This package provides several canned progress bars for command line Python - programs. Progress bars are customizable and can be advanced by using the - next() method, with the finish() method to finish. - . - This is the Python 2 version. +Vcs-Git: https://salsa.debian.org/python-team/modules/python-progress.git +Vcs-Browser: https://salsa.debian.org/python-team/modules/python-progress Package: python3-progress Architecture: all diff -Nru python-progress-1.2/debian/copyright python-progress-1.2/debian/copyright --- python-progress-1.2/debian/copyright 2016-01-28 16:01:05.000000000 +0000 +++ python-progress-1.2/debian/copyright 2019-08-10 18:59:34.000000000 +0000 @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: progress Source: http://pypi.python.org/pypi/progress diff -Nru python-progress-1.2/debian/.git-dpm python-progress-1.2/debian/.git-dpm --- python-progress-1.2/debian/.git-dpm 2016-01-28 16:01:05.000000000 +0000 +++ python-progress-1.2/debian/.git-dpm 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -# see git-dpm(1) from git-dpm package -b8506f78a44c16adebd7c51855fe53eb341c3bf1 -b8506f78a44c16adebd7c51855fe53eb341c3bf1 -b8506f78a44c16adebd7c51855fe53eb341c3bf1 -b8506f78a44c16adebd7c51855fe53eb341c3bf1 -python-progress_1.2.orig.tar.gz -c7d789f621c7bfce9cfa16639570071d6445284b -4951 diff -Nru python-progress-1.2/debian/python-progress.docs python-progress-1.2/debian/python-progress.docs --- python-progress-1.2/debian/python-progress.docs 2016-01-28 16:01:05.000000000 +0000 +++ python-progress-1.2/debian/python-progress.docs 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -README.rst diff -Nru python-progress-1.2/debian/rules python-progress-1.2/debian/rules --- python-progress-1.2/debian/rules 2016-01-28 16:01:05.000000000 +0000 +++ python-progress-1.2/debian/rules 2019-08-10 18:59:35.000000000 +0000 @@ -3,4 +3,4 @@ export PYBUILD_NAME = progress %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild diff -Nru python-progress-1.2/debian/tests/control python-progress-1.2/debian/tests/control --- python-progress-1.2/debian/tests/control 2016-01-28 16:01:05.000000000 +0000 +++ python-progress-1.2/debian/tests/control 2019-08-10 19:12:04.000000000 +0000 @@ -1,3 +1 @@ -Test-Command: python -c "import progress; print progress.__version__" - Test-Command: python3 -c "import progress; print(progress.__version__)"