diff options
author | Christopher Baines <mail@cbaines.net> | 2015-12-22 17:07:02 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2015-12-22 17:10:20 +0000 |
commit | 06b502c32295e31561a26d6fc60a4f3939a6f4b3 (patch) | |
tree | f9056c1690498e28228f5b8e423df1685117d87e | |
parent | eba4f2e963c5dc29717138a47cadbf1d445a8f6b (diff) | |
download | python-jsmin-06b502c32295e31561a26d6fc60a4f3939a6f4b3.tar python-jsmin-06b502c32295e31561a26d6fc60a4f3939a6f4b3.tar.gz |
Use pybuild as the build system
-rwxr-xr-x | debian/rules | 29 |
1 files 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 |