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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
#!/usr/bin/make -f
export PYBUILD_SYSTEM=custom
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
PY3VERS := $(shell py3versions -s)
LIB := $$(python3 -c "from setuptools.command.build import build ; from setuptools import Distribution ; b = build(Distribution()) ; b.finalize_options() ; print(b.build_platlib)")
# This should have the same result without using setuptools - but it fails creating the docs
# LIB := $$(find build -type d -name mpl_toolkits | grep `py3versions -d -v | sed 's/\.//'` | sed 's?/mpl_toolkits??')
%:
dh $@ --with sphinxdoc --buildsystem=pybuild
override_dh_auto_install:
set -e ;
for python in $(PY3VERS); do \
$$python setup.py install --root $(CURDIR)/debian/python3-mpltoolkits.basemap/ --install-layout=deb; \
done
override_dh_auto_build:
set -e ; \
cython3 -3 src/*pyx; \
for python in $(PY3VERS); do \
$$python setup.py build; \
done
# HACK: we need to import axes_grid1 but we need to import it from the "local"
# mpl_toolkits namespace
ln -s $$(dirname $$(python3 -c "import mpl_toolkits.axes_grid1 as p; print(p.__file__)")) $(CURDIR)/$(LIB)/mpl_toolkits/
# build doc only for default python version
#mv $(CURDIR)/$(LIB)/*.so $(CURDIR)/$(LIB)/mpl_toolkits/
mv $(CURDIR)/doc/source/index.rst $(CURDIR)/doc/index.rst
(export MPLCONFIGDIR=. ; cd doc ; PYTHONPATH=$(CURDIR)/$(LIB) BASEMAPDATA=$(CURDIR)/data/basemap_data/src/mpl_toolkits/basemap_data/ python3 make.py html)
# remove hack
rm $(CURDIR)/$(LIB)/mpl_toolkits/axes_grid1
mv $(CURDIR)/doc/index.rst $(CURDIR)/doc/source/
execute_after_dh_python3:
-chmod -x debian/python-mpltoolkits.basemap-data/usr/share/basemap/data/*
dh_numpy3
override_dh_sphinxdoc:
dh_sphinxdoc -i
execute_after_dh_clean:
rm -rf doc/build
rm -f nad2bin.o nad2bin
|