From: Zac Medico Date: Thu, 1 May 2008 05:43:32 +0000 (-0000) Subject: Sort blockers when caching them. (trunk r10054) X-Git-Tag: v2.1.5~109 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4ec97ae4f9bcc83a7ecc3a82a7df8917fae6c501;p=portage.git Sort blockers when caching them. (trunk r10054) svn path=/main/branches/2.1.2/; revision=10055 --- diff --git a/bin/emerge b/bin/emerge index d3096f119..d25f2e605 100755 --- a/bin/emerge +++ b/bin/emerge @@ -3381,6 +3381,7 @@ class depgraph(object): return False blocker_atoms = [myatom for myatom in atoms \ if myatom.startswith("!")] + blocker_atoms.sort() counter = long(vardb.aux_get(pkg, ["COUNTER"])[0]) blocker_cache[pkg] = \ blocker_cache.BlockerData(counter, blocker_atoms)