From be28f670a513669a75f93c9d8f22a1a40a2640f3 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Sat, 22 Oct 2011 19:41:51 +0000 Subject: [PATCH] Don't consider intra-source dependencies for smooth updates Signed-off-by: Adam D. Barratt --- britney.py | 1 + 1 file changed, 1 insertion(+) diff --git a/britney.py b/britney.py index de1d979..ddc4e92 100755 --- a/britney.py +++ b/britney.py @@ -1805,6 +1805,7 @@ class Britney: # if a smooth update is possible for the package, skip it if not self.options.compatible and item.suite == 'unstable' and \ binary not in self.binaries[item.suite][parch][0] and \ + len([x for x in rdeps if x not in [y.split("/")[0] for y in source[BINARIES]]]) > 0 and \ ('ALL' in self.options.smooth_updates or \ binaries[parch][0][binary][SECTION] in self.options.smooth_updates): continue