aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGöktürk Yüksek <gokturk@binghamton.edu>2016-03-06 11:04:42 -0500
committerBrian Dolbec <dolsen@gentoo.org>2016-03-06 09:56:42 -0800
commit24a33ede401d6d08a8e357eb1efaafb7158f3584 (patch)
tree609237c5139ae220948f7e973b20cae2c24bd314 /bin/portageq
parentbin/portageq: add a matcher to match the orphaned (maintainer-needed) packages (diff)
downloadportage-24a33ede401d6d08a8e357eb1efaafb7158f3584.tar.gz
portage-24a33ede401d6d08a8e357eb1efaafb7158f3584.tar.bz2
portage-24a33ede401d6d08a8e357eb1efaafb7158f3584.zip
bin/portageq: add 'match_orphaned' to the non_commands list
Reported-By: Coacher Signed-off-by: Göktürk Yüksek <gokturk@binghamton.edu>
Diffstat (limited to 'bin/portageq')
-rwxr-xr-xbin/portageq2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/portageq b/bin/portageq
index 803e26b59..44eea2b16 100755
--- a/bin/portageq
+++ b/bin/portageq
@@ -1223,7 +1223,7 @@ pquery.__doc__ = docstrings['pquery']
# DO NOT CHANGE CODE BEYOND THIS POINT - IT'S NOT NEEDED!
#
-non_commands = frozenset(['elog', 'eval_atom_use', 'exithandler', 'main', 'usage', 'uses_eroot'])
+non_commands = frozenset(['elog', 'eval_atom_use', 'exithandler', 'match_orphaned', 'main', 'usage', 'uses_eroot'])
commands = sorted(k for k, v in globals().items() \
if k not in non_commands and isinstance(v, types.FunctionType) and v.__module__ == "__main__")