![Alexei Sheplyakov](/assets/img/avatar_default.png)
Necessary for making an Ubuntu/Debian bootstrap node. blueprint fuel-bootstrap-on-ubuntu Change-Id: Ifc799a77eb2b32e5582e13a5aa4ff1d6bfbd8f77
44 lines
1.4 KiB
Makefile
Executable File
44 lines
1.4 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
PYTHONS:=$(shell pyversions -vr)
|
|
PYTHON3S:=$(shell py3versions -vr)
|
|
|
|
UPSTREAM_GIT = git://github.com/thomasgoirand/fuel-agent.git
|
|
include /usr/share/openstack-pkg-tools/pkgos.make
|
|
|
|
export OSLO_PACKAGE_VERSION=$(VERSION)
|
|
|
|
%:
|
|
dh $@ --buildsystem=python_distutils --with python2,systemd
|
|
|
|
override_dh_clean:
|
|
rm -rf build
|
|
dh_clean -O--buildsystem=python_distutils
|
|
|
|
|
|
# set -e && for i in $(PYTHONS) $(PYTHON3S) ; do \
|
|
|
|
override_dh_auto_test:
|
|
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
|
|
echo "===> Running tests"
|
|
set -e ; for i in 2.7 ; do \
|
|
PYMAJOR=$${i%%.*}; \
|
|
echo "===> Testing with python$$i (python$$PYMAJOR)" ; \
|
|
rm -rf .testrepository ; \
|
|
testr init ; \
|
|
TEMP_REZ=`mktemp -t` ; \
|
|
PYTHONPATH=$(CURDIR) PYTHON=python$$i testr run --subunit 'tests\.(?!.*OptsTestCase.test_entry_point.*)' | tee $$TEMP_REZ | subunit2pyunit ; \
|
|
cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats ; \
|
|
rm -f $$TEMP_REZ ; \
|
|
testr slowest ; \
|
|
done
|
|
endif
|
|
|
|
override_dh_installcatalogs:
|
|
override_dh_installemacsen override_dh_installifupdown:
|
|
override_dh_installinfo override_dh_installmenu override_dh_installmime:
|
|
override_dh_installmodules override_dh_installlogcheck:
|
|
override_dh_installpam override_dh_installppp override_dh_installudev override_dh_installwm:
|
|
override_dh_installxfonts override_dh_gconf override_dh_icons override_dh_perl override_dh_usrlocal:
|
|
override_dh_installgsettings:
|