e6df3bf7cce68f1d5e0d3d1df84a15f3b8eb01cc
[openstack-build/ceilometer-build.git] / trusty / debian / rules
1 #!/usr/bin/make -f
2
3 #export DH_VERBOSE=1
4
5 include /usr/share/openstack-pkg-tools/pkgos.make
6
7 export OSLO_PACKAGE_VERSION=$(VERSION)
8
9 %:
10         dh $@  --with python2
11
12 override_dh_clean:
13         dh_clean
14         rm -rf .testrepository
15         rm -rf ceilometer.egg-info
16         rm -f debian/ceilometer-common.config debian/ceilometer-common.postinst debian/ceilometer-api.config debian/ceilometer-api.postinst
17
18 override_dh_install:
19         dh_install
20         install -D -m 0644 $(CURDIR)/etc/ceilometer/ceilometer.conf.sample      $(CURDIR)/debian/ceilometer-common/usr/share/ceilometer-common/ceilometer.conf
21
22 override_dh_auto_build:
23         dh_auto_build
24         /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.config
25         /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.postinst
26         /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-api.config
27         /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-api.postinst
28
29 override_dh_auto_clean:
30         dh_auto_clean
31         rm -rf debian/*.upstart
32         rm -rf debian/ceilometer-common.postinst
33         find . -iname '*.pyc' -delete
34
35 override_dh_auto_test:
36 ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
37         rm -rf .testrepository
38         testr init
39         set -e && \
40                 TEMP_REZ=`mktemp -t` && \
41                 bash -x ./setup-test-env.sh testr run --subunit 'tests\.(?!.*test_bin.*)' | tee $$TEMP_REZ | subunit2pyunit || true ; \
42                 cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats || true ; \
43                 rm -f $$TEMP_REZ ;
44         testr slowest
45 endif