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 339EF138010 for ; Tue, 16 Oct 2012 16:54:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFB80E0478; Tue, 16 Oct 2012 16:54:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4C18EE0478 for ; Tue, 16 Oct 2012 16:54:31 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B1C8E33D7A9 for ; Tue, 16 Oct 2012 16:54:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7CDBEE5441 for ; Tue, 16 Oct 2012 16:54:28 +0000 (UTC) From: "Paweł Hajdan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paweł Hajdan" Message-ID: <1350406436.9e5f324f7083e932580962d79f3d8c74b675339b.phajdan.jr@gentoo> Subject: [gentoo-commits] proj/arch-tools:master commit in: / X-VCS-Repository: proj/arch-tools X-VCS-Files: stabilization-candidates.py X-VCS-Directories: / X-VCS-Committer: phajdan.jr X-VCS-Committer-Name: Paweł Hajdan X-VCS-Revision: 9e5f324f7083e932580962d79f3d8c74b675339b X-VCS-Branch: master Date: Tue, 16 Oct 2012 16:54:28 +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: a5be7360-9bf2-4c04-ad6e-9995e9e8f35e X-Archives-Hash: a90844668e3c20e77e8202a405e10a49 commit: 9e5f324f7083e932580962d79f3d8c74b675339b Author: Pawel Hajdan, Jr gentoo org> AuthorDate: Tue Oct 16 16:53:56 2012 +0000 Commit: Paweł Hajdan gentoo org> CommitDate: Tue Oct 16 16:53:56 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/arch-tools.git;a=commit;h=9e5f324f Exclude games, requested by mr_bones_. --- stabilization-candidates.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/stabilization-candidates.py b/stabilization-candidates.py index 55c5314..4ee25d5 100755 --- a/stabilization-candidates.py +++ b/stabilization-candidates.py @@ -24,7 +24,7 @@ if __name__ == "__main__": parser.add_option("--days", dest="days", type=int, default=30, help="Number of days in the tree after stabilization is possible.") parser.add_option("--repo", dest="repo", help="Path to portage CVS repository") parser.add_option("--category", dest="category", help="Portage category filter (default is all categories)") - parser.add_option("--exclude", dest="exclude", default=".*(kde-base|sci|lisp|perl-core|virtual|gnome|ruby|x11|mono|dotnet).*", help="Regular expression for excluded packages.") + parser.add_option("--exclude", dest="exclude", default=".*(kde-base|sci|lisp|perl-core|virtual|gnome|ruby|x11|mono|dotnet|games).*", help="Regular expression for excluded packages.") parser.add_option("--file-bugs", dest="file_bugs", action="store_true", default=False, help="File stabilization bugs for detected candidates. Otherwise (default) the candidates are just displayed.") (options, args) = parser.parse_args()