From b1d8132048043baea61fce350169bd341e31b356 Mon Sep 17 00:00:00 2001 From: Faik Uygur Date: Thu, 3 Dec 2009 14:32:10 +0000 Subject: [PATCH] The calculated dependencies were not considered for rev_dep checks. This was an old bug. This should fix the bug but careful testing needed. BUG:COMMENT:11406 --- pisi/operations/upgrade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/operations/upgrade.py b/pisi/operations/upgrade.py index ca2bb676..4ff859e9 100644 --- a/pisi/operations/upgrade.py +++ b/pisi/operations/upgrade.py @@ -207,7 +207,7 @@ def plan_upgrade(A): B = Bp # now, search reverse dependencies to see if anything # should be upgraded - B = A + B = filter(lambda x:installdb.has_package(x), G_f.vertices()) while len(B) > 0: Bp = set() for x in B: