Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Dear release team, The package in Sid/Jessie missed the /usr/lib/python* folder, rendering the package unusable. My last upload fixes it (I checked, and I could run "cfn-init" without python module import error...). Debdiff attached. Please unblock heat-cfntools/1.2.7-2 Cheers, Thomas Goirand (zigo)
diff -Nru heat-cfntools-1.2.7/debian/changelog heat-cfntools-1.2.7/debian/changelog --- heat-cfntools-1.2.7/debian/changelog 2014-04-19 10:59:32.000000000 +0000 +++ heat-cfntools-1.2.7/debian/changelog 2014-12-02 15:57:36.000000000 +0000 @@ -1,3 +1,9 @@ +heat-cfntools (1.2.7-2) unstable; urgency=medium + + * Added missing /usr/lib/python* in the package (Closes: #771809). + + -- Thomas Goirand <z...@debian.org> Tue, 02 Dec 2014 23:41:46 +0800 + heat-cfntools (1.2.7-1) unstable; urgency=medium * New upstream release. diff -Nru heat-cfntools-1.2.7/debian/rules heat-cfntools-1.2.7/debian/rules --- heat-cfntools-1.2.7/debian/rules 2014-04-19 10:59:32.000000000 +0000 +++ heat-cfntools-1.2.7/debian/rules 2014-12-02 15:57:36.000000000 +0000 @@ -1,11 +1,19 @@ #!/usr/bin/make -f + +PYTHONS:=$(shell pyversions -vr) + include /usr/share/openstack-pkg-tools/pkgos.make +export OSLO_PACKAGE_VERSION=$(VERSION) %: dh $@ --with python2 override_dh_auto_install: + set -e && for pyvers in $(PYTHONS); do \ + python$$pyvers setup.py install --install-layout=deb \ + --root $(CURDIR)/debian/heat-cfntools; \ + done override_dh_auto_build: