Remove the unused system slot from DepPriority.
authorZac Medico <zmedico@gentoo.org>
Wed, 18 Oct 2006 08:10:46 +0000 (08:10 -0000)
committerZac Medico <zmedico@gentoo.org>
Wed, 18 Oct 2006 08:10:46 +0000 (08:10 -0000)
svn path=/main/trunk/; revision=4747

bin/emerge

index 9d4bc33a574010c4a2f5aa526dca42e1192888e3..ea4162d6ca788203a9c0ee818adbb6265c15d98b 100755 (executable)
@@ -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):