This is an automated email from the git hooks/post-receive script. detiste-guest pushed a commit to branch master in repository game-data-packager.
commit f7ab5db323727286799136077f2e35c9993a1314 Author: Alexandre Detiste <[email protected]> Date: Sun Dec 27 19:21:41 2015 +0100 steam: semi-automatically tag remaining native games use JSON DB from https://github.com/SteamDatabase/SteamLinux --- data/inherit.yaml | 2 ++ data/nebular.yaml | 1 + data/pajama-sam-lost-found.yaml | 1 + data/pajama-sam-sockworks.yaml | 1 + data/pajama-sam1.yaml | 1 + data/pajama-sam2.yaml | 1 + data/pajama-sam3.yaml | 1 + data/t7g.yaml | 1 + tools/steam_native.py | 38 ++++++++++++++++++++++++++++++++++++++ 9 files changed, 47 insertions(+) diff --git a/data/inherit.yaml b/data/inherit.yaml index df6af45..4392098 100644 --- a/data/inherit.yaml +++ b/data/inherit.yaml @@ -29,6 +29,7 @@ packages: steam: id: 257260 path: common/Inherit the Earth/itedata + native: true install: - ite.rsc - scripts.rsc @@ -45,6 +46,7 @@ packages: steam: id: 257260 path: common/Inherit the Earth/itedata + native: true install: - ite.rsc?de - scripts.rsc?de diff --git a/data/nebular.yaml b/data/nebular.yaml index 9d817c4..cff43b3 100644 --- a/data/nebular.yaml +++ b/data/nebular.yaml @@ -10,6 +10,7 @@ gog: steam: id: 328430 path: "common/Rex Nebular and the Cosmic Gender Bender" + native: true packages: rex-nebular-and-the-cosmic-gender-bender-data: diff --git a/data/pajama-sam-lost-found.yaml b/data/pajama-sam-lost-found.yaml index dfd2457..3e23d34 100644 --- a/data/pajama-sam-lost-found.yaml +++ b/data/pajama-sam-lost-found.yaml @@ -16,6 +16,7 @@ gog: steam: id: 292860 path: FIXME + native: true packages: pajama-sams-lost-found-en-data: diff --git a/data/pajama-sam-sockworks.yaml b/data/pajama-sam-sockworks.yaml index 873b414..5560283 100644 --- a/data/pajama-sam-sockworks.yaml +++ b/data/pajama-sam-sockworks.yaml @@ -16,6 +16,7 @@ gog: steam: id: 292860 path: common/Pajama Sams Sock Works + native: true help_text: | The game "Pajama Sam: Life is Rough When You Lose Your Stuff", diff --git a/data/pajama-sam1.yaml b/data/pajama-sam1.yaml index 1509040..a65aa1b 100644 --- a/data/pajama-sam1.yaml +++ b/data/pajama-sam1.yaml @@ -10,6 +10,7 @@ missing_langs: [de,fr] steam: id: 283960 path: common/Pajama Sam 1 + native: true packages: pajama-sam-1-en-data: diff --git a/data/pajama-sam2.yaml b/data/pajama-sam2.yaml index b3ba4ad..22c8122 100644 --- a/data/pajama-sam2.yaml +++ b/data/pajama-sam2.yaml @@ -15,6 +15,7 @@ gog: steam: id: 292780 path: common/Pajama Sam 2 + native: true packages: pajama-sam-2-en-data: diff --git a/data/pajama-sam3.yaml b/data/pajama-sam3.yaml index bcceebf..b7b1f7e 100644 --- a/data/pajama-sam3.yaml +++ b/data/pajama-sam3.yaml @@ -16,6 +16,7 @@ gog: steam: id: 292800 path: common/Pajama Sam 3 + native: true help_text: | The game "Pajama Sam: Life is Rough When You Lose Your Stuff", diff --git a/data/t7g.yaml b/data/t7g.yaml index 9c23e1d..926515f 100644 --- a/data/t7g.yaml +++ b/data/t7g.yaml @@ -16,6 +16,7 @@ packages: steam: id: 255920 path: common/The7thGuest + native: true gog: url: the_7th_guest dotemu: diff --git a/tools/steam_native.py b/tools/steam_native.py new file mode 100755 index 0000000..f973e00 --- /dev/null +++ b/tools/steam_native.py @@ -0,0 +1,38 @@ +#!/usr/bin/python3 +# encoding=utf-8 +# +# Copyright © 2015 Alexandre Detiste <[email protected]> +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# You can find the GPL license text on a Debian system under +# /usr/share/common-licenses/GPL-2. + +import json +import urllib.request +from game_data_packager import load_games +from game_data_packager.util import AGENT + +url = 'https://github.com/SteamDatabase/SteamLinux/raw/master/GAMES.json' +response = urllib.request.urlopen(urllib.request.Request(url, headers={'User-Agent': AGENT})) +native = json.loads(response.read().decode('utf8')) +native = set(int(id) for id in native.keys()) + +for shortname, game in load_games().items(): + for package in game.packages.values(): + steam = package.steam or game.steam + if not steam: + continue + if steam.get('native') and steam.get('id') in native: + print('correctly tagged as native: %s' % package.name) + elif steam.get('native'): + print('extraneously tagged as native: %s' % package.name) + elif steam.get('id') in native: + print('should be tagged as native: %s' % package.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

