diff --git a/debian/changelog b/debian/changelog index df482a2731c4fcff9a9a53b675cbca33e4c980f7..7dc2082a0db3508fe7ce78f99178cfb020b4da09 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -python-defaults (2.6.5-13) UNRELEASED; urgency=low +python-defaults (2.6.5-13) unstable; urgency=low [ Scott Kitterman ] * Python policy changes for X-Python-Version and X-Python3-Version @@ -8,9 +8,12 @@ python-defaults (2.6.5-13) UNRELEASED; urgency=low [ Piotr Ożarowski ] * Fix documentation typo in pycompile/pycompile.1 - * dh_python2: Add support for X-Python-Version + * dh_python2: + - pass shallow=False to cmpfiles to make sure only exactly the same files + are moved to pyshared + - add support for X-Python-Version - -- Scott Kitterman <scott@kitterman.com> Tue, 10 Aug 2010 22:27:20 -0400 + -- Piotr Ożarowski <piotr@debian.org> Fri, 13 Aug 2010 22:39:37 +0200 python-defaults (2.6.5-12) unstable; urgency=low diff --git a/dh_python2 b/dh_python2 index 2187fbe1dd5e3f2d87c76b6961b81972e437e946..faa9e5db863c6b3a521886ec55554bd33c85a4f1 100755 --- a/dh_python2 +++ b/dh_python2 @@ -224,7 +224,7 @@ def share_2x(dir1, dir2, dc=None): common_dirs = dc.subdirs.iteritems() common_files = dc.common_files # dircmp returns common names only, lets check files more carefully... - common_files = cmpfiles(dir1, dir2, common_files)[0] + common_files = cmpfiles(dir1, dir2, common_files, shallow=False)[0] for fn in common_files: fpath1 = join(dir1, fn)