From: Zac Medico Date: Wed, 28 May 2008 22:06:45 +0000 (-0000) Subject: Update the fix from bug #220341 to protect USE deps from being neglected. X-Git-Tag: v2.2_pre8~82 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8eb863f2b33e0ad583a4046f049fcc9151a952b6;p=portage.git Update the fix from bug #220341 to protect USE deps from being neglected. svn path=/main/trunk/; revision=10467 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 61141d675..9dcc16414 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -3067,12 +3067,21 @@ class depgraph(object): # the newly built package still won't have the expected slot. # Therefore, assume that such SLOT dependencies are already # satisfied rather than forcing a rebuild. - if installed and not cpv_list and matched_packages \ - and portage.dep.dep_getslot(atom): + if installed and not cpv_list and \ + matched_packages and atom.slot: for pkg in matched_packages: - if vardb.cpv_exists(pkg.cpv): + if not vardb.cpv_exists(pkg.cpv): + continue + # Remove the slot from the atom and verify that + # the package matches the resulting atom. + atom_without_slot = portage.dep.remove_slot(atom) + if atom.use: + atom_without_slot += str(atom.use) + atom_without_slot = portage.dep.Atom(atom_without_slot) + if portage.match_from_list( + atom_without_slot, [pkg]): cpv_list = [pkg.cpv] - break + break if not cpv_list: continue