[yquake2] branch debian/master updated (fe085b0 -> 1e8bb9e)

Simon McVittie smcv at debian.org
Thu Sep 14 15:08:00 UTC 2017


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

smcv pushed a change to branch debian/master
in repository yquake2.

      from  fe085b0   Change Architecture to linux-any. If someone wants to run this game on kFreeBSD or Hurd, please see the output of `git grep __linux` for places that might need changes, then send a tested patch.
       new  8549ece   Reduce exclusion list to stuff/osx and stuff/icon
       new  edb551b   Rely on Files-Excluded in debian/copyright to repack tarball
       new  a11783a   Add game code for CTF v1.05, which is also GPL
       new  78fc480   New upstream version 7.01+ctf1.05~dfsg
       new  6bdfc67   Updated version 7.01+ctf1.05~dfsg from 'upstream/7.01+ctf1.05_dfsg'
       new  4237ff4   d/watch: Strip ~dfsg, +dfsg even if no digits
       new  0e64d22   Add patch for CTF to use SOURCE_DATE_EPOCH
       new  696d3be   Build and install CTF
       new  afae712   Close bug
       new  e3f134a   Add patch for CTF to append to CFLAGS, LDFLAGS
       new  1e8bb9e   7.01+ctf1.05~dfsg-1

The 11 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:
 ctf/CHANGELOG                                      |   19 +
 ctf/CMakeLists.txt                                 |   73 +
 LICENSE => ctf/LICENSE                             |  114 -
 ctf/Makefile                                       |  184 +
 ctf/README                                         |   32 +
 {src/game => ctf/src}/g_ai.c                       |  283 +-
 {src/game => ctf/src}/g_chase.c                    |  101 +-
 {src/game => ctf/src}/g_cmds.c                     |  421 +-
 {src/game => ctf/src}/g_combat.c                   |  240 +-
 ctf/src/g_ctf.c                                    | 5357 ++++++++++++++++++++
 {src/game => ctf/src}/g_func.c                     |  703 +--
 {src/game => ctf/src}/g_items.c                    |  699 +--
 {src/game => ctf/src}/g_main.c                     |  101 +-
 {src/game => ctf/src}/g_misc.c                     |  684 +--
 {src/game => ctf/src}/g_monster.c                  |  232 +-
 {src/game => ctf/src}/g_phys.c                     |  258 +-
 ctf/src/g_save.c                                   |  803 +++
 {src/game => ctf/src}/g_spawn.c                    |  413 +-
 {src/game => ctf/src}/g_svcmds.c                   |   51 +-
 {src/game => ctf/src}/g_target.c                   |  351 +-
 {src/game => ctf/src}/g_trigger.c                  |  363 +-
 {src/game => ctf/src}/g_utils.c                    |  156 +-
 {src/game => ctf/src}/g_weapon.c                   |  233 +-
 ctf/src/header/ctf.h                               |  206 +
 {src/game => ctf/src}/header/game.h                |   80 +-
 {src/game => ctf/src}/header/local.h               |  339 +-
 .../header/winquake.h => ctf/src/header/menu.h     |   53 +-
 {src/common => ctf/src}/header/shared.h            |  189 +-
 ctf/src/menu/menu.c                                |  365 ++
 {src/game/monster/misc => ctf/src/monster}/move.c  |  111 +-
 .../game/monster/misc => ctf/src/monster}/player.h |    1 +
 {src/game => ctf/src}/player/client.c              | 1262 ++---
 {src/game => ctf/src}/player/hud.c                 |  210 +-
 {src/game => ctf/src}/player/trail.c               |   25 +-
 {src/game => ctf/src}/player/view.c                |  218 +-
 {src/game => ctf/src}/player/weapon.c              |  368 +-
 {src/common => ctf/src}/shared/shared.c            |   78 +-
 debian/changelog                                   |   13 +-
 debian/copyright                                   |   10 +-
 debian/gbp.conf                                    |    4 +-
 ...d-to-CFLAGS-LDFLAGS-instead-of-overriding.patch |   37 +
 ...-SOURCE_DATE_EPOCH-for-reproducible-build.patch |   78 +
 debian/patches/series                              |    2 +
 debian/rules                                       |    2 +
 debian/watch                                       |    9 +-
 debian/yamagi-quake2-core.install                  |    1 +
 stuff/misc/uncrustify.cfg                          |  912 ++++
 47 files changed, 10781 insertions(+), 5663 deletions(-)
 create mode 100644 ctf/CHANGELOG
 create mode 100644 ctf/CMakeLists.txt
 copy LICENSE => ctf/LICENSE (78%)
 create mode 100644 ctf/Makefile
 create mode 100644 ctf/README
 copy {src/game => ctf/src}/g_ai.c (83%)
 copy {src/game => ctf/src}/g_chase.c (71%)
 copy {src/game => ctf/src}/g_cmds.c (85%)
 copy {src/game => ctf/src}/g_combat.c (75%)
 create mode 100644 ctf/src/g_ctf.c
 copy {src/game => ctf/src}/g_func.c (83%)
 copy {src/game => ctf/src}/g_items.c (83%)
 copy {src/game => ctf/src}/g_main.c (87%)
 copy {src/game => ctf/src}/g_misc.c (81%)
 copy {src/game => ctf/src}/g_monster.c (87%)
 copy {src/game => ctf/src}/g_phys.c (83%)
 create mode 100644 ctf/src/g_save.c
 copy {src/game => ctf/src}/g_spawn.c (75%)
 copy {src/game => ctf/src}/g_svcmds.c (87%)
 copy {src/game => ctf/src}/g_target.c (77%)
 copy {src/game => ctf/src}/g_trigger.c (72%)
 copy {src/game => ctf/src}/g_utils.c (76%)
 copy {src/game => ctf/src}/g_weapon.c (86%)
 create mode 100644 ctf/src/header/ctf.h
 copy {src/game => ctf/src}/header/game.h (68%)
 copy {src/game => ctf/src}/header/local.h (69%)
 copy src/backends/windows/header/winquake.h => ctf/src/header/menu.h (54%)
 copy {src/common => ctf/src}/header/shared.h (87%)
 create mode 100644 ctf/src/menu/menu.c
 copy {src/game/monster/misc => ctf/src/monster}/move.c (88%)
 copy {src/game/monster/misc => ctf/src/monster}/player.h (99%)
 copy {src/game => ctf/src}/player/client.c (57%)
 copy {src/game => ctf/src}/player/hud.c (85%)
 copy {src/game => ctf/src}/player/trail.c (93%)
 copy {src/game => ctf/src}/player/view.c (90%)
 copy {src/game => ctf/src}/player/weapon.c (88%)
 copy {src/common => ctf/src}/shared/shared.c (96%)
 create mode 100644 debian/patches/ctf-Append-to-CFLAGS-LDFLAGS-instead-of-overriding.patch
 create mode 100644 debian/patches/ctf-Use-SOURCE_DATE_EPOCH-for-reproducible-build.patch
 create mode 100644 stuff/misc/uncrustify.cfg

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



More information about the Pkg-games-commits mailing list