SHA256
1
0
forked from jengelh/SDL2

Accepting request 584126 from games

- Update to new upstream release 2.0.8

OBS-URL: https://build.opensuse.org/request/show/584126
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/SDL2?expand=0&rev=22
This commit is contained in:
Dominique Leuenberger 2018-03-12 11:07:36 +00:00 committed by Git OBS Bridge
commit 2868a3d37e
7 changed files with 37 additions and 12 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ee35c74c4313e2eda104b14b1b86f7db84a04eeab9430d56e001cea268bf4d5e
size 4432499

Binary file not shown.

3
SDL2-2.0.8.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:edc77c57308661d576e843344d8638e025a7818bff73f8fbfab09c3c5fd092ec
size 4909017

BIN
SDL2-2.0.8.tar.gz.sig Normal file

Binary file not shown.

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Thu Mar 8 00:58:43 UTC 2018 - jengelh@inai.de
- Update to new upstream release 2.0.8
* Added SDL_fmod() and SDL_log10().
* Each of the SDL math functions now has the corresponding
float version.
* Added SDL_SetYUVConversionMode() and
SDL_GetYUVConversionMode() to control the formula used when
converting to and from YUV colorspace. The options are JPEG,
BT.601, and BT.709.
* Added the hint SDL_HINT_VIDEO_X11_NET_WM_BYPASS_COMPOSITOR to
control whether the X server should skip the compositor for
the SDL application. This defaults to "1".
* Added the hint SDL_HINT_VIDEO_DOUBLE_BUFFER to control
whether the Raspberry Pi and KMSDRM video drivers should use
double or triple buffering (the default).
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jan 10 22:48:16 UTC 2018 - jengelh@inai.de Wed Jan 10 22:48:16 UTC 2018 - jengelh@inai.de

View File

@ -18,7 +18,7 @@
Name: SDL2 Name: SDL2
%define lname libSDL2-2_0-0 %define lname libSDL2-2_0-0
Version: 2.0.7 Version: 2.0.8
Release: 0 Release: 0
Summary: Simple DirectMedia Layer Library Summary: Simple DirectMedia Layer Library
License: Zlib License: Zlib

View File

@ -5,13 +5,13 @@ Scrape the SDL announcements since 2.0.3 (version in Leap 42.3) and add
some symvers so that zypper knows when to upgrade SDL. some symvers so that zypper knows when to upgrade SDL.
--- ---
Makefile.in | 2 - Makefile.in | 2 -
sdl2.sym | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ sdl2.sym | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 62 insertions(+), 1 deletion(-) 2 files changed, 69 insertions(+), 1 deletion(-)
Index: SDL2-2.0.7/Makefile.in Index: SDL2-2.0.8/Makefile.in
=================================================================== ===================================================================
--- SDL2-2.0.7.orig/Makefile.in --- SDL2-2.0.8.orig/Makefile.in
+++ SDL2-2.0.7/Makefile.in +++ SDL2-2.0.8/Makefile.in
@@ -122,7 +122,7 @@ LT_AGE = @LT_AGE@ @@ -122,7 +122,7 @@ LT_AGE = @LT_AGE@
LT_CURRENT = @LT_CURRENT@ LT_CURRENT = @LT_CURRENT@
LT_RELEASE = @LT_RELEASE@ LT_RELEASE = @LT_RELEASE@
@ -21,11 +21,11 @@ Index: SDL2-2.0.7/Makefile.in
all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(objects)/$(SDLTEST_TARGET) all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(objects)/$(SDLTEST_TARGET)
Index: SDL2-2.0.7/sdl2.sym Index: SDL2-2.0.8/sdl2.sym
=================================================================== ===================================================================
--- /dev/null --- /dev/null
+++ SDL2-2.0.7/sdl2.sym +++ SDL2-2.0.8/sdl2.sym
@@ -0,0 +1,61 @@ @@ -0,0 +1,68 @@
+SUSE_2.0.5 { +SUSE_2.0.5 {
+global: +global:
+ SDL_DequeueAudio; + SDL_DequeueAudio;
@ -87,3 +87,10 @@ Index: SDL2-2.0.7/sdl2.sym
+ SDL_AddEventWatch; + SDL_AddEventWatch;
+ SDL_DelEventWatch; + SDL_DelEventWatch;
+} SUSE_2.0.6; +} SUSE_2.0.6;
+SUSE_2.0.8 {
+global:
+ SDL_fmod;
+ SDL_log10;
+ SDL_SetYUVConversionMode;
+ SDL_GetYUVConversionMode;
+} SUSE_2.0.7;