tag 376416 + patch thanks Ok, it wasn't quite that simple. It seems dh_pycentral was being called after dh_installdeb, so the debhelper-generated maintainer scripts did not exist when dh_installdeb looked for them.
This patch runs the scripts in the correct order. -- Sam Morris http://robots.org.uk/ PGP key id 5EA01078 3412 EA18 1277 354B 991B C869 B219 7FDB 5EA0 1078
diff -ruN python-apt-0.6.18.1/debian/changelog python-apt-0.6.18.2/debian/changelog --- python-apt-0.6.18.1/debian/changelog 2006-07-11 22:34:44.000000000 +0100 +++ python-apt-0.6.18.2/debian/changelog 2006-07-11 22:52:56.000000000 +0100 @@ -1,3 +1,11 @@ +python-apt (0.6.18.2) unstable; urgency=low + + * Non-maintainer upload. + * Call dh_python and dh_pycentral before dh_installdeb so that the + debhelper-generated maintainer scripts are installed (closes: #376416) + + -- Sam Morris <[EMAIL PROTECTED]> Tue, 11 Jul 2006 22:49:30 +0100 + python-apt (0.6.18.1) unstable; urgency=low * Non-maintainer upload. diff -ruN python-apt-0.6.18.1/debian/rules python-apt-0.6.18.2/debian/rules --- python-apt-0.6.18.1/debian/rules 2006-06-17 14:21:32.000000000 +0100 +++ python-apt-0.6.18.2/debian/rules 2006-07-11 22:49:08.000000000 +0100 @@ -52,13 +52,13 @@ dh_installdocs dh_installchangelogs + dh_pycentral + dh_python dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps - dh_pycentral - dh_python dh_gencontrol dh_md5sums dh_builddeb

