From a2144da08c8521262cd1c8e936705493afd650f4 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 3 Apr 2008 01:17:59 +0000 Subject: In cpv_expand(), if the virtuals file contains a versioned atom (like the base profile currently has for virtual/pam), properly remove the operator and version from the atom before it is passed into dbapi.cp_list(). svn path=/main/trunk/; revision=9683 --- pym/portage/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pym') diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index ef2d65f0c..a64e90c5c 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -5680,7 +5680,11 @@ def cpv_expand(mycpv, mydb=None, use_cache=1, settings=None): writemsg("virts[%s]: %s\n" % (str(mykey),virts[mykey]), 1) mykey_orig = mykey[:] for vkey in virts[mykey]: - if mydb.cp_list(vkey,use_cache=use_cache): + # The virtuals file can contain a versioned atom, so + # it may be necessary to remove the operator and + # version from the atom before it is passed into + # dbapi.cp_list(). + if mydb.cp_list(dep_getkey(vkey), use_cache=use_cache): mykey = vkey writemsg("virts chosen: %s\n" % (mykey), 1) break -- cgit v1.2.3-1-g7c22