From: Zac Medico Date: Wed, 18 Oct 2006 08:10:46 +0000 (-0000) Subject: Remove the unused system slot from DepPriority. X-Git-Tag: v2.1.2~606 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f02b2de300bb1654cc46c039bd175596017a9cae;p=portage.git Remove the unused system slot from DepPriority. svn path=/main/trunk/; revision=4747 --- diff --git a/bin/emerge b/bin/emerge index 9d4bc33a5..ea4162d6c 100755 --- a/bin/emerge +++ b/bin/emerge @@ -655,7 +655,7 @@ class DepPriority(object): SOFT The upper boundary for soft dependencies. MIN The lower boundary for soft dependencies. """ - __slots__ = ["satisfied", "buildtime", "runtime", "system"] + __slots__ = ["satisfied", "buildtime", "runtime"] MEDIUM = -1 SOFT = -2 MIN = -4 @@ -673,9 +673,7 @@ class DepPriority(object): return -2 if self.runtime: return -3 - if self.system: - return -4 - return -5 + return -4 def __lt__(self, other): return int(self) < other def __le__(self, other):