From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 91CC359CA3 for ; Sun, 6 Mar 2016 18:05:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 559FC21C0EB; Sun, 6 Mar 2016 18:05:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C1C6121C0EB for ; Sun, 6 Mar 2016 18:05:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E51B7340806 for ; Sun, 6 Mar 2016 18:05:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 110988F6 for ; Sun, 6 Mar 2016 18:05:17 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1457287002.24a33ede401d6d08a8e357eb1efaafb7158f3584.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/portageq X-VCS-Directories: bin/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 24a33ede401d6d08a8e357eb1efaafb7158f3584 X-VCS-Branch: master Date: Sun, 6 Mar 2016 18:05:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 26333627-a423-4089-b0ae-f2ca58abcab7 X-Archives-Hash: 0293f6fdc999de60dabcfa9283385d00 commit: 24a33ede401d6d08a8e357eb1efaafb7158f3584 Author: Göktürk Yüksek binghamton edu> AuthorDate: Sun Mar 6 16:04:42 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun Mar 6 17:56:42 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=24a33ede bin/portageq: add 'match_orphaned' to the non_commands list Reported-By: Coacher Signed-off-by: Göktürk Yüksek binghamton.edu> bin/portageq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/portageq b/bin/portageq index 803e26b..44eea2b 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__")