#!/usr/bin/make -f
UPSTREAM_GIT := https://github.com/termcolor/termcolor
include /usr/share/openstack-pkg-tools/pkgos.make
export SETUPTOOLS_SCM_PRETEND_VERSION=$(shell dpkg-parsechangelog -SVersion | sed -e 's/^[[:digit:]]*://' -e 's/[-].*//' -e 's/~/.0/' -e 's/+dfsg1//' | head -n 1)
export PYBUILD_NAME=termcolor
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_clean:
rm -rf build .stestr *.egg-info .pybuild
find . -iname '*.pyc' -delete
for i in $$(find . -type d -iname __pycache__) ; do rm -rf $$i ; done
|