Hello community,

here is the log from the commit of package SDL_bgi for openSUSE:Factory checked 
in at 2016-03-16 10:35:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/SDL_bgi (Old)
 and      /work/SRC/openSUSE:Factory/.SDL_bgi.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "SDL_bgi"

Changes:
--------
--- /work/SRC/openSUSE:Factory/SDL_bgi/SDL_bgi.changes  2015-12-24 
12:17:38.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.SDL_bgi.new/SDL_bgi.changes     2016-03-16 
10:35:50.000000000 +0100
@@ -1,0 +2,8 @@
+Fri Mar  4 17:04:06 UTC 2016 - [email protected]
+
+- Update to new upstream release 2.0.6
+* fixed bug in writeimagefile()
+* implemented clipping in readimagefile()
+* turtle graphics improvements
+
+-------------------------------------------------------------------

Old:
----
  SDL_bgi-2.0.5.tar.gz

New:
----
  SDL_bgi-2.0.6.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ SDL_bgi.spec ++++++
--- /var/tmp/diff_new_pack.C61h0z/_old  2016-03-16 10:35:51.000000000 +0100
+++ /var/tmp/diff_new_pack.C61h0z/_new  2016-03-16 10:35:51.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package SDL_bgi
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 Name:           SDL_bgi
 %define lname  libSDL_bgi1
-Version:        2.0.5
+Version:        2.0.6
 Release:        0
 Summary:        BGI-compatible 2D graphics C library with SDL backend
 License:        Zlib and GPL-2.0+

++++++ SDL_bgi-2.0.5.tar.gz -> SDL_bgi-2.0.6.tar.gz ++++++
++++ 2940 lines of diff (skipped)

++++++ sdlbgi-automake.diff ++++++
--- /var/tmp/diff_new_pack.C61h0z/_old  2016-03-16 10:35:51.000000000 +0100
+++ /var/tmp/diff_new_pack.C61h0z/_new  2016-03-16 10:35:51.000000000 +0100
@@ -6,41 +6,38 @@
 (same for bgislow), so add extra symbols to enable both names.
 
 ---
- Makefile.am          |    2 ++
- configure.ac         |    9 +++++++++
- src/Makefile.am      |    8 ++++++++
- src/SDL_bgi.c        |    8 ++++++++
- src/SDL_bgi.h        |    2 ++
- src/test/Makefile.am |   10 ++++++++++
- 6 files changed, 39 insertions(+)
+ Makefile.am      |    2 ++
+ configure.ac     |    9 +++++++++
+ src/Makefile.am  |    8 ++++++++
+ test/Makefile.am |   11 +++++++++++
+ 4 files changed, 30 insertions(+)
 
-Index: SDL_bgi-2.0.0/Makefile.am
+Index: SDL_bgi-2.0.6/Makefile.am
 ===================================================================
 --- /dev/null
-+++ SDL_bgi-2.0.0/Makefile.am
++++ SDL_bgi-2.0.6/Makefile.am
 @@ -0,0 +1,2 @@
 +ACLOCAL_AMFLAGS = -I m4
-+SUBDIRS = src
-Index: SDL_bgi-2.0.0/configure.ac
++SUBDIRS = src test
+Index: SDL_bgi-2.0.6/configure.ac
 ===================================================================
 --- /dev/null
-+++ SDL_bgi-2.0.0/configure.ac
++++ SDL_bgi-2.0.6/configure.ac
 @@ -0,0 +1,9 @@
-+AC_INIT([SDL_bgi], [1.0.1])
++AC_INIT([SDL_bgi], [2.0.6])
 +AC_CONFIG_AUX_DIR([build-aux])
 +AC_CONFIG_MACRO_DIR([m4])
 +AC_PROG_CC
 +AM_INIT_AUTOMAKE([foreign subdir-objects tar-pax dist-xz no-dist-gzip])
 +LT_INIT
 +PKG_CHECK_MODULES([sdl2], [sdl2])
-+AC_CONFIG_FILES([Makefile src/Makefile src/test/Makefile])
++AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
 +AC_OUTPUT
-Index: SDL_bgi-2.0.0/src/Makefile.am
+Index: SDL_bgi-2.0.6/src/Makefile.am
 ===================================================================
 --- /dev/null
-+++ SDL_bgi-2.0.0/src/Makefile.am
-@@ -0,0 +1,9 @@
-+SUBDIRS = . test
++++ SDL_bgi-2.0.6/src/Makefile.am
+@@ -0,0 +1,8 @@
 +AM_CPPFLAGS = ${sdl2_CFLAGS}
 +AM_CFLAGS = -Wall
 +lib_LTLIBRARIES = libSDL_bgi.la
@@ -49,18 +46,19 @@
 +libSDL_bgi_la_LDFLAGS = -no-undefined -version-info 1:0:0
 +pkgincludedir = ${includedir}/SDL2
 +pkginclude_HEADERS = SDL_bgi.h
-Index: SDL_bgi-2.0.0/src/test/Makefile.am
+Index: SDL_bgi-2.0.6/test/Makefile.am
 ===================================================================
 --- /dev/null
-+++ SDL_bgi-2.0.0/src/test/Makefile.am
-@@ -0,0 +1,10 @@
++++ SDL_bgi-2.0.6/test/Makefile.am
+@@ -0,0 +1,11 @@
 +AM_CPPFLAGS = -I${top_srcdir}/src
 +AM_CFLAGS = -Wall
 +EXTRA_PROGRAMS = \
 +      cellular dla fern floodfilltest hopalong life \
-+      mandelbrot mousetest moveit sdlbgidemo simple turtledemo
-+LDADD = ../libSDL_bgi.la
++      mandelbrot mousetest moveit plasma sdlbgidemo simple turtledemo
++LDADD = ../src/libSDL_bgi.la
 +hopalong_LDADD = ${LDADD} -lm
++plasma_LDADD = ${LDADD} -lm
 +sdlbgidemo_LDADD = ${LDADD} -lm
 +turtledemo_SOURCES = turtle.c turtledemo.c
 +turtledemo_LDADD = ${LDADD} -lm


Reply via email to