diff -Nru python-configglue-1.1.2/debian/changelog python-configglue-1.1.2/debian/changelog --- python-configglue-1.1.2/debian/changelog 2014-01-16 15:37:50.000000000 +0000 +++ python-configglue-1.1.2/debian/changelog 2016-04-14 11:33:06.000000000 +0000 @@ -1,3 +1,11 @@ +python-configglue (1.1.2-0ubuntu3) xenial; urgency=medium + + * Remove python3-configglue binary. It does not work with Python 3.5, + neither does the latest upstream version, and it has zero reverse + dependencies. (LP: #1504288) + + -- Martin Pitt Thu, 14 Apr 2016 13:32:13 +0200 + python-configglue (1.1.2-0ubuntu2) trusty; urgency=medium * d/control: Build-Depend on python3-all. diff -Nru python-configglue-1.1.2/debian/control python-configglue-1.1.2/debian/control --- python-configglue-1.1.2/debian/control 2014-01-16 15:34:54.000000000 +0000 +++ python-configglue-1.1.2/debian/control 2016-04-14 11:31:48.000000000 +0000 @@ -8,13 +8,8 @@ python-setuptools, python-xdg, python-mock, - python3-all, - python3-setuptools, - python3-xdg, - python3-mock, debhelper (>= 7.0.50) X-Python-Version: >= 2.6 -X-Python3-Version: >= 3.2 Standards-Version: 3.9.4 Package: python-configglue @@ -26,13 +21,3 @@ configuration file and a commandline interface. . This is the Python 2 package. - -Package: python3-configglue -Architecture: all -Depends: ${misc:Depends}, ${python3:Depends} -Description: Glues together optparse.OptionParser and ConfigParser.ConfigParser - Configglue is a library that glues together python's optparse.OptionParser - and ConfigParser.ConfigParser, so that the same options can be exported to a - configuration file and a commandline interface. - . - This is the Python 3 package. diff -Nru python-configglue-1.1.2/debian/rules python-configglue-1.1.2/debian/rules --- python-configglue-1.1.2/debian/rules 2013-07-11 21:22:35.000000000 +0000 +++ python-configglue-1.1.2/debian/rules 2016-04-14 11:32:12.000000000 +0000 @@ -1,32 +1,31 @@ #!/usr/bin/make -f PYTHON2=$(shell pyversions -vr) -PYTHON3=$(shell py3versions -vr) # Prevent setuptools/distribute from accessing the internet. export http_proxy = http://127.0.9.1:9 %: - dh $@ --with python2,python3 + dh $@ --with python2 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) test-python%: python$* setup.py test -override_dh_auto_test: $(PYTHON2:%=test-python%) $(PYTHON3:%=test-python%) +override_dh_auto_test: $(PYTHON2:%=test-python%) endif build-python%: python$* setup.py build -override_dh_auto_build: $(PYTHON3:%=build-python%) +override_dh_auto_build: dh_auto_build install-python%: python$* setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb -override_dh_auto_install: $(PYTHON3:%=install-python%) - dh_auto_install +override_dh_auto_install: + dh_auto_install --destdir=debian/tmp # override_dh_installchangelogs: # dh_installchangelogs -k foo/NEWS.rst