syncpackage: Don't fakesync when we have a new orig tarball (LP: #707187)

This commit is contained in:
Stefano Rivera 2011-01-25 09:41:59 +02:00
parent eff2b11d81
commit 19f4f57c8c
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@ -3,6 +3,7 @@ ubuntu-dev-tools (0.114) UNRELEASED; urgency=low
[ Stefano Rivera ]
* ubuntutools.archive: Handle source package in workdir correctly.
Add regression tests. (LP: #706403)
* syncpackage: Don't fakesync when we have a new orig tarball (LP: #707187)
[ Dustin Kirkland ]
* debian/control, debian/copyright, doc/errno.1, errno, setup.py:

View File

@ -141,7 +141,7 @@ def sync_dsc(src_pkg, debian_dist, release, name, email, bugs, ubuntu_mirror,
src_pkg.pull()
src_pkg.unpack()
fakesync = not ubu_pkg.verify_orig()
fakesync = not (need_orig or ubu_pkg.verify_orig())
if fakesync:
Logger.warn('The checksums of the Debian and Ubuntu packages mismatch. '