[game-data-packager] branch baldurs-gate updated (d6dcfff -> dabea5e)

Markus Koschany apo-guest at moszumanska.debian.org
Sun Oct 4 11:01:15 UTC 2015


This is an automated email from the git hooks/post-receive script.

apo-guest pushed a change to branch baldurs-gate
in repository game-data-packager.

      from  d6dcfff   baldurs-gate-1.yaml: Add support for German Linux installer.
       new  05458c9   Rename duplicate files.
       new  befd3e0   Remove data path prefix
      adds  0b664f8   spider: check only one game when argv[1] is provided
      adds  2a86fc4   cruise: add wikipedia url
      adds  85f6c39   TODO
      adds  e5c484c   fix Quake 2 expansions
      adds  862959d   name correclty the Quake 2 'any' .debs
      adds  536bd58   add Operation Stealth to WIP, stalled dev at scummvm
      adds  189679f   ARJ: make multipart handling tiny bit simpler
      adds  6afc043   feeble-files: add english multipart GOG archive
      adds  1728d4c   add support for multipart InnoExtract archives
      adds  88a5c84   InnoExtract: obey to --verbose on unknown archives too
      adds  43785c7   innoextract: avoid exception in --save-downloads
      adds  401df8c   urllib: use same Agent everywhere
      adds  a193a3f   Use debian.debian_support.Version to compare version numbers
      adds  b35da7f   yaml2json: specifically work on one file at a time
      adds  c07cc7c   yaml2json: use a clearer way to get the game name
      adds  66928bf   Turn install_packages into a plain function
      adds  c446e94   Move types that support the build process to a new module
      adds  9cfa8ca   Move steam and gog modes to their own modules
      adds  dfc99f7   Run pyflakes before the actual testing
      adds  4b97c1c   Separate GameData (static information about the game) from PackagingTask (the actual game-data-packaging)
      adds  971f77c   Split out detailed information about files to be packaged
      adds  44a8e18   Always give PackagingTask.verbose a value
      adds  1acdb40   Add configurable installation method instead of always using su
      adds  64e5179   Add configurable installation and root-gaining methods
      adds  b300aba   Update metadata for yquake2 mod code
      adds  130bc98   quake2: mention in the package descriptions and help text that we are using the yquake2 game-code
      adds  5c08a2f   quake2: mark videos as optional (Closes: #800575)
      adds  4c426b8   Update bug metadata
      adds  ce49a44   make_template: make innoextract output deterministic & reproducible
      adds  1b823b8   fix pyflakes warnings
      adds  6410075   tweak 'make clean'
      adds  16b06be   gobliiins: fill GOG game id to enable lgogdownloader integration
      adds  d57ab24   add GOG id for new FPS sold: Quake 2 & 3, Wolf3D, S.O.D., RTCW
      adds  814dd05   new GOG FPS: fix last commit
      adds  50c2cb3   RTCW: rewrite in more compact format
      adds  c50c45b   RTCW: split en/fr package definition; GOG only sells en+de
      adds  8168a7c   Quake2: let GOG package provide baseq2 + rewrite in compact format
      adds  4cca726   steam: adjust for the GameData <-> PackagingTask split
      adds  0028509   PackagingTask: inherit compress_deb from game
      adds  239effa   steam: don't try to package games that aren't in our Steam installation
      adds  71014fd   handle D:\Steam users
      adds  0d19527   Spear-Of-Destiny: refresh packaging, groundwork for GOG version
      adds  a3dfaf5   wolf3d: refresh packaging, groudwork for GOG support
      adds  04ec1b4   wolf3d: add release dates in comment
      adds  632ec28   document upstream version for quake2-{reckoning|groundzero}-data
      adds  b8159e8   document new options in /etc/game-data-packager.conf
       new  dabea5e   Merge branch 'master' into baldurs-gate

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile                                      |   11 +-
 data/baldurs-gate-1.yaml                      | 2444 +++++----------------
 data/feeble-files.yaml                        | 1570 ++++++++++++++
 data/gobliiins.yaml                           |    2 +
 data/operation-stealth.wip                    |  334 +++
 data/quake2-groundzero-data.control.in        |    3 +
 data/quake2-reckoning-data.control.in         |    3 +
 data/quake2.yaml                              | 1863 +++++++++-------
 data/quake3.yaml                              |    4 +
 data/rtcw.yaml                                |  228 +-
 data/spear-of-destiny.yaml                    |  151 +-
 data/wikipedia.csv                            |    1 +
 data/wolf3d.yaml                              |  237 +--
 debian/TODO                                   |   19 +-
 debian/changelog                              |   22 +
 debian/control                                |    2 +
 etc/game-data-packager.conf                   |    6 +-
 game_data_packager/__init__.py                | 2798 ++-----------------------
 game_data_packager/{__init__.py => build.py}  | 1654 +++------------
 game_data_packager/config.py                  |   12 +-
 game_data_packager/games/doom_common.py       |   21 +-
 game_data_packager/games/ecwolf_common.py     |   18 +-
 game_data_packager/games/lgeneral.py          |   11 +-
 game_data_packager/games/quake.py             |   13 +-
 game_data_packager/games/quake2.py            |   13 +-
 game_data_packager/games/residualvm_common.py |   25 +-
 game_data_packager/games/scummvm_common.py    |   25 +-
 game_data_packager/games/z_code.py            |   18 +-
 game_data_packager/gog.py                     |   67 +-
 game_data_packager/make_template.py           |    4 +-
 game_data_packager/steam.py                   |  152 +-
 game_data_packager/util.py                    |   61 +
 tools/babel.py                                |   16 +-
 tools/check_syntax.py                         |    1 +
 tools/fake_lgog.py                            |   37 +-
 tools/spider.py                               |   13 +-
 tools/stats.py                                |   13 +-
 tools/yaml2json.py                            |   48 +-
 38 files changed, 4817 insertions(+), 7103 deletions(-)
 create mode 100644 data/operation-stealth.wip
 copy game_data_packager/{__init__.py => build.py} (62%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/game-data-packager.git



More information about the Pkg-games-commits mailing list