summaryrefslogtreecommitdiffstats
path: root/pym/portage/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/__init__.py')
-rw-r--r--pym/portage/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index b3e44002a..c842f27e3 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -2082,7 +2082,7 @@ class config(object):
cpv=catpkgsplit(x)
if not x:
continue
- mycatpkg=dep_getkey(x)
+ mycatpkg = cpv_getkey(x)
if mycatpkg in self.pprovideddict:
self.pprovideddict[mycatpkg].append(x)
else:
@@ -2866,7 +2866,7 @@ class config(object):
return None
def _getKeywords(self, cpv, metadata):
- cp = dep_getkey(cpv)
+ cp = cpv_getkey(cpv)
pkg = "%s:%s" % (cpv, metadata["SLOT"])
keywords = [[x for x in metadata["KEYWORDS"].split() if x != "-*"]]
pos = len(keywords)
@@ -2909,7 +2909,7 @@ class config(object):
# Repoman may modify this attribute as necessary.
pgroups = self["ACCEPT_KEYWORDS"].split()
match=0
- cp = dep_getkey(cpv)
+ cp = cpv_getkey(cpv)
pkgdict = self.pkeywordsdict.get(cp)
matches = False
if pkgdict: