[Pkg-sdl-commits] [libsdl2] branch master updated (7cafc19 -> d416f7c)
Fabian Greffrath
fabian at moszumanska.debian.org
Sat Nov 4 13:42:54 UTC 2017
This is an automated email from the git hooks/post-receive script.
fabian pushed a change to branch master
in repository libsdl2.
from 7cafc19 Import further upstream patches for CVE-2017-2888.
adds d705fdc New upstream version 2.0.7+dfsg1
new 72ff25f Update upstream source from tag 'upstream/2.0.7+dfsg1'
new 26e419b prepare debian/changelog
new e8f1db1 remove patches backported from upstream
new d416f7c update debian/changelog
The 4 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:
CMakeLists.txt | 34 +-
SDL2.spec | 2 +-
WhatsNew.txt | 28 +
cmake_uninstall.cmake.in | 8 +-
configure | 22 +-
configure.in | 12 +-
debian/changelog | 8 +
debian/patches/CVE-2017-2888-1.patch | 28 -
debian/patches/CVE-2017-2888-2.patch | 93 ---
debian/patches/CVE-2017-2888-3.patch | 49 --
debian/patches/dc7245e3d1f2.patch | 18 -
debian/patches/series | 4 -
docs/README-ios.md | 9 +-
include/SDL_audio.h | 137 ++++-
include/SDL_config.h.cmake | 2 +-
include/SDL_config.h.in | 2 +-
include/SDL_config_android.h | 1 -
include/SDL_config_iphoneos.h | 2 +-
include/SDL_config_macosx.h | 2 +-
include/SDL_config_pandora.h | 1 -
include/SDL_config_psp.h | 1 -
include/SDL_config_wiz.h | 1 -
include/SDL_joystick.h | 14 +
include/SDL_revision.h | 4 +-
include/SDL_stdinc.h | 47 ++
include/SDL_test.h | 13 +-
include/SDL_test_crc32.h | 2 +-
include/{SDL_test_log.h => SDL_test_memory.h} | 30 +-
include/SDL_thread.h | 17 +-
include/SDL_version.h | 2 +-
src/SDL_assert.c | 10 +-
src/SDL_dataqueue.c | 25 +
src/SDL_dataqueue.h | 1 +
src/audio/SDL_audio_c.h | 40 --
src/audio/SDL_audiocvt.c | 413 +++++++++----
src/audio/SDL_audiotypecvt.c | 45 +-
src/audio/coreaudio/SDL_coreaudio.m | 16 +-
src/core/android/SDL_android.c | 267 +++++----
src/core/linux/SDL_ibus.c | 2 +-
src/core/linux/SDL_udev.c | 22 +-
src/dynapi/SDL_dynapi_overrides.h | 12 +
src/dynapi/SDL_dynapi_procs.h | 12 +
src/events/SDL_events.c | 193 ++++--
src/events/SDL_events_c.h | 4 -
src/events/SDL_mouse.c | 7 +-
src/joystick/SDL_gamecontroller.c | 73 ++-
src/joystick/SDL_gamecontrollerdb.h | 14 +-
src/joystick/SDL_joystick.c | 54 +-
src/joystick/SDL_joystick_c.h | 4 -
src/joystick/android/SDL_sysjoystick.c | 144 ++++-
src/joystick/android/SDL_sysjoystick_c.h | 3 +
src/joystick/iphoneos/SDL_sysjoystick.m | 60 +-
src/joystick/iphoneos/SDL_sysjoystick_c.h | 3 +
src/joystick/linux/SDL_sysjoystick.c | 148 ++++-
src/joystick/linux/SDL_sysjoystick_c.h | 3 +
.../SDL_steamcontroller.c} | 46 +-
.../steam/SDL_steamcontroller.h} | 32 +-
src/main/windows/version.rc | 8 +-
src/render/SDL_render.c | 28 +
src/render/SDL_yuv_sw.c | 185 ++++--
src/render/opengl/SDL_render_gl.c | 32 +-
src/render/opengles2/SDL_render_gles2.c | 42 +-
src/stdlib/SDL_malloc.c | 166 +++++-
src/stdlib/SDL_string.c | 4 -
src/test/SDL_test_common.c | 100 +++-
src/test/SDL_test_crc32.c | 2 -
src/test/SDL_test_memory.c | 274 +++++++++
src/video/SDL_surface.c | 651 ++++++++++++++++++++-
src/video/cocoa/SDL_cocoaevents.m | 13 +-
src/video/cocoa/SDL_cocoakeyboard.m | 6 +-
src/video/kmsdrm/SDL_kmsdrmopengles.c | 44 ++
src/video/kmsdrm/SDL_kmsdrmvideo.c | 6 +
src/video/kmsdrm/SDL_kmsdrmvideo.h | 1 +
src/video/vivante/SDL_vivanteplatform.c | 10 +
src/video/vivante/SDL_vivanteplatform.h | 2 +
src/video/vivante/SDL_vivantevideo.c | 12 +
src/video/wayland/SDL_waylandevents.c | 10 +-
src/video/wayland/SDL_waylandvideo.c | 3 +-
src/video/windows/SDL_windowsevents.c | 11 +-
src/video/windows/SDL_windowswindow.c | 27 +-
src/video/x11/SDL_x11opengl.c | 4 +-
src/video/x11/SDL_x11xinput2.c | 47 +-
test/testplatform.c | 20 +
83 files changed, 2996 insertions(+), 958 deletions(-)
delete mode 100644 debian/patches/CVE-2017-2888-1.patch
delete mode 100644 debian/patches/CVE-2017-2888-2.patch
delete mode 100644 debian/patches/CVE-2017-2888-3.patch
delete mode 100644 debian/patches/dc7245e3d1f2.patch
copy include/{SDL_test_log.h => SDL_test_memory.h} (69%)
copy src/joystick/{emscripten/SDL_sysjoystick_c.h => steam/SDL_steamcontroller.c} (67%)
copy src/{audio/directsound/SDL_directsound.h => joystick/steam/SDL_steamcontroller.h} (63%)
create mode 100644 src/test/SDL_test_memory.c
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-sdl/packages/libsdl2.git
More information about the pkg-sdl-commits
mailing list