From: Zac Medico Date: Sun, 18 Oct 2009 03:58:44 +0000 (-0000) Subject: Make cpv_getkey() use catpkgsplit() insead of a separate regex. (trunk r14628) X-Git-Tag: v2.1.7.2~36 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fa38149bce67c93e52701fbd8f2adca9d26db01c;p=portage.git Make cpv_getkey() use catpkgsplit() insead of a separate regex. (trunk r14628) svn path=/main/branches/2.1.7/; revision=14656 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 1b50b4cbb..ec6f5b96e 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -8306,12 +8306,11 @@ def dep_wordreduce(mydeplist,mysettings,mydbapi,mode,use_cache=1): return None return deplist -_cpv_key_re = re.compile('^' + versions._cpv + '$', re.VERBOSE) def cpv_getkey(mycpv): """Calls pkgsplit on a cpv and returns only the cp.""" - m = _cpv_key_re.match(mycpv) - if m is not None: - return m.group(2) + mysplit = versions.catpkgsplit(mycpv) + if mysplit is not None: + return mysplit[0] + '/' + mysplit[1] warnings.warn("portage.cpv_getkey() called with invalid cpv: '%s'" \ % (mycpv,), DeprecationWarning)