From a630e065339abdd76038da568000773bc56f1c97 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 8 Jul 2011 09:16:39 -0700 Subject: getportageversion: omit implicit -r0 for libc --- pym/_emerge/actions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pym') diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index 860192901..e57fd9345 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2823,7 +2823,10 @@ def getportageversion(portdir, target_root, profile, chost, vardb): libclist.update(vardb.match(atom)) if libclist: for cpv in sorted(libclist): - libcver.append("-".join(portage.catpkgsplit(cpv)[1:])) + libc_split = portage.catpkgsplit(cpv)[1:] + if libc_split[-1] == "r0": + libc_split[:-1] + libcver.append("-".join(libc_split)) else: libcver = ["unavailable"] -- cgit v1.2.3-1-g7c22