summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-05-14 18:05:19 +0000
committerZac Medico <zmedico@gentoo.org>2008-05-14 18:05:19 +0000
commitb46df1e7f51627b22709c3aa89ef6741d2d233af (patch)
treee62ecd0db82e6af2404c143618ed9085be74f1a1
parent3a79c034c002e51232f570027cf5c9d21993a2c6 (diff)
downloadportage-b46df1e7f51627b22709c3aa89ef6741d2d233af.tar.gz
portage-b46df1e7f51627b22709c3aa89ef6741d2d233af.tar.bz2
portage-b46df1e7f51627b22709c3aa89ef6741d2d233af.zip
Skip blocker atoms for the RDEPEND.suspect check. (trunk r10335)
svn path=/main/branches/2.1.2/; revision=10336
-rwxr-xr-xbin/repoman3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman
index 6dd86709b..b9756074e 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1715,7 +1715,8 @@ for x in scanlist:
stats['java.eclassesnotused'] += 1
fails['java.eclassesnotused'].append(relative_path)
elif mytype == "RDEPEND":
- if portage.dep_getkey(atom) in suspect_rdepend:
+ if not is_blocker and \
+ portage.dep_getkey(atom) in suspect_rdepend:
stats['RDEPEND.suspect'] += 1
fails['RDEPEND.suspect'].append(
relative_path + ": '%s'" % atom)