From: Zac Medico Date: Fri, 12 Mar 2010 20:52:58 +0000 (-0000) Subject: Simplyfy the virtual.exists check, and avoid deprecation warning triggered X-Git-Tag: v2.2_rc68~717 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6b035d05c64fd8a74d96484118bbe3e8006fa06c;p=portage.git Simplyfy the virtual.exists check, and avoid deprecation warning triggered by cpv_getkey called on an empty string. svn path=/main/trunk/; revision=15822 --- diff --git a/bin/repoman b/bin/repoman index f9fdc7408..a6ae9a08f 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1419,9 +1419,7 @@ for x in scanlist: if prov_cp != myprovide: stats["virtual.versioned"]+=1 fails["virtual.versioned"].append(x+"/"+y+".ebuild: "+myprovide) - prov_pkg = portage.cpv_getkey( - portage.best(portdb.xmatch("match-all", prov_cp))) - if prov_cp == prov_pkg: + if portdb.cp_list(prov_cp): stats["virtual.exists"]+=1 fails["virtual.exists"].append(x+"/"+y+".ebuild: "+prov_cp)