From: Zac Medico Date: Tue, 24 Aug 2010 13:09:41 +0000 (-0700) Subject: Use Package.iuse.is_valid_flag() to account for implicit IUSE. X-Git-Tag: v2.2_rc69~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7df2a7c22eb0b3a65e4e597e8b37d1ae5abe91e7;p=portage.git Use Package.iuse.is_valid_flag() to account for implicit IUSE. --- diff --git a/bin/repoman b/bin/repoman index 039a995ab..b497e107f 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1624,7 +1624,7 @@ for x in scanlist: try: atoms = portage.dep.use_reduce(mydepstr, matchall=1, flat=True, \ - is_valid_flag=lambda x: x in myiuse, token_class=token_class) + is_valid_flag=pkg.iuse.is_valid_flag, token_class=token_class) except portage.exception.InvalidDependString as e: atoms = None badsyntax.append(str(e))