mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-24 03:41:12 +00:00
Only issue "From wrong source" for binaries not at the same version in testing
Same-version could happen for merged binaries in partial-unstable mode.
This commit is contained in:
parent
b144470940
commit
8fb3c782aa
@ -1222,9 +1222,10 @@ class Britney(object):
|
||||
# if the new binary package is not from the same source as the testing one, then skip it
|
||||
# this implies that this binary migration is part of a source migration
|
||||
if source_u.version == pkgsv and source_t.version != pkgsv:
|
||||
anywrongver = True
|
||||
excuse.addhtml("From wrong source: %s %s (%s not %s)" % (pkg_name, binary_u.version, pkgsv, source_t.version))
|
||||
continue
|
||||
if binary_t is None or binary_t.version != binary_u.version:
|
||||
anywrongver = True
|
||||
excuse.addhtml("From wrong source: %s %s (%s not %s)" % (pkg_name, binary_u.version, pkgsv, source_t.version))
|
||||
continue
|
||||
|
||||
# cruft in unstable
|
||||
if source_u.version != pkgsv and source_t.version != pkgsv:
|
||||
|
Loading…
x
Reference in New Issue
Block a user