Codebase list python-castellan / debian/3.0.2-1 debian / rules
debian/3.0.2-1

Tree @debian/3.0.2-1 (Download .tar.gz)

rules @debian/3.0.2-1

bc78e73
 
d111b2d
1cd2c72
bc78e73
 
c7ac572
 
 
 
 
 
 
bc78e73
 
eebca11
 
 
bc78e73
eebca11
 
1f4e603
 
 
bc78e73
eebca11
bc78e73
 
eebca11
 
 
bc78e73
c7ac572
daebe40
bc78e73
c7ac572
#!/usr/bin/make -f

UPSTREAM_GIT := https://opendev.org/openstack/castellan
include /usr/share/openstack-pkg-tools/pkgos.make

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

override_dh_auto_clean:
	rm -rf build

override_dh_auto_build:
	echo "Do nothing..."

override_dh_auto_install:
	for i in $(PYTHON3S) ; do \
		python3 setup.py install -f --install-layout=deb --root=$(CURDIR)/debian/tmp ; \
	done

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

ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
	PYTHONPATH=$(CURDIR)/debian/tmp/usr/lib/python3/dist-packages pkgos-dh_auto_test --no-py2 'castellan\.tests\.unit.*'
endif

override_dh_auto_test:
	echo "Do nothing..."

override_dh_sphinxdoc:
ifeq (,$(findstring nodoc, $(DEB_BUILD_OPTIONS)))
	PYTHONPATH=. python3 -m sphinx -b html doc/source debian/python-castellan-doc/usr/share/doc/python-castellan-doc/html
	dh_sphinxdoc -O--buildsystem=python_distutils
endif