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 E5A521381FE for ; Wed, 1 Aug 2012 07:16:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC596E0605; Wed, 1 Aug 2012 07:16:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 921E1E0605 for ; Wed, 1 Aug 2012 07:16:25 +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 048DE1B4025 for ; Wed, 1 Aug 2012 07:16:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B4D29E543E for ; Wed, 1 Aug 2012 07:16:23 +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: <1343805343.f63c885b61c46482781e22fb6f117f110eada79d.phajdan.jr@gentoo> Subject: [gentoo-commits] proj/arch-tools:new-pybugz 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: f63c885b61c46482781e22fb6f117f110eada79d X-VCS-Branch: new-pybugz Date: Wed, 1 Aug 2012 07:16:23 +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: 95323d33-3b79-4ba8-8bb1-f24f4d510826 X-Archives-Hash: 1bd97a52fef3f9e088458916cacbb881 Message-ID: <20120801071623.geHefjiRnyy7vseDj_Qx4-yyiRl1vigdHnlEiUaC8bw@z> commit: f63c885b61c46482781e22fb6f117f110eada79d Author: Pawel Hajdan, Jr gentoo org> AuthorDate: Wed Aug 1 07:15:43 2012 +0000 Commit: Paweł Hajdan gentoo org> CommitDate: Wed Aug 1 07:15:43 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/arch-tools.git;a=commit;h=f63c885b Add default exclusion regex to the script This makes it harder to forget exclusions people asked for. --- stabilization-candidates.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/stabilization-candidates.py b/stabilization-candidates.py index a5724ff..bf7825e 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", help="Regular expression for excluded packages.") + parser.add_option("--exclude", dest="exclude", default=".*(kde|sci|lisp|perl-core|virtual|gnome|ruby).*", 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()