summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/repoman13
1 files changed, 7 insertions, 6 deletions
diff --git a/bin/repoman b/bin/repoman
index 9f48a1536..4749523dd 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1702,14 +1702,15 @@ for x in scanlist:
if token in operator_tokens or \
token.endswith("?"):
continue
- if not portage.isvalidatom(token, allow_blockers=True):
+ try:
+ atom = portage_dep.Atom(token)
+ except portage_exception.InvalidAtom:
badsyntax.append("'%s' not a valid atom" % token)
else:
- atom = token
- is_blocker = atom.startswith("!")
- if is_blocker:
- atom = token.lstrip("!")
- atom = portage_dep.Atom(atom)
+ is_blocker = atom.blocker
+ if atom.blocker:
+ atom = portage_dep.Atom(atom[1:])
+
if mytype == "DEPEND" and \
not is_blocker and \
not inherited_java_eclass and \