diff -Nru zope.deprecation-4.1.1/debian/changelog zope.deprecation-4.1.1/debian/changelog --- zope.deprecation-4.1.1/debian/changelog 2014-06-19 18:35:10.000000000 +0000 +++ zope.deprecation-4.1.1/debian/changelog 2014-06-30 19:14:39.000000000 +0000 @@ -1,3 +1,11 @@ +zope.deprecation (4.1.1-3) unstable; urgency=medium + + * Simplify DEP-8 tests so that they just ensure that the package is + importable in both Python 2 and Python 3. + * Add myself to Uploaders. + + -- Barry Warsaw Mon, 30 Jun 2014 15:13:44 -0400 + zope.deprecation (4.1.1-2) unstable; urgency=medium * Team upload. diff -Nru zope.deprecation-4.1.1/debian/control zope.deprecation-4.1.1/debian/control --- zope.deprecation-4.1.1/debian/control 2014-06-16 18:24:39.000000000 +0000 +++ zope.deprecation-4.1.1/debian/control 2014-06-30 19:14:23.000000000 +0000 @@ -2,7 +2,7 @@ Section: zope Priority: extra Maintainer: Debian/Ubuntu Zope Team -Uploaders: TANIGUCHI Takaki +Uploaders: TANIGUCHI Takaki , Barry Warsaw Build-Depends: debhelper (>= 7), dh-python, python-all (>= 2.6.6-3~), diff -Nru zope.deprecation-4.1.1/debian/tests/all zope.deprecation-4.1.1/debian/tests/all --- zope.deprecation-4.1.1/debian/tests/all 2011-08-03 13:55:26.000000000 +0000 +++ zope.deprecation-4.1.1/debian/tests/all 2014-06-30 19:08:20.000000000 +0000 @@ -1,2 +1,4 @@ -#!/bin/bash -. /usr/share/python-zope.testing/test_helper +#!/usr/bin/python + +import zope.deprecation +print zope.deprecation diff -Nru zope.deprecation-4.1.1/debian/tests/all-3 zope.deprecation-4.1.1/debian/tests/all-3 --- zope.deprecation-4.1.1/debian/tests/all-3 1970-01-01 00:00:00.000000000 +0000 +++ zope.deprecation-4.1.1/debian/tests/all-3 2014-06-30 19:08:20.000000000 +0000 @@ -0,0 +1,4 @@ +#!/usr/bin/python3 + +import zope.deprecation +print(zope.deprecation) diff -Nru zope.deprecation-4.1.1/debian/tests/control zope.deprecation-4.1.1/debian/tests/control --- zope.deprecation-4.1.1/debian/tests/control 2011-08-03 13:55:26.000000000 +0000 +++ zope.deprecation-4.1.1/debian/tests/control 2014-06-30 19:08:20.000000000 +0000 @@ -1,3 +1,2 @@ -Tests: all -Features: no-build-needed -Depends: @, python-zope.testing +Tests: all all-3 +Depends: @