Gentoo Archives: gentoo-commits

From: "Paweł Hajdan" <phajdan.jr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/arch-tools:new-pybugz commit in: /
Date: Wed, 01 Aug 2012 07:16:32
Message-Id: 1343805343.f63c885b61c46482781e22fb6f117f110eada79d.phajdan.jr@gentoo
1 commit: f63c885b61c46482781e22fb6f117f110eada79d
2 Author: Pawel Hajdan, Jr <phajdan.jr <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 07:15:43 2012 +0000
4 Commit: Paweł Hajdan <phajdan.jr <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 07:15:43 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/arch-tools.git;a=commit;h=f63c885b
7
8 Add default exclusion regex to the script
9
10 This makes it harder to forget exclusions people
11 asked for.
12
13 ---
14 stabilization-candidates.py | 2 +-
15 1 files changed, 1 insertions(+), 1 deletions(-)
16
17 diff --git a/stabilization-candidates.py b/stabilization-candidates.py
18 index a5724ff..bf7825e 100755
19 --- a/stabilization-candidates.py
20 +++ b/stabilization-candidates.py
21 @@ -24,7 +24,7 @@ if __name__ == "__main__":
22 parser.add_option("--days", dest="days", type=int, default=30, help="Number of days in the tree after stabilization is possible.")
23 parser.add_option("--repo", dest="repo", help="Path to portage CVS repository")
24 parser.add_option("--category", dest="category", help="Portage category filter (default is all categories)")
25 - parser.add_option("--exclude", dest="exclude", help="Regular expression for excluded packages.")
26 + parser.add_option("--exclude", dest="exclude", default=".*(kde|sci|lisp|perl-core|virtual|gnome|ruby).*", help="Regular expression for excluded packages.")
27 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.")
28
29 (options, args) = parser.parse_args()