#!/usr/bin/make -f export PYBUILD_NAME=paramiko %: dh $@ --with python2,python3 --buildsystem=pybuild override_dh_installdocs: ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS))) sphinx-build sites/docs html endif dh_installdocs override_dh_auto_test: ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) set -e ; for python in $$(pyversions -s) $$(py3versions -s); do \ $$python test.py --verbose ; \ done endif