diff -pruN 1.1.8-1/debian/changelog 1.1.8-1ubuntu2/debian/changelog
--- 1.1.8-1/debian/changelog	2014-06-08 03:37:26.000000000 +0000
+++ 1.1.8-1ubuntu2/debian/changelog	2016-08-02 11:58:12.000000000 +0000
@@ -1,3 +1,29 @@
+python-setproctitle (1.1.8-1ubuntu2) yakkety; urgency=medium
+
+  * d/rules: Enable tests for py3.
+
+ -- Corey Bryant <corey.bryant@canonical.com>  Tue, 02 Aug 2016 07:57:58 -0400
+
+python-setproctitle (1.1.8-1ubuntu1) yakkety; urgency=medium
+
+  * d/rules: Enable tests for py2. Tests are still disabled for py3, see:
+    https://github.com/dvarrazzo/py-setproctitle/issues/50
+  * d/copyright: Drop (s) from Upstream Author(s) to fix Lintian error.
+
+ -- Corey Bryant <corey.bryant@canonical.com>  Mon, 01 Aug 2016 14:12:03 -0400
+
+python-setproctitle (1.1.8-1build2) xenial; urgency=medium
+
+  * No-change rebuild to drop python3.4 support.
+
+ -- Matthias Klose <doko@ubuntu.com>  Tue, 19 Jan 2016 00:10:24 +0000
+
+python-setproctitle (1.1.8-1build1) wily; urgency=medium
+
+  * No-change rebuild for python3.5 transition
+
+ -- Steve Langasek <steve.langasek@ubuntu.com>  Thu, 23 Jul 2015 07:13:22 +0000
+
 python-setproctitle (1.1.8-1) unstable; urgency=low
 
   * New Upstream Release (Closes: #675423)
diff -pruN 1.1.8-1/debian/control 1.1.8-1ubuntu2/debian/control
--- 1.1.8-1/debian/control	2014-06-08 03:35:52.000000000 +0000
+++ 1.1.8-1ubuntu2/debian/control	2015-07-23 07:13:22.000000000 +0000
@@ -1,7 +1,8 @@
 Source: python-setproctitle
 Section: python
 Priority: extra
-Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
 Uploaders: Matthew Grant <matt@mattgrant.net.nz>
 Build-Depends: debhelper (>= 7.0.50), python-all-dev, gcc (>= 4), python3-all-dev, procps, python-nose, python3-nose, python3-docutils
 X-Python-Version: >= 2.6
diff -pruN 1.1.8-1/debian/copyright 1.1.8-1ubuntu2/debian/copyright
--- 1.1.8-1/debian/copyright	2014-03-05 19:37:54.000000000 +0000
+++ 1.1.8-1ubuntu2/debian/copyright	2016-08-01 18:27:32.000000000 +0000
@@ -4,7 +4,7 @@ This work was packaged for Debian by:
 
 It was downloaded from http://pypi.python.org/pypi/setproctitle/
 
-Upstream Author(s):
+Upstream Author:
 
     Daniele Varrazzo <daniele.varrazzo@gmail.com>
 
diff -pruN 1.1.8-1/debian/rules 1.1.8-1ubuntu2/debian/rules
--- 1.1.8-1/debian/rules	2014-03-05 19:37:54.000000000 +0000
+++ 1.1.8-1ubuntu2/debian/rules	2016-08-02 01:25:06.000000000 +0000
@@ -16,22 +16,25 @@ PYTHON3 := $(shell py3versions -vr)
 #	dh_strip --dbg-package=python-setproctitle-dbg
 
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
-#
-#override_dh_auto_test: $(PYTHON2:%=test-%-stamp) $(PYTHON3:%=test-%-stamp)
-#test-%-stamp:	
-#	mkdir -p build/test-$*
-#	python$* setup.py build
-#	python$* setup.py install_lib -d build/test-$*
-#ifeq (,$(findstring kfreebsd,$(shell dpkg-architecture -qDEB_BUILD_ARCH_OS)))
-#	PYTHONPATH=build/test-$* python$* /usr/bin/nosetests -v tests
-#endif
-#	touch test-python-$*-stamp
-#
-test-python%:
-	true
-#	python$* nosetests-$* -v tests
 
-override_dh_auto_test: $(PYTHON2:%=test-python%) $(PYTHON3:%=test-python%)
+override_dh_auto_test:
+	set -e ; for pyvers in $(PYTHON2) $(PYTHON3); do \
+		mkdir -p build/test-$$pyvers; \
+		python$$pyvers setup.py build; \
+		python$$pyvers setup.py install_lib -d build/test-$$pyvers; \
+	done
+ifeq (,$(findstring kfreebsd,$(shell dpkg-architecture -qDEB_BUILD_ARCH_OS)))
+	set -e ; for pyvers in $(PYTHON2); do \
+		$(CC) tests/pyrun.c $$(python$$pyvers-config --includes --libs) -o tests/pyrun2; \
+		PYTHONPATH=build/test-$$pyvers python$$pyvers /usr/bin/nosetests -v tests; \
+	done
+	set -e ; for pyvers in $(PYTHON3); do \
+		2to3 -w --no-diffs tests/setproctitle_test.py; \
+		$(CC) tests/pyrun.c $$(python$$pyvers-config --includes --libs) -o tests/pyrun3; \
+		PYTHONPATH=build/test-$$pyvers python$$pyvers /usr/bin/nosetests3 -v tests; \
+	done
+endif
+
 endif
 
 build-python%:
