summaryrefslogtreecommitdiffstats
path: root/pym/portage/versions.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/versions.py')
-rw-r--r--pym/portage/versions.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/pym/portage/versions.py b/pym/portage/versions.py
index a4765ef1c..89ab6e180 100644
--- a/pym/portage/versions.py
+++ b/pym/portage/versions.py
@@ -335,6 +335,11 @@ def cpv_getkey(mycpv):
else:
return mysplit[0]
+def cpv_getversion(mycpv):
+ """Returns the v (including revision) from an cpv."""
+ cp = cpv_getkey(mycpv)
+ return mycpv[len(cp+"-"):]
+
def catsplit(mydep):
return mydep.split("/", 1)