From f3429167e69a1da2a9c90ad8d62a0080710760a9 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 12 Jul 2011 12:15:44 -0700 Subject: unmerge: reject USE conditionals in arguments --- pym/_emerge/actions.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index e57fd9345..62dadeec2 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -2535,8 +2535,7 @@ def action_uninstall(settings, trees, ldpath_mtimes, (ignore_missing_eq and is_valid_package_atom('=' + x)): try: - valid_atoms.append( - dep_expand(x, mydb=vardb, settings=settings)) + atom = dep_expand(x, mydb=vardb, settings=settings) except portage.exception.AmbiguousPackageName as e: msg = "The short ebuild name \"" + x + \ "\" is ambiguous. Please specify " + \ @@ -2550,6 +2549,17 @@ def action_uninstall(settings, trees, ldpath_mtimes, level=logging.ERROR, noiselevel=-1) writemsg_level("\n", level=logging.ERROR, noiselevel=-1) return 1 + else: + if atom.use and atom.use.conditional: + writemsg_level( + ("\n\n!!! '%s' contains a conditional " + \ + "which is not allowed.\n") % (x,), + level=logging.ERROR, noiselevel=-1) + writemsg_level( + "!!! Please check ebuild(5) for full details.\n", + level=logging.ERROR) + return 1 + valid_atoms.append(atom) elif x.startswith(os.sep): if not x.startswith(root): -- cgit v1.2.3-1-g7c22