From 047d6387ae6ae9176ea0a4dbbbbee2fccef152fe Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 17 Mar 2009 05:35:50 +0000 Subject: Bug #262485 - Handle InvalidAtom from dep_expand(). svn path=/main/trunk/; revision=13116 --- bin/quickpkg | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/bin/quickpkg b/bin/quickpkg index 92bce027c..80bb98b32 100755 --- a/bin/quickpkg +++ b/bin/quickpkg @@ -10,7 +10,7 @@ def quickpkg_main(options, args, eout): from portage import catsplit, dep_expand, flatten, isvalidatom, xpak from portage.dep import use_reduce, paren_reduce from portage.util import ConfigProtect, ensure_dirs - from portage.exception import InvalidData, InvalidDependString + from portage.exception import InvalidAtom, InvalidData, InvalidDependString from portage.dbapi.vartree import dblink, tar_contents from portage.checksum import perform_md5 import tarfile @@ -43,15 +43,16 @@ def quickpkg_main(options, args, eout): del e missing.append(arg) continue - except InvalidData, e: - eout.eerror("Invalid atom: %s" % str(e)) - del e + except (InvalidAtom, InvalidData): + eout.eerror("Invalid atom: %s" % (arg,)) missing.append(arg) continue - if not isvalidatom(atom): - eout.eerror("Invalid atom: %s" % atom) + if atom[:1] == '=' and arg[:1] != '=': + # dep_expand() allows missing '=' but it's really invalid + eout.eerror("Invalid atom: %s" % (arg,)) missing.append(arg) continue + matches = vardb.match(atom) pkgs_for_arg = 0 for cpv in matches: -- cgit v1.2.3-1-g7c22