1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
include /usr/share/openstack-pkg-tools/pkgos.make
export OSLO_PACKAGE_VERSION=$(VERSION)
%:
dh $@ --with python2
override_dh_auto_configure:
echo $(VERSION) > heatclient/versioninfo
dh_auto_configure
override_dh_auto_clean:
dh_auto_clean
rm -f heatclient/versioninfo
rm -rf .testrepository
override_dh_install:
dh_install
rm -rf $(CURDIR)/debian/python-heatclient/usr/heatclient
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
rm -rf .testrepository
testr init
set -e && \
TEMP_REZ=`mktemp -t` && \
PYTHONPATH=$(CURDIR) testr run --subunit | tee $$TEMP_REZ | subunit2pyunit && \
cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats && \
rm -f $$TEMP_REZ ;
testr slowest
endif
override_dh_gencontrol:
if [ `lsb_release -a | grep Release | awk '{print $$2}'` = "7.0" ] ; then \
dh_gencontrol -- -T$(CURDIR)/debian/wheezy_deps ; \
else \
dh_gencontrol ; \
fi
|