1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
export PYBUILD_NAME=lazr.restfulclient
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_install:
dh_auto_install
# dh_python2's namespace feature is enough:
find debian/python*-lazr.* -name '*.pth' -delete
# Do not run test-suite, it requires lazr.authentication and lazr.restful which
# aren't packaged in Debian
override_dh_auto_test:
override_dh_installdocs:
dh_installdocs -X NEWS.rst
override_dh_installchangelogs:
dh_installchangelogs src/lazr/restfulclient/docs/NEWS.rst
|