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
|
#!/usr/bin/make -f
# Enable hardening build flags
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
export PYBUILD_NAME=rasterio
export PYBUILD_BEFORE_TEST= cp -r {dir}/tests {build_dir}
export PYBUILD_AFTER_TEST=rm -rf {build_dir}/tests
export PYBUILD_TEST_PYTEST=1
%:
dh $@ --with python2,python3 --buildsystem pybuild --parallel
override_dh_clean:
dh_clean
$(RM) rasterio/*.c
$(RM) rasterio/_*.cpp
$(RM) VERSION.txt
$(RM) gdal-config.txt
$(RM) .coverage
override_dh_auto_test:
dh_auto_test || echo "Ignoring test failures"
override_dh_install:
dh_install
$(RM) -r debian/python3-rasterio/usr/bin
$(RM) -r debian/python-rasterio/usr/bin
$(RM) -r debian/*/usr/lib/python*/dist-packages/.hypothesis/
override_dh_python2:
dh_python2 -ppython-rasterio
dh_numpy -ppython-rasterio
override_dh_python3:
dh_python3 -ppython3-rasterio -prasterio
dh_numpy3 -ppython3-rasterio -prasterio
debian/rasterio.1:
help2man rasterio -N -L en_US.utf8 -n "command line tools for reading/writing geospatial raster data" >debian/rasterio.1
|