From 5e0b4c49966d2829e0d585ef3dd1303f346a6f01 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 3 Aug 2009 22:27:31 +0000 Subject: Make the USE=test RDEPEND check (bug #236786) also apply to PDEPEND. svn path=/main/trunk/; revision=13882 --- bin/repoman | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'bin') 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) -- cgit v1.2.3-1-g7c22