diff options
author | Pawel Hajdan, Jr <phajdan.jr@gentoo.org> | 2012-10-16 18:53:56 +0200 |
---|---|---|
committer | Pawel Hajdan, Jr <phajdan.jr@gentoo.org> | 2012-10-16 18:53:56 +0200 |
commit | 9e5f324f7083e932580962d79f3d8c74b675339b (patch) | |
tree | 09ea58375f15c80ef1d5fe28959378b3e1fb6b4c | |
parent | Only exclude kde-base, requested by kensington. (diff) | |
download | arch-tools-9e5f324f7083e932580962d79f3d8c74b675339b.tar.gz arch-tools-9e5f324f7083e932580962d79f3d8c74b675339b.tar.bz2 arch-tools-9e5f324f7083e932580962d79f3d8c74b675339b.zip |
Exclude games, requested by mr_bones_.
-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 55c5314..4ee25d5 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-base|sci|lisp|perl-core|virtual|gnome|ruby|x11|mono|dotnet).*", help="Regular expression for excluded packages.") + parser.add_option("--exclude", dest="exclude", default=".*(kde-base|sci|lisp|perl-core|virtual|gnome|ruby|x11|mono|dotnet|games).*", 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() |