From: Zac Medico Date: Fri, 19 Feb 2010 10:06:40 +0000 (-0000) Subject: Fix deprecated usage of dep_getkey. X-Git-Tag: v2.2_rc63~20 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=66af3f95142b71423fcb185d452ff7ded2d9d060;p=portage.git Fix deprecated usage of dep_getkey. svn path=/main/trunk/; revision=15382 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 8a749dc5a..e15d9afe4 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -2626,7 +2626,7 @@ class config(object): has_changed = False self.mycpv = mycpv cat, pf = catsplit(mycpv) - cp = dep_getkey(mycpv) + cp = cpv_getkey(mycpv) cpv_slot = self.mycpv pkginternaluse = "" iuse = "" @@ -3071,7 +3071,7 @@ class config(object): @return: A list of licenses that have not been accepted. """ accept_license = self._accept_license - cpdict = self._plicensedict.get(dep_getkey(cpv), None) + cpdict = self._plicensedict.get(cpv_getkey(cpv), None) if cpdict: accept_license = list(self._accept_license) cpv_slot = "%s:%s" % (cpv, metadata["SLOT"]) @@ -3150,7 +3150,7 @@ class config(object): @return: A list of properties that have not been accepted. """ accept_properties = self._accept_properties - cpdict = self._ppropertiesdict.get(dep_getkey(cpv), None) + cpdict = self._ppropertiesdict.get(cpv_getkey(cpv), None) if cpdict: accept_properties = list(self._accept_properties) cpv_slot = "%s:%s" % (cpv, metadata["SLOT"])