From: Zac Medico Date: Thu, 3 Apr 2008 01:17:59 +0000 (-0000) Subject: In cpv_expand(), if the virtuals file contains a versioned atom (like X-Git-Tag: v2.2_pre6~268 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a2144da08c8521262cd1c8e936705493afd650f4;p=portage.git 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 --- 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