Codebase list cloudkitty-dashboard / b04e536
Bump debhelper from old 10 to 13. + Drop check for DEB_BUILD_OPTIONS containing "nocheck", since debhelper now does this. + Replace python_distutils buildsystem with pybuild. + debian/rules: Drop --fail-missing argument to dh_missing, which is now the default. Changes-By: lintian-brush Fixes: lintian: package-uses-old-debhelper-compat-version See-also: https://lintian.debian.org/tags/package-uses-old-debhelper-compat-version.html Debian Janitor 1 year, 7 months ago
3 changed file(s) with 14 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 cloudkitty-dashboard (15.0.0~rc1-3) UNRELEASED; urgency=medium
1
2 * Bump debhelper from old 10 to 13.
3 + Drop check for DEB_BUILD_OPTIONS containing "nocheck", since debhelper now
4 does this.
5 + Replace python_distutils buildsystem with pybuild.
6 + debian/rules: Drop --fail-missing argument to dh_missing, which is now the
7 default.
8
9 -- Debian Janitor <janitor@jelmer.uk> Sun, 25 Sep 2022 05:09:11 -0000
10
011 cloudkitty-dashboard (15.0.0~rc1-2) unstable; urgency=medium
112
213 * Uploading to unstable.
55 Thomas Goirand <zigo@debian.org>,
66 Michal Arbet <michal.arbet@ultimum.io>,
77 Build-Depends:
8 debhelper-compat (= 10),
8 debhelper-compat (= 13),
99 dh-python,
1010 openstack-pkg-tools,
1111 python3-all,
22 include /usr/share/openstack-pkg-tools/pkgos.make
33
44 %:
5 dh $@ --buildsystem=python_distutils --with python3
5 dh $@ --buildsystem=pybuild --with python3
66
77 override_dh_clean:
88 dh_clean
2727 cp $(CURDIR)/debian/tmp/usr/lib/python3/dist-packages/cloudkittydashboard/enabled/_[0-9]*.py $(CURDIR)/debian/tmp/usr/lib/python3/dist-packages/openstack_dashboard/local/enabled
2828
2929 dh_install
30 dh_missing --fail-missing
30 dh_missing
3131
3232 override_dh_auto_test:
33 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
3433 echo "No unit tests yet in this project."
3534 ## Delete __pycache__
3635 find . -name __pycache__ -prune -exec rm -rf {} +;
37 endif