From 06b502c32295e31561a26d6fc60a4f3939a6f4b3 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Tue, 22 Dec 2015 17:07:02 +0000 Subject: Use pybuild as the build system --- debian/rules | 29 ++--------------------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/debian/rules b/debian/rules index 878c806..d933ac7 100755 --- a/debian/rules +++ b/debian/rules @@ -1,31 +1,6 @@ #!/usr/bin/make -f -PYTHONS:=$(shell pyversions -vr) -PYTHON3S:=$(shell py3versions -vr) +export PYBUILD_NAME=jsmin %: - dh $@ --buildsystem=python_distutils --with python2,python3 - -# shameless steal from zigo's openstack-pkg-tools -override_dh_installchangelogs: - if [ -e $(CURDIR)/debian/CHANGELOG ] ; then \ - dh_installchangelogs $(CURDIR)/debian/CHANGELOG ; \ - else \ - dh_installchangelogs ; \ - fi - -override_dh_auto_install: - set -e && for pyvers in $(PYTHONS); do \ - python$$pyvers setup.py install --install-layout=deb \ - --root $(CURDIR)/debian/python-jsmin; \ - done - set -e && for pyvers in $(PYTHON3S); do \ - python$$pyvers setup.py install --install-layout=deb \ - --root $(CURDIR)/debian/python3-jsmin; \ - done - -override_dh_auto_test: - set -e ; for pyvers in $(PYTHONS) $(PYTHON3S); do \ - PYTHONPATH=$(CURDIR) python$$pyvers jsmin/test.py ; \ - done - + dh $@ --buildsystem=pybuild --with python2,python3 -- cgit v1.2.3