#!/usr/bin/make -f
#export DH_VERBOSE=1

%:
	dh $@ --with python2,python3

override_dh_auto_build:
	for py in $(shell pyversions -vr) $(shell py3versions -vr); do \
		python$$py setup.py build --build-base=build$$py; \
	done

override_dh_auto_test:
	for py in $(shell pyversions -vr) ; do \
		nosetests-$$py -d build$$py; \
	done
	for py in $(shell py3versions -vr) ; do \
		nosetests3 -d build$$py; \
	done

override_dh_installchangelogs:
	dh_installchangelogs CHANGES

override_dh_auto_install:
	python setup.py install --no-compile -O0 --install-layout=deb \
		--root $(CURDIR)/debian/python-funcparserlib && \
	python3 setup.py install --no-compile -O0 --install-layout=deb \
		--root $(CURDIR)/debian/python3-funcparserlib

override_dh_auto_clean:
	dh_clean
	for py in $(shell pyversions -vr) $(shell py3versions -vr); do \
		python$$py setup.py clean --build-temp=build && \
		python$$py setup.py clean --build-temp=build$$py; \
	done
	find $(CURDIR) -name "*.pyc" -delete
