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 3C228138200 for ; Mon, 8 Oct 2012 16:04:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0FD2E0330; Mon, 8 Oct 2012 16:03:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4DC1AE0330 for ; Mon, 8 Oct 2012 16:03:23 +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 DA25833D726 for ; Mon, 8 Oct 2012 16:03:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D53B1E544F for ; Mon, 8 Oct 2012 16:03:19 +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: <1343819273.47a90a979384faa62dac5190aa2515b6e67c3150.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: 47a90a979384faa62dac5190aa2515b6e67c3150 X-VCS-Branch: master Date: Mon, 8 Oct 2012 16:03:19 +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: f6a0b124-b39f-429d-b0c4-a2e344978a56 X-Archives-Hash: a876e7cd7918a83ab602f34bb6c92dc5 Message-ID: <20121008160319.tPLf1559nbOZdRERmuFJB3WpdqHaU_1Y1KPqgLJmzy4@z> commit: 47a90a979384faa62dac5190aa2515b6e67c3150 Author: Pawel Hajdan, Jr gentoo org> AuthorDate: Wed Aug 1 11:07:53 2012 +0000 Commit: Paweł Hajdan gentoo org> CommitDate: Wed Aug 1 11:07:53 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/arch-tools.git;a=commit;h=47a90a97 Exclude mono/dotnet from stabilization candidates. --- stabilization-candidates.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/stabilization-candidates.py b/stabilization-candidates.py index 3268fdc..216e15f 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|sci|lisp|perl-core|virtual|gnome|ruby|x11).*", help="Regular expression for excluded packages.") + parser.add_option("--exclude", dest="exclude", default=".*(kde|sci|lisp|perl-core|virtual|gnome|ruby|x11|mono|dotnet).*", 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()