From dea061322a3d837aa8818a43f7887dd04fb9642f1fa5bd63e2859c307fb4f41f Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 15 Aug 2018 10:50:38 +0000 Subject: [PATCH] - Update to new upstream release 2.2.1 OBS-URL: https://build.opensuse.org/package/show/graphics/SDL_bgi?expand=0&rev=30 --- SDL_bgi-2.2.0.tar.gz | 3 --- SDL_bgi-2.2.1.tar.gz | 3 +++ SDL_bgi.changes | 9 +++++++++ SDL_bgi.spec | 2 +- sdlbgi-automake.diff | 4 ++-- 5 files changed, 15 insertions(+), 6 deletions(-) delete mode 100644 SDL_bgi-2.2.0.tar.gz create mode 100644 SDL_bgi-2.2.1.tar.gz diff --git a/SDL_bgi-2.2.0.tar.gz b/SDL_bgi-2.2.0.tar.gz deleted file mode 100644 index 65c0534..0000000 --- a/SDL_bgi-2.2.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:564b3e486b00631b520a2154397c91aa73dc9ce610bb93df3c395c0e024f15d7 -size 1132692 diff --git a/SDL_bgi-2.2.1.tar.gz b/SDL_bgi-2.2.1.tar.gz new file mode 100644 index 0000000..ec15dc8 --- /dev/null +++ b/SDL_bgi-2.2.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71f968ff3aea306ac6d5b236a4f428299017187eaedba1b272ef00d395c7f4c +size 1145256 diff --git a/SDL_bgi.changes b/SDL_bgi.changes index 39e5a43..141f886 100644 --- a/SDL_bgi.changes +++ b/SDL_bgi.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Wed Aug 15 10:47:45 UTC 2018 - jengelh@inai.de + +- Update to new upstream release 2.2.1 + * renamed getch() to bgi_getch() and added the macro getch() + to avoid Mingw bug + * delay() rewritten to take care of key presses + * added ALPHA_VALUE() + ------------------------------------------------------------------- Thu Jul 26 14:19:01 UTC 2018 - jengelh@inai.de diff --git a/SDL_bgi.spec b/SDL_bgi.spec index a52f627..dce201a 100644 --- a/SDL_bgi.spec +++ b/SDL_bgi.spec @@ -18,7 +18,7 @@ Name: SDL_bgi %define lname libSDL_bgi1 -Version: 2.2.0 +Version: 2.2.1 Release: 0 Summary: BGI-compatible 2D graphics C library with SDL backend License: Zlib AND GPL-2.0-or-later diff --git a/sdlbgi-automake.diff b/sdlbgi-automake.diff index 830f9ca..4e773f6 100644 --- a/sdlbgi-automake.diff +++ b/sdlbgi-automake.diff @@ -24,7 +24,7 @@ Index: SDL_bgi-2.0.6/configure.ac --- /dev/null +++ SDL_bgi-2.0.6/configure.ac @@ -0,0 +1,9 @@ -+AC_INIT([SDL_bgi], [2.0.6]) ++AC_INIT([SDL_bgi], [2.2.1]) +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_MACRO_DIR([m4]) +AC_PROG_CC @@ -43,7 +43,7 @@ Index: SDL_bgi-2.0.6/src/Makefile.am +lib_LTLIBRARIES = libSDL_bgi.la +libSDL_bgi_la_SOURCES = SDL_bgi.c +libSDL_bgi_la_LIBADD = -lm ${sdl2_LIBS} -+libSDL_bgi_la_LDFLAGS = -no-undefined -version-info 1:0:0 ++libSDL_bgi_la_LDFLAGS = -no-undefined -version-info 2:0:0 +pkgincludedir = ${includedir}/SDL2 +pkginclude_HEADERS = SDL_bgi.h Index: SDL_bgi-2.0.6/test/Makefile.am