From d749345233c833c5aecac1489276885a8845eeb5 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 20 Feb 2010 09:28:03 +0000 Subject: Move portage.cpv_getkey() to the portage.versions module. svn path=/main/trunk/; revision=15410 --- pym/portage/versions.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'pym/portage/versions.py') diff --git a/pym/portage/versions.py b/pym/portage/versions.py index 5ab3aaeb5..c8159741b 100644 --- a/pym/portage/versions.py +++ b/pym/portage/versions.py @@ -3,7 +3,14 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ +__all__ = [ + 'best', 'catpkgsplit', 'catsplit', + 'cpv_getkey', 'pkgcmp', 'pkgsplit', + 'ververify', 'vercmp' +] + import re +import warnings # \w is [a-zA-Z0-9_] @@ -309,6 +316,26 @@ def pkgsplit(mypkg, silent=1): else: return (cat + '/' + pn, ver, rev) +def cpv_getkey(mycpv): + """Calls catpkgsplit on a cpv and returns only the cp.""" + mysplit = catpkgsplit(mycpv) + if mysplit is not None: + return mysplit[0] + '/' + mysplit[1] + + warnings.warn("portage.versions.cpv_getkey() " + \ + "called with invalid cpv: '%s'" % (mycpv,), + DeprecationWarning, stacklevel=2) + + myslash = mycpv.split("/", 1) + mysplit = _pkgsplit(myslash[-1]) + if mysplit is None: + return None + mylen = len(myslash) + if mylen == 2: + return myslash[0] + "/" + mysplit[0] + else: + return mysplit[0] + def catsplit(mydep): return mydep.split("/", 1) -- cgit v1.2.3-1-g7c22