diff -Nru vatnumber-1.2/debian/changelog vatnumber-1.2/debian/changelog --- vatnumber-1.2/debian/changelog 2018-11-22 16:05:01.000000000 +0000 +++ vatnumber-1.2/debian/changelog 2019-08-26 08:55:07.000000000 +0000 @@ -1,3 +1,14 @@ +vatnumber (1:1.2-9) unstable; urgency=medium + + * Cleanup white space. + * Merge vatnumber-1.2-8.1-nmu.diff (#935565). + * Remove the NMU changelog entry. + * Ćomplete the removal of Python2 support (Closes: #935565). + * Bump the Debian copyright year. + * Bump Standards-Version to 4.4.0, no changes needed. + + -- Mathias Behrle Mon, 26 Aug 2019 10:55:07 +0200 + vatnumber (1:1.2-8) unstable; urgency=medium * Change the maintainer address to tryton-debian@lists.alioth.debian.org diff -Nru vatnumber-1.2/debian/control vatnumber-1.2/debian/control --- vatnumber-1.2/debian/control 2018-11-22 15:59:44.000000000 +0000 +++ vatnumber-1.2/debian/control 2019-08-26 08:54:05.000000000 +0000 @@ -5,32 +5,13 @@ Priority: optional Build-Depends: debhelper (>= 11~), dh-python, - python, - python-setuptools, python3, python3-setuptools -Standards-Version: 4.2.1 +Standards-Version: 4.4.0 Vcs-Browser: https://salsa.debian.org/tryton-team/vatnumber Vcs-Git: https://salsa.debian.org/tryton-team/vatnumber.git Homepage: https://pypi.python.org/pypi/vatnumber/ -Package: python-vatnumber -Architecture: all -Depends: python-pkg-resources, - python-stdnum, - ${misc:Depends}, - ${python:Depends} -Description: Python module to validate VAT numbers (implemented in Python 2) - This is a Python module to check the validity of Value Added Tax (VAT) numbers - of States inside the European Union. It uses the validation rules according to - http://sima-pc.com/nif.php. - . - Additionally this module provides a function for online validation of given VAT - numbers by the VIES VAT number validation (SOAP Service) of the Taxation and - Customs Union: http://ec.europa.eu/taxation_customs/vies/vieshome.do - . - This package is targeting Python version 2. - Package: python3-vatnumber Architecture: all Depends: python3-pkg-resources, diff -Nru vatnumber-1.2/debian/copyright vatnumber-1.2/debian/copyright --- vatnumber-1.2/debian/copyright 2018-03-29 13:57:05.000000000 +0000 +++ vatnumber-1.2/debian/copyright 2019-08-26 08:48:08.000000000 +0000 @@ -7,7 +7,7 @@ Files: debian/* Copyright: 2009-2012 Daniel Baumann - 2012-2018 Mathias Behrle + 2012-2019 Mathias Behrle License: GPL-3+ License: GPL-3+ diff -Nru vatnumber-1.2/debian/rules vatnumber-1.2/debian/rules --- vatnumber-1.2/debian/rules 2018-02-24 21:27:48.000000000 +0000 +++ vatnumber-1.2/debian/rules 2019-08-24 08:16:26.000000000 +0000 @@ -1,11 +1,9 @@ #!/usr/bin/make -f -PACKAGE_NAME := $(shell python setup.py --name) +PACKAGE_NAME := $(shell python3 setup.py --name) export PYBUILD_NAME=$(PACKAGE_NAME) # Don't run tests for vatnumber, test_vies tries to connect to the network export PYBUILD_DISABLE=test %: - dh $@ --with python2,python3 --buildsystem=pybuild - - + dh $@ --with python3 --buildsystem=pybuild diff -Nru vatnumber-1.2/debian/tests/control vatnumber-1.2/debian/tests/control --- vatnumber-1.2/debian/tests/control 2018-11-22 16:02:20.000000000 +0000 +++ vatnumber-1.2/debian/tests/control 2019-08-26 08:41:32.000000000 +0000 @@ -1,5 +1,2 @@ -Depends: python-vatnumber -Test-Command: cd "$ADTTMP" ; python -c "import vatnumber ; print(vatnumber.__version__)" - Depends: python3-vatnumber Test-Command: cd "$ADTTMP" ; python3 -c "import vatnumber ; print(vatnumber.__version__)"