From f63c885b61c46482781e22fb6f117f110eada79d Mon Sep 17 00:00:00 2001 From: "Pawel Hajdan, Jr" Date: Wed, 1 Aug 2012 09:15:43 +0200 Subject: Add default exclusion regex to the script This makes it harder to forget exclusions people asked for. --- stabilization-candidates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.3-65-gdbad