diff -Nru python-extras-1.0.0/debian/changelog python-extras-1.0.0/debian/changelog --- python-extras-1.0.0/debian/changelog 2017-11-17 08:24:50.000000000 +0000 +++ python-extras-1.0.0/debian/changelog 2018-04-02 23:51:08.000000000 +0000 @@ -1,8 +1,20 @@ -python-extras (1.0.0-2~cloud0) xenial-queens; urgency=medium +python-extras (1.0.0-3~cloud0) xenial-queens; urgency=medium - * New upstream release for the Ubuntu Cloud Archive. + * New update for the Ubuntu Cloud Archive. - -- Openstack Ubuntu Testing Bot Fri, 17 Nov 2017 08:24:50 +0000 + -- Openstack Ubuntu Testing Bot Mon, 02 Apr 2018 23:51:08 +0000 + +python-extras (1.0.0-3) unstable; urgency=medium + + [ Ondřej Nový ] + * d/control: Set Vcs-* to salsa.debian.org + + [ Thomas Goirand ] + * Add missing dh-python build-depends. + * Standards-Version is now 4.1.3. + * Test with all versions of Python. + + -- Thomas Goirand Mon, 02 Apr 2018 20:30:12 +0200 python-extras (1.0.0-2) unstable; urgency=medium diff -Nru python-extras-1.0.0/debian/control python-extras-1.0.0/debian/control --- python-extras-1.0.0/debian/control 2017-10-29 19:52:41.000000000 +0000 +++ python-extras-1.0.0/debian/control 2018-04-02 18:30:12.000000000 +0000 @@ -6,6 +6,7 @@ Thomas Goirand , Build-Depends: debhelper (>= 10), + dh-python, openstack-pkg-tools, python-all, python-setuptools, @@ -13,9 +14,10 @@ python3-setuptools, Build-Depends-Indep: python-testtools, -Standards-Version: 4.1.1 -Vcs-Browser: https://anonscm.debian.org/cgit/openstack/python/python-extras.git -Vcs-Git: https://anonscm.debian.org/git/openstack/python/python-extras.git + python3-testtools, +Standards-Version: 4.1.3 +Vcs-Browser: https://salsa.debian.org/openstack-team/python/python-extras +Vcs-Git: https://salsa.debian.org/openstack-team/python/python-extras.git Homepage: https://pypi.python.org/pypi/extras Package: python-extras diff -Nru python-extras-1.0.0/debian/rules python-extras-1.0.0/debian/rules --- python-extras-1.0.0/debian/rules 2017-10-29 19:52:41.000000000 +0000 +++ python-extras-1.0.0/debian/rules 2018-04-02 18:30:12.000000000 +0000 @@ -11,5 +11,7 @@ ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) override_dh_auto_test: - make check + for i in $(PYTHONS) $(PYTHON3S) ; do \ + PYTHONPATH=$(CURDIR) python$$i -m testtools.run extras.tests.test_suite ; \ + done endif