Control: tags 817639 + pending

Dear maintainer,

I've prepared an NMU for python-tcpwrap (versioned as 0.2-2.3) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
regards,
                        Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540      .''`.
more about me:  https://mapreri.org                             : :'  :
Launchpad user: https://launchpad.net/~mapreri                  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-
diffstat for python-tcpwrap-0.2 python-tcpwrap-0.2

 changelog     |   13 ++++++++++
 compat        |    2 -
 control       |   10 +++----
 rules         |   73 +---------------------------------------------------------
 source/format |    1 
 watch         |    2 +
 6 files changed, 23 insertions(+), 78 deletions(-)

diff -Nru python-tcpwrap-0.2/debian/changelog python-tcpwrap-0.2/debian/changelog
--- python-tcpwrap-0.2/debian/changelog	2017-03-10 22:37:25.000000000 +0100
+++ python-tcpwrap-0.2/debian/changelog	2017-03-10 22:34:28.000000000 +0100
@@ -1,3 +1,16 @@
+python-tcpwrap (0.2-2.3) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Use source format 3.0 (quilt).
+  * Bump debhelper compat level to 10.  Closes: #817639
+  * Drop obsolete package reletionship, such as old conflicts, provides, ...
+  * Rewrite debian/rules using the dh sequencer and pybuild.
+  * Bump Standards-Version to 3.9.8.
+  * Add an Homepage field.
+  * Add a watch file.
+
+ -- Mattia Rizzolo <mat...@debian.org>  Fri, 10 Mar 2017 22:34:28 +0100
+
 python-tcpwrap (0.2-2.2) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru python-tcpwrap-0.2/debian/compat python-tcpwrap-0.2/debian/compat
--- python-tcpwrap-0.2/debian/compat	2017-03-10 22:37:25.000000000 +0100
+++ python-tcpwrap-0.2/debian/compat	2017-03-10 22:16:16.000000000 +0100
@@ -1 +1 @@
-4
+10
diff -Nru python-tcpwrap-0.2/debian/control python-tcpwrap-0.2/debian/control
--- python-tcpwrap-0.2/debian/control	2017-03-10 22:37:25.000000000 +0100
+++ python-tcpwrap-0.2/debian/control	2017-03-10 22:34:07.000000000 +0100
@@ -2,15 +2,13 @@
 Section: python
 Priority: optional
 Maintainer: Brian Sutherland <ji...@web.de>
-Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.6.6-3~), libwrap0-dev
-Standards-Version: 3.6.1
+Build-Depends: debhelper (>= 10), dh-python, python-all-dev, libwrap0-dev
+Standards-Version: 3.9.8
+Homepage: http://ples.sourceforge.net
 
 Package: python-tcpwrap
 Architecture: any
 Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
-Conflicts: python2.3-tcpwrap, python2.4-tcpwrap
-Replaces: python2.3-tcpwrap, python2.4-tcpwrap
-Provides: ${python:Provides}
-Description: python interface for libwrap0 (TCP wrappers)
+Description: Python interface for libwrap0 (TCP wrappers)
  libwrap0 is a library for TCP wrappers so that programs can support TCP
  wrappers natively. This package provides a Python interface for libwrap0.
diff -Nru python-tcpwrap-0.2/debian/rules python-tcpwrap-0.2/debian/rules
--- python-tcpwrap-0.2/debian/rules	2017-03-10 22:37:25.000000000 +0100
+++ python-tcpwrap-0.2/debian/rules	2017-03-10 22:21:12.000000000 +0100
@@ -1,72 +1,3 @@
 #!/usr/bin/make -f
-# -*- makefile -*-
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-PYVERS	:= $(shell pyversions -vr debian/control)
-
-build: build-arch
-
-build-arch: build-arch-stamp
-build-arch-stamp:
-	dh_testdir
-	set -e; \
-	for v in $(PYVERS); do \
-	  /usr/bin/python$$v setup.py build; \
-	done
-	touch build-arch-stamp
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-arch-stamp
-	rm -rf build
-	dh_clean
-
-install-indep:
-	dh_testdir
-	dh_testroot
-	dh_clean -k -i
-	dh_installdirs -i
-
-install-arch: build-arch
-	dh_testdir
-	dh_testroot
-	dh_clean -k -s
-	dh_installdirs -s
-	set -e; \
-	for v in $(PYVERS); do \
-	  /usr/bin/python$$v setup.py install \
-	    --prefix=debian/python-tcpwrap/usr; \
-	done
-
-binary-common:
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs CHANGELOG
-	dh_installdocs
-	dh_installexamples
-	dh_installman
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-	dh_python2
-	dh_makeshlibs
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary-indep: install-indep
-	$(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
-
-binary-arch: build-arch install-arch
-	$(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
-
-binary: binary-indep binary-arch
-
-.PHONY: build build-arch clean install-indep install-arch
-.PHONY: binary-common binary-indep binary-arch binary
+%:
+	dh $@ --buildsystem pybuild --with python2
diff -Nru python-tcpwrap-0.2/debian/source/format python-tcpwrap-0.2/debian/source/format
--- python-tcpwrap-0.2/debian/source/format	1970-01-01 01:00:00.000000000 +0100
+++ python-tcpwrap-0.2/debian/source/format	2017-03-10 22:15:35.000000000 +0100
@@ -0,0 +1 @@
+3.0 (quilt)
diff -Nru python-tcpwrap-0.2/debian/watch python-tcpwrap-0.2/debian/watch
--- python-tcpwrap-0.2/debian/watch	1970-01-01 01:00:00.000000000 +0100
+++ python-tcpwrap-0.2/debian/watch	2017-03-10 22:32:58.000000000 +0100
@@ -0,0 +1,2 @@
+version=4
+http://sf.net/ples/ pytcpwrap@ANY_VERSION@@ARCHIVE_EXT@

Attachment: signature.asc
Description: PGP signature

Reply via email to