diff --git a/SDL2-2.0.7.tar.gz b/SDL2-2.0.7.tar.gz deleted file mode 100644 index 84e8d4d..0000000 --- a/SDL2-2.0.7.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ee35c74c4313e2eda104b14b1b86f7db84a04eeab9430d56e001cea268bf4d5e -size 4432499 diff --git a/SDL2-2.0.7.tar.gz.sig b/SDL2-2.0.7.tar.gz.sig deleted file mode 100644 index 378751a..0000000 Binary files a/SDL2-2.0.7.tar.gz.sig and /dev/null differ diff --git a/SDL2-2.0.8.tar.gz b/SDL2-2.0.8.tar.gz new file mode 100644 index 0000000..07a17a0 --- /dev/null +++ b/SDL2-2.0.8.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc77c57308661d576e843344d8638e025a7818bff73f8fbfab09c3c5fd092ec +size 4909017 diff --git a/SDL2-2.0.8.tar.gz.sig b/SDL2-2.0.8.tar.gz.sig new file mode 100644 index 0000000..ab3d045 Binary files /dev/null and b/SDL2-2.0.8.tar.gz.sig differ diff --git a/SDL2.changes b/SDL2.changes index ebbdc95..4bb9c74 100644 --- a/SDL2.changes +++ b/SDL2.changes @@ -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 diff --git a/SDL2.spec b/SDL2.spec index 34bd02d..c42ebe6 100644 --- a/SDL2.spec +++ b/SDL2.spec @@ -18,7 +18,7 @@ Name: SDL2 %define lname libSDL2-2_0-0 -Version: 2.0.7 +Version: 2.0.8 Release: 0 Summary: Simple DirectMedia Layer Library License: Zlib diff --git a/sdl2-symvers.patch b/sdl2-symvers.patch index 2bddd6b..ab63d84 100644 --- a/sdl2-symvers.patch +++ b/sdl2-symvers.patch @@ -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. --- Makefile.in | 2 - - sdl2.sym | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 62 insertions(+), 1 deletion(-) + sdl2.sym | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 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.7/Makefile.in +--- SDL2-2.0.8.orig/Makefile.in ++++ SDL2-2.0.8/Makefile.in @@ -122,7 +122,7 @@ LT_AGE = @LT_AGE@ LT_CURRENT = @LT_CURRENT@ 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) -Index: SDL2-2.0.7/sdl2.sym +Index: SDL2-2.0.8/sdl2.sym =================================================================== --- /dev/null -+++ SDL2-2.0.7/sdl2.sym -@@ -0,0 +1,61 @@ ++++ SDL2-2.0.8/sdl2.sym +@@ -0,0 +1,68 @@ +SUSE_2.0.5 { +global: + SDL_DequeueAudio; @@ -87,3 +87,10 @@ Index: SDL2-2.0.7/sdl2.sym + SDL_AddEventWatch; + SDL_DelEventWatch; +} SUSE_2.0.6; ++SUSE_2.0.8 { ++global: ++ SDL_fmod; ++ SDL_log10; ++ SDL_SetYUVConversionMode; ++ SDL_GetYUVConversionMode; ++} SUSE_2.0.7;