[dhewm3] branch master updated (67ee47a -> 288d55b)

Tobias Frost tobi at moszumanska.debian.org
Tue Nov 28 19:40:03 UTC 2017


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

tobi pushed a change to branch master
in repository dhewm3.

      from  67ee47a   d/control: Fix spelling error in package description
       new  b6c9ba5   Small typo in d/Readme.source
       new  6a3f132   New upstream version 1.4.1+git20171102+dfsg
       new  0b2da9e   Update upstream source from tag 'upstream/1.4.1+git20171102+dfsg'
       new  b770681   New upstream git snapshot.
       new  6dbf027   Update d/compat level to 10, update B-D on debhelper >10 and  drop --parallel in d/rules.
       new  1cd8cff   Update S-V to 4.1.1. Only change was using the https:// for the copyright format URL, as this is now allowed.
       new  986674e   Update d/copyright years
       new  17ecd4b   Fix spelling error in README.Debian
       new  0d3ff39   Use /usr/share/dpkg/pkg-info.mk instead of dpkg-parsechangelog
       new  982b1dd   Refresh patch 01-changedatadir.patch
       new  38eeaa7   Adding patch to fix FTBFS on ppc64el. Thanks to Frédéric Bonnard for providing it. (Closes: #868156)
       new  288d55b   Release 1.4.1+git20171102+dfsg-1

The 12 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:
 .gitignore                                         |    7 -
 ChangeLog                                          | 2119 ++++++++++++++++++++
 README.md                                          |    5 +-
 debian/README.Debian                               |    2 +-
 debian/README.source                               |    2 +-
 debian/changelog                                   |   21 +-
 debian/compat                                      |    2 +-
 debian/control                                     |    4 +-
 debian/copyright                                   |    4 +-
 debian/patches/01-changedatadir.patch              |    2 +-
 debian/patches/10-ppc64el-build.patch              |   36 +
 debian/patches/series                              |    1 +
 debian/rules                                       |   12 +-
 neo/CMakeLists.txt                                 |  112 +-
 neo/framework/FileSystem.cpp                       |    2 +-
 neo/framework/Licensee.h                           |    8 +
 neo/framework/Session.cpp                          |   16 +-
 neo/framework/minizip/ioapi.c                      |    2 +-
 neo/game/ai/AI_pathing.cpp                         |    4 +
 neo/idlib/Str.cpp                                  |   32 +
 neo/idlib/Str.h                                    |   10 +
 neo/idlib/math/Simd_SSE.cpp                        |    2 +-
 neo/mmakefile.src                                  |   54 +
 neo/renderer/Image_files.cpp                       |    2 +-
 neo/renderer/RenderSystem_init.cpp                 |    5 +-
 neo/sys/aros/ADoom3.info.src                       |    2 +
 neo/sys/aros/ADoom3.png                            |  Bin 0 -> 23573 bytes
 neo/sys/aros/ROE.info.src                          |    2 +
 neo/sys/aros/ROE.png                               |  Bin 0 -> 23394 bytes
 .../Complex.cpp => sys/aros/aros_dedicated.cpp}    |   84 +-
 neo/sys/aros/aros_dos.cpp                          |  516 +++++
 .../GEDeleteModifier.h => sys/aros/aros_local.h}   |   88 +-
 neo/sys/aros/aros_main.cpp                         |  897 +++++++++
 neo/sys/{posix/posix_net.cpp => aros/aros_net.cpp} |  164 +-
 .../{posix/posix_public.h => aros/aros_public.h}   |  106 +-
 neo/sys/aros/aros_signal.cpp                       |  174 ++
 neo/sys/aros/dll/dll.c                             |  368 ++++
 neo/sys/aros/dll/dll.h                             |  212 ++
 neo/sys/aros/dll/dllglue.c                         |   50 +
 neo/sys/aros/dll/dllimport.c                       |   37 +
 neo/sys/aros/dll/dllstartup.c                      |  177 ++
 neo/sys/aros/mmakefile.src                         |   10 +
 neo/sys/aros/setup/ADoom3.info.src                 |    1 +
 neo/sys/aros/setup/ADoom3.png                      |  Bin 0 -> 8954 bytes
 neo/sys/aros/setup/mmakefile.src                   |   20 +
 neo/sys/linux/main.cpp                             |    5 +
 neo/sys/platform.h                                 |   28 +
 neo/sys/sys_public.h                               |    2 +-
 48 files changed, 5150 insertions(+), 259 deletions(-)
 delete mode 100644 .gitignore
 create mode 100644 ChangeLog
 create mode 100644 debian/patches/10-ppc64el-build.patch
 create mode 100644 neo/mmakefile.src
 create mode 100644 neo/sys/aros/ADoom3.info.src
 create mode 100644 neo/sys/aros/ADoom3.png
 create mode 100644 neo/sys/aros/ROE.info.src
 create mode 100644 neo/sys/aros/ROE.png
 copy neo/{idlib/math/Complex.cpp => sys/aros/aros_dedicated.cpp} (84%)
 create mode 100644 neo/sys/aros/aros_dos.cpp
 copy neo/{tools/guied/GEDeleteModifier.h => sys/aros/aros_local.h} (82%)
 create mode 100644 neo/sys/aros/aros_main.cpp
 copy neo/sys/{posix/posix_net.cpp => aros/aros_net.cpp} (79%)
 copy neo/sys/{posix/posix_public.h => aros/aros_public.h} (70%)
 create mode 100644 neo/sys/aros/aros_signal.cpp
 create mode 100644 neo/sys/aros/dll/dll.c
 create mode 100644 neo/sys/aros/dll/dll.h
 create mode 100644 neo/sys/aros/dll/dllglue.c
 create mode 100644 neo/sys/aros/dll/dllimport.c
 create mode 100644 neo/sys/aros/dll/dllstartup.c
 create mode 100644 neo/sys/aros/mmakefile.src
 create mode 100644 neo/sys/aros/setup/ADoom3.info.src
 create mode 100644 neo/sys/aros/setup/ADoom3.png
 create mode 100644 neo/sys/aros/setup/mmakefile.src

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



More information about the Pkg-games-commits mailing list