summaryrefslogtreecommitdiff
path: root/portato/backend/portage/system.py
diff options
context:
space:
mode:
authornecoro <>2007-05-31 19:45:22 +0000
committernecoro <>2007-05-31 19:45:22 +0000
commit860f59e2a4a7a8daeb9683d6938986afc694cf6d (patch)
treee8e9a0493ee6a7e2aff5c7f9a1c59fb73429d7e2 /portato/backend/portage/system.py
parentdb7e4fb5c77cff77617d28206722c9b7a72aaa04 (diff)
downloadportato-860f59e2a4a7a8daeb9683d6938986afc694cf6d.tar.gz
portato-860f59e2a4a7a8daeb9683d6938986afc694cf6d.tar.bz2
portato-860f59e2a4a7a8daeb9683d6938986afc694cf6d.zip
Some interface changes
Made qt-frontend work mostly with PyQt-4.2
Diffstat (limited to '')
-rw-r--r--portato/backend/portage/system.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/portato/backend/portage/system.py b/portato/backend/portage/system.py
index 27099cc..ddc4a8e 100644
--- a/portato/backend/portage/system.py
+++ b/portato/backend/portage/system.py
@@ -79,6 +79,12 @@ class PortageSystem (SystemInterface):
return opts
+ def cpv_matches (self, cpv, criterion):
+ if portage.match_from_list(criterion, [self.get_cpv()]) == []:
+ return False
+ else:
+ return True
+
def find_lambda (self, name):
"""Returns the function needed by all the find_all_*-functions. Returns None if no name is given.