From a54998f99c9bc5830eba7de9a76fac10f99721f0 Mon Sep 17 00:00:00 2001 From: necoro <> Date: Wed, 4 Apr 2007 17:35:05 +0000 Subject: showed masked packages unmasked by the user similar to stable marked testing packages --- portato/backend/package.py | 4 +++- portato/backend/portage/package.py | 33 +++++++++++++++++++++++---------- portato/backend/portage/system.py | 2 +- 3 files changed, 27 insertions(+), 12 deletions(-) (limited to 'portato/backend') diff --git a/portato/backend/package.py b/portato/backend/package.py index 0039fc0..70773cc 100644 --- a/portato/backend/package.py +++ b/portato/backend/package.py @@ -260,9 +260,11 @@ class Package: raise NotImplementedError - def is_masked (self): + def is_masked (self, use_changed = True): """Returns True if either masked by package.mask or by profile. + @param use_changed: Controls, whether changes applied to masking keywords are taken into account. + @type use_changed: boolean @returns: True if masked / False otherwise @rtype: boolean""" diff --git a/portato/backend/portage/package.py b/portato/backend/portage/package.py index ed90db0..b455530 100644 --- a/portato/backend/portage/package.py +++ b/portato/backend/portage/package.py @@ -74,16 +74,29 @@ class PortagePackage (Package): else: return status - def is_masked (self): - status = flags.new_masking_status(self.get_cpv()) - if status != None: # we have locally changed it - if status == "masked": return True - elif status == "unmasked": return False - else: - debug("BUG in flags.new_masking_status. It returns",status) - else: # we have not touched the status - if self._status and ("profile" in self._status or "package.mask" in self._status): - return True + def is_masked (self, use_changed = True): + + if use_changed: + status = flags.new_masking_status(self.get_cpv()) + if status != None: # we have locally changed it + if status == "masked": return True + elif status == "unmasked": return False + else: + debug("BUG in flags.new_masking_status. It returns",status) + else: # we have not touched the status + if self._status and ("profile" in self._status or "package.mask" in self._status): + return True + return False + else: + try: + masked = self._settings.settings.pmaskdict[self.get_cp()] + except KeyError: # key error: not masked + return False + + for cpv in masked: + if self.matches(cpv): + return True + return False def get_all_use_flags (self, installed = False): diff --git a/portato/backend/portage/system.py b/portato/backend/portage/system.py index 9cda5ab..3e0c539 100644 --- a/portato/backend/portage/system.py +++ b/portato/backend/portage/system.py @@ -207,7 +207,7 @@ class PortageSystem (SystemInterface): t2 = unique_array(t2) return self.geneticize_list(t2) else: - return t; + return t def find_all_world_packages (self, name = None): world = filter(self.find_lambda(name), [x.get_cpv() for x in self.find_world_packages()[0]]) -- cgit v1.2.3-54-g00ecf