diff options
author | Pawel Hajdan, Jr <phajdan.jr@gentoo.org> | 2012-08-01 09:15:43 +0200 |
---|---|---|
committer | Pawel Hajdan, Jr <phajdan.jr@gentoo.org> | 2012-08-01 09:15:43 +0200 |
commit | f63c885b61c46482781e22fb6f117f110eada79d (patch) | |
tree | e70229502ea2814e03b88862d1d5afd691d2f3bc | |
parent | Fix an exception when best_version was not a string (diff) | |
download | arch-tools-f63c885b61c46482781e22fb6f117f110eada79d.tar.gz arch-tools-f63c885b61c46482781e22fb6f117f110eada79d.tar.bz2 arch-tools-f63c885b61c46482781e22fb6f117f110eada79d.zip |
Add default exclusion regex to the script
This makes it harder to forget exclusions people
asked for.
-rwxr-xr-x | 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() |