1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#!/usr/bin/make -f
export DH_VERBOSE=1
export PYBUILD_NAME=lasagne
export THEANO_FLAGS=base_compiledir='.pybuild',device=cpu
%:
ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
else
dh $@ --with python2,python3 --buildsystem=pybuild
endif
override_dh_auto_test:
PYBUILD_SYSTEM=custom PYBUILD_TEST_ARGS="{interpreter} -m pytest -v -rs lasagne/" dh_auto_test
override_dh_auto_install:
dh_auto_install
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N docs/ debian/lasagne-doc/usr/share/doc/lasagne-doc/html/
endif
override_dh_installdocs:
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
rst2html -r 5 README.rst .pybuild/README.html
LANG=C.UTF-8 links -dump .pybuild/README.html > .pybuild/README
endif
dh_installdocs -A .pybuild/README
override_dh_sphinxdoc:
dh_sphinxdoc --exclude=MathJax.js
override_dh_compress:
dh_compress -X.py
|