From: Zac Medico Date: Tue, 31 Jul 2007 01:22:11 +0000 (-0000) Subject: Change the numeric value of DepPriority.MIN to be equal to that of a satisfied PDEPEN... X-Git-Tag: v2.1.2.11~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=065ac84eddfa8ef28e2f9811ba366590710d0c1a;p=portage.git Change the numeric value of DepPriority.MIN to be equal to that of a satisfied PDEPEND since there is currently nothing with lower priority. (branches/2.1.2 r7529) svn path=/main/branches/2.1.2.9/; revision=7530 --- diff --git a/bin/emerge b/bin/emerge index 8b8b8ffc8..7433af9fb 100755 --- a/bin/emerge +++ b/bin/emerge @@ -632,7 +632,7 @@ class DepPriority(object): MEDIUM = -1 MEDIUM_SOFT = -2 SOFT = -3 - MIN = -6 + MIN = -5 def __init__(self, **kwargs): for myattr in self.__slots__: if myattr == "__weakref__": @@ -653,7 +653,7 @@ class DepPriority(object): return -4 if self.runtime_post: return -5 - return -6 + return -5 def __lt__(self, other): return self.__int__() < other def __le__(self, other):