svn path=/main/trunk/; revision=4747
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
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):