diff -Nru debconf-1.5.36ubuntu1/debian/changelog debconf-1.5.36ubuntu2/debian/changelog --- debconf-1.5.36ubuntu1/debian/changelog 2010-11-24 15:25:10.000000000 +0000 +++ debconf-1.5.36ubuntu2/debian/changelog 2010-12-03 00:04:07.000000000 +0000 @@ -1,3 +1,9 @@ +debconf (1.5.36ubuntu2) natty; urgency=low + + * Support Python 2.7. + + -- Colin Watson Fri, 03 Dec 2010 00:04:06 +0000 + debconf (1.5.36ubuntu1) natty; urgency=low * Resynchronise with Debian. Remaining changes: diff -Nru debconf-1.5.36ubuntu1/debian/control debconf-1.5.36ubuntu2/debian/control --- debconf-1.5.36ubuntu1/debian/control 2010-11-24 15:22:33.000000000 +0000 +++ debconf-1.5.36ubuntu2/debian/control 2010-12-03 00:02:32.000000000 +0000 @@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 7.0.50~), po-debconf, po4a (>= 0.23) XS-Debian-Vcs-Svn: svn://svn.debian.org/debconf/trunk/src/debconf Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-core-dev/debconf/ubuntu -XS-Python-Version: 2.6, 3.1 +XS-Python-Version: 2.6, 2.7, 3.1 Package: debconf Priority: important diff -Nru debconf-1.5.36ubuntu1/Makefile debconf-1.5.36ubuntu2/Makefile --- debconf-1.5.36ubuntu1/Makefile 2010-11-24 15:22:33.000000000 +0000 +++ debconf-1.5.36ubuntu2/Makefile 2010-12-03 00:02:26.000000000 +0000 @@ -50,11 +50,13 @@ xargs -i install -d $(prefix)/usr/share/perl5/{} install -d \ $(prefix)/usr/lib/python2.6/dist-packages/ \ + $(prefix)/usr/lib/python2.7/dist-packages/ \ $(prefix)/usr/lib/python3/dist-packages/ # Install modules. find Debconf -type f -name '*.pm' |grep -v CVS | \ xargs -i install -m 0644 {} $(prefix)/usr/share/perl5/{} install -m 0644 debconf.py $(prefix)/usr/lib/python2.6/dist-packages/ + install -m 0644 debconf.py $(prefix)/usr/lib/python2.7/dist-packages/ install -m 0644 debconf3.py $(prefix)/usr/lib/python3/dist-packages/debconf.py # Special case for back-compatability. install -d $(prefix)/usr/share/perl5/Debian/DebConf/Client