#!/usr/bin/make -f export DH_VERBOSE=1 export PYTHON_EGG_CACHE=$(CURDIR)/debian/tmp export DEB_BUILD_MAINT_OPTIONS = hardening=+all export SYSTEM_SASS = 1 %: .libsass-upstream-version dh $@ --buildsystem=pybuild .libsass-upstream-version: dpkg-query -f '$${Version}\n' -W libsass-dev|sed 's/-.*//' > .libsass-upstream-version override_dh_auto_build: pybuild --build -p "$(shell py3versions -vr)" ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS))) # build doc once pybuild -s custom --build -p $(shell py3versions -vd) \ --build-args="env PYTHONPATH={build_dir} python3 -m sphinx -N -bman docs/ build/man" endif execute_after_dh_auto_install: mkdir -p $(CURDIR)/debian/tmp/usr/share/man/man1 mkdir -p $(CURDIR)/debian/tmp/usr/share/man/man3 ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS))) cp $(CURDIR)/build/man/pysassc.1 $(CURDIR)/debian/tmp/usr/share/man/man1/ cp $(CURDIR)/build/man/libsass.3 $(CURDIR)/debian/tmp/usr/share/man/man3/ else touch $(CURDIR)/debian/tmp/usr/share/man/man1/pysassc.1 touch $(CURDIR)/debian/tmp/usr/share/man/man3/libsass.3 endif rm $(CURDIR)/debian/tmp/usr/lib/python*/dist-packages/sasstests.py sed -i '1c#!/usr/bin/python3' $(CURDIR)/debian/tmp/usr/bin/pysassc override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) # Skip DistutilsTestCase.* to not rebuild sass again pybuild -s custom --test -p "$(shell py3versions -vr)" \ --test-args="cd {build_dir}; \ {interpreter} -m pytest -k 'not DistutilsTestCase' sasstests.py" endif