This is an automated email from the git hooks/post-receive script. smcv pushed a commit to branch master in repository game-data-packager.
commit 1431e7b084e5d963669095a119ccdfca02c444ea Author: Simon McVittie <[email protected]> Date: Tue Dec 26 16:49:37 2017 +0000 FileGroup: Allow marking an entire group as unsuitable in the same way Signed-off-by: Simon McVittie <[email protected]> --- game_data_packager/data.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/game_data_packager/data.py b/game_data_packager/data.py index 5a733d5..504686d 100644 --- a/game_data_packager/data.py +++ b/game_data_packager/data.py @@ -386,7 +386,9 @@ class PackageRelation: return 'PackageRelation(' + repr(self.to_data()) + ')' class FileGroup: - __APPLY_TO_ALL = ('doc', 'executable', 'install_to', 'license') + __APPLY_TO_ALL = ( + 'doc', 'executable', 'install_to', 'license', 'unsuitable', + ) def __init__(self, name): self.name = name -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/game-data-packager.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

