#!/usr/bin/make -f

UPSTREAM_GIT := https://github.com/openstack/castellan.git
include /usr/share/openstack-pkg-tools/pkgos.make

%:
	dh $@ --buildsystem=python_distutils --with python3,sphinxdoc

override_dh_auto_install:
	pkgos-dh_auto_install --no-py2

	mkdir -p $(CURDIR)/debian/python3-castellan/etc/castellan
	PYTHONPATH=. oslo-config-generator --output-file $(CURDIR)/debian/python3-castellan/etc/castellan/castellan.conf \
		--wrap-width 140 \
		--namespace castellan.config

override_dh_auto_test:
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
	pkgos-dh_auto_test --no-py2 'castellan\.tests\.unit.*'
endif

override_dh_sphinxdoc:
	sphinx-build -b html doc/source debian/python-castellan-doc/usr/share/doc/python-castellan-doc/html
	dh_sphinxdoc -O--buildsystem=python_distutils

override_dh_clean:
	dh_clean -O--buildsystem=python_distutils
	rm -rf build
