From: Zac Medico Date: Mon, 3 Aug 2009 22:27:31 +0000 (-0000) Subject: Make the USE=test RDEPEND check (bug #236786) also apply to PDEPEND. X-Git-Tag: v2.2_rc34~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5e0b4c49966d2829e0d585ef3dd1303f346a6f01;p=portage.git Make the USE=test RDEPEND check (bug #236786) also apply to PDEPEND. svn path=/main/trunk/; revision=13882 --- diff --git a/bin/repoman b/bin/repoman index 97f24ccd2..6569cc364 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1411,10 +1411,11 @@ for x in scanlist: for token in mydepstr.split(): if token in operator_tokens or \ token[-1:] == "?": - if token == "test?" and mytype == "RDEPEND": - stats['RDEPEND.suspect'] += 1 - fails['RDEPEND.suspect'].append(relative_path + \ - ": 'test?' USE conditional in RDEPEND") + if token == "test?" and \ + mytype in ("RDEPEND", "PDEPEND"): + stats[mytype + '.suspect'] += 1 + fails[mytype + '.suspect'].append(relative_path + \ + ": 'test?' USE conditional in %s" % mytype) continue try: atom = portage.dep.Atom(token)