diff -Nru pyskein-1.0/debian/changelog pyskein-1.0/debian/changelog --- pyskein-1.0/debian/changelog 2014-03-21 03:48:50.000000000 +0000 +++ pyskein-1.0/debian/changelog 2016-05-22 05:04:21.000000000 +0000 @@ -1,5 +1,5 @@ -pyskein (1.0-0ubuntu1~trusty7) trusty; urgency=low +pyskein (1.0-0ubuntu1~ubuntu14.04.8) trusty; urgency=low * Initial Release. (Closes: #682044) - -- Jason Gerard DeRose Sat, 28 Dec 2013 20:59:24 -0700 + -- Jason Gerard DeRose Sun, 03 Jan 2016 12:47:31 -0700 diff -Nru pyskein-1.0/debian/control pyskein-1.0/debian/control --- pyskein-1.0/debian/control 2014-03-21 03:48:50.000000000 +0000 +++ pyskein-1.0/debian/control 2016-05-22 05:04:21.000000000 +0000 @@ -3,10 +3,11 @@ Priority: optional Maintainer: Jason Gerard DeRose Build-Depends: debhelper (>= 9), - python3-all-dev (>= 3.4~rc1), + dh-python, + python3-all-dev (>= 3.2.3), python3-sphinx, -Standards-Version: 3.9.5 -X-Python3-Version: >= 3.4 +Standards-Version: 3.9.6 +X-Python3-Version: >= 3.2 Homepage: http://packages.python.org/pyskein/ Vcs-Bzr: https://code.launchpad.net/~pyskein/pyskein/packaging diff -Nru pyskein-1.0/debian/rules pyskein-1.0/debian/rules --- pyskein-1.0/debian/rules 2014-03-21 03:48:50.000000000 +0000 +++ pyskein-1.0/debian/rules 2016-05-22 05:04:21.000000000 +0000 @@ -1,18 +1,19 @@ #!/usr/bin/make -f +# See https://wiki.debian.org/Python/LibraryStyleGuide + +export PYBUILD_NAME = skein + %: - dh $@ --with=python3 --with=sphinxdoc + dh $@ --buildsystem=pybuild --with=python3,sphinxdoc override_dh_auto_clean: - rm -rf build/ doc_src/_build/ + rm -rf doc_src/_build/ rm -f src/_skein.cpython-*.so override_dh_auto_build: + dh_auto_build sphinx-build -b html doc_src doc_src/_build/html - set -ex; for python in $(shell py3versions -r); do \ - $$python setup.py build \ - --executable=/usr/bin/python3; \ - done override_dh_auto_test: set -ex; for python in $(shell py3versions -r); do \ @@ -21,15 +22,3 @@ PYTHONPATH="$(CURDIR)/src" $$python test/test_compare_pure.py; \ done -override_dh_auto_install: - set -ex; for python in $(shell py3versions -r); do \ - $$python setup.py install \ - --install-layout=deb \ - --root=$(CURDIR)/debian/python3-skein; \ - done - -override_dh_sphinxdoc: -ifneq "$(shell dh_listpackages | grep -- -doc)" "" - dh_sphinxdoc -endif - diff -Nru pyskein-1.0/debian/watch pyskein-1.0/debian/watch --- pyskein-1.0/debian/watch 2014-03-21 03:48:50.000000000 +0000 +++ pyskein-1.0/debian/watch 2016-05-22 05:04:21.000000000 +0000 @@ -1,2 +1,2 @@ version=3 -http://pypi.python.org/packages/source/p/pyskein/pyskein-(.+).tar.gz +https://pypi.python.org/simple/pyskein/ …