diff -Nru argvalidate-0.9.0/debian/changelog argvalidate-0.9.0/debian/changelog --- argvalidate-0.9.0/debian/changelog 2014-10-25 00:30:27.000000000 +0000 +++ argvalidate-0.9.0/debian/changelog 2014-09-17 18:58:21.000000000 +0000 @@ -1,3 +1,22 @@ +argvalidate (0.9.0-2) unstable; urgency=low + + * Team upload. + + [ Jakub Wilk ] + * Use canonical URIs for Vcs-* fields. + + [ Barry Warsaw ] + * d/compat: Bump to 9. + * d/control: + - Update Build-Depends* fields for dh-python2 and pybuild. Remove + dependency on python-support. Add dependency on python-sphinx. + - Add X-Python-Version header. + - Bump Standards-Version to 3.9.5 with no other changes necessary. + * d/rules: Convert to dh-python2 and pybuild. + * d/source/format: Convert to "3.0 (quilt)" + + -- Barry Warsaw Wed, 17 Sep 2014 14:58:18 -0400 + argvalidate (0.9.0-1) unstable; urgency=low * New upstream release. @@ -5,10 +24,10 @@ + Updated Homepage field. + Bumped Standards-Version to 3.8.1, no modifications required. + Added python (>= 2.5.4-1~) to Build-Depends (for --install-layout=deb). - + * debian/watch: + Added final newline. - + * debian/rules: + Added --install-layout=deb option to python setup.py install call. @@ -25,4 +44,3 @@ * Initial release (Closes: #516880) -- Stephan Peijnik Wed, 25 Feb 2009 12:13:14 +0100 - diff -Nru argvalidate-0.9.0/debian/compat argvalidate-0.9.0/debian/compat --- argvalidate-0.9.0/debian/compat 2014-10-25 00:30:27.000000000 +0000 +++ argvalidate-0.9.0/debian/compat 2014-09-17 18:47:25.000000000 +0000 @@ -1 +1 @@ -5 +9 diff -Nru argvalidate-0.9.0/debian/control argvalidate-0.9.0/debian/control --- argvalidate-0.9.0/debian/control 2014-10-25 00:30:27.000000000 +0000 +++ argvalidate-0.9.0/debian/control 2014-09-17 18:47:25.000000000 +0000 @@ -3,12 +3,13 @@ Priority: optional Maintainer: Debian Python Modules Team Uploaders: Stephan Peijnik -Build-Depends: debhelper (>= 5), python (>= 2.5.4-1~) -Build-Depends-Indep: python-support (>= 0.6), python-setuptools, python-sphinx -Standards-Version: 3.8.1 +Build-Depends: debhelper (>= 9), dh-python, python (>= 2.6.6-3~) +Build-Depends-Indep: python-setuptools, python-sphinx +Standards-Version: 3.9.5 Homepage: http://code.sp-its.at/projects/argvalidate -Vcs-Svn: svn://svn.debian.org/python-modules/packages/argvalidate/trunk/ -Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/argvalidate/trunk/ +Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/argvalidate/trunk/ +Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/argvalidate/trunk/ +X-Python-Version: >= 2.6 Package: python-argvalidate Architecture: all diff -Nru argvalidate-0.9.0/debian/copyright argvalidate-0.9.0/debian/copyright --- argvalidate-0.9.0/debian/copyright 2014-10-25 00:30:27.000000000 +0000 +++ argvalidate-0.9.0/debian/copyright 2014-09-17 18:47:25.000000000 +0000 @@ -29,6 +29,5 @@ On Debian systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL-3'. -The Debian packaging is Copyright © 2009, Stephan Peijnik +The Debian packaging is Copyright © 2009, Stephan Peijnik and is licensed under the LGPL, see above. - diff -Nru argvalidate-0.9.0/debian/rules argvalidate-0.9.0/debian/rules --- argvalidate-0.9.0/debian/rules 2014-10-25 00:30:27.000000000 +0000 +++ argvalidate-0.9.0/debian/rules 2014-09-17 19:03:59.000000000 +0000 @@ -1,61 +1,15 @@ #!/usr/bin/make -f -# -*- makefile -*- -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p') -PKG_BUILD_DIR=$(CURDIR)/debian/python-argvalidate -PKG_DOC_DIR=$(PKG_BUILD_DIR)/usr/share/doc/python-argvalidate -clean: - dh_testdir - dh_testroot - rm -rf build - make -C doc clean - find . -name "*\.py[co]" -delete - dh_clean +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 -test: -ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) - python setup.py test -endif +%: + dh $@ --with python2,sphinxdoc --buildsystem=pybuild -build: - python setup.py build +override_dh_installdocs: make -C doc html - -install: - python setup.py install --root $(PKG_BUILD_DIR) \ - --install-layout=deb \ - --single-version-externally-managed - -binary-arch: - -binary-indep: test build install - dh_testdir - dh_testroot - dh_install - dh_installchangelogs dh_installdocs - # Replace jquery.js provided by package with symlink to system - # jquery.js provided by libjs-jquery. - rm $(PKG_DOC_DIR)/html/_static/jquery.js - dh_link usr/share/javascript/jquery/jquery.js \ - usr/share/doc/python-argvalidate/html/_static/jquery.js - - dh_pysupport - dh_compress -X.py -X.json -X.html -X.js - dh_fixperms - dh_installdeb - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch - -get-orig-source: - uscan --force-download --rename --repack --destdir=. \ - --download-version=$(DEB_UPSTREAM_VERSION) - -.PHONY: build clean binary-indep binary-arch install test +override_dh_clean: + make -C doc clean + dh_clean diff -Nru argvalidate-0.9.0/debian/source/format argvalidate-0.9.0/debian/source/format --- argvalidate-0.9.0/debian/source/format 1970-01-01 00:00:00.000000000 +0000 +++ argvalidate-0.9.0/debian/source/format 2014-09-17 18:47:25.000000000 +0000 @@ -0,0 +1 @@ +3.0 (quilt) diff -Nru argvalidate-0.9.0/debian/watch argvalidate-0.9.0/debian/watch --- argvalidate-0.9.0/debian/watch 2014-10-25 00:30:27.000000000 +0000 +++ argvalidate-0.9.0/debian/watch 2014-09-17 18:47:25.000000000 +0000 @@ -1,3 +1,2 @@ version=3 - http://pypi.python.org/packages/source/a/argvalidate/argvalidate-(.*)\.tar.gz