Hello community,

here is the log from the commit of package frozen-bubble for openSUSE:Factory 
checked in at 2018-06-20 15:30:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/frozen-bubble (Old)
 and      /work/SRC/openSUSE:Factory/.frozen-bubble.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "frozen-bubble"

Wed Jun 20 15:30:22 2018 rev:32 rq:617546 version:2.212

Changes:
--------
--- /work/SRC/openSUSE:Factory/frozen-bubble/frozen-bubble.changes      
2018-03-12 12:11:39.467609512 +0100
+++ /work/SRC/openSUSE:Factory/.frozen-bubble.new/frozen-bubble.changes 
2018-06-20 15:31:29.569780447 +0200
@@ -1,0 +2,5 @@
+Mon Jun 18 14:50:18 UTC 2018 - opens...@dstoecker.de
+
+- fix build for Tumbleweed (add silencebadsnprintfcheck.patch)
+
+-------------------------------------------------------------------

New:
----
  silencebadsnprintfcheck.patch

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

Other differences:
------------------
++++++ frozen-bubble.spec ++++++
--- /var/tmp/diff_new_pack.jbAXz3/_old  2018-06-20 15:31:31.169722398 +0200
+++ /var/tmp/diff_new_pack.jbAXz3/_new  2018-06-20 15:31:31.173722253 +0200
@@ -23,7 +23,7 @@
 Summary:        Puzzle with Bubbles
 License:        GPL-2.0-or-later
 Group:          Amusements/Games/Action/Arcade
-URL:            http://www.frozen-bubble.org/
+Url:            http://www.frozen-bubble.org/
 Source0:        
http://www.frozen-bubble.org/data/frozen-bubble-2.2.1-beta1.tar.bz2
 Source1:        fb-server
 Source2:        fb-server.service
@@ -37,6 +37,8 @@
 Patch4:         desktop.patch
 # PATCH-FEATURE-UPSTREAM https://github.com/kthakore/frozen-bubble/pull/64
 Patch5:         appdata.patch
+# PATCH-FIX-OPENSUSE get a strange check silent - what's the sense of checking 
snprintf when the buffer size is correct
+Patch6:         silencebadsnprintfcheck.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  SDL_Pango-devel
 BuildRequires:  SDL_image-devel
@@ -102,6 +104,7 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 
 %build
 perl Build.PL destdir=%{buildroot} installdirs=vendor --prefix=%{_prefix}

++++++ silencebadsnprintfcheck.patch ++++++
diff -ur frozen-bubble-2.212/server/log.c frozen-bubble-2.212_fix/server/log.c
--- frozen-bubble-2.212/server/log.c    2012-10-24 19:53:38.000000000 +0200
+++ frozen-bubble-2.212_fix/server/log.c        2018-06-18 16:44:51.963979828 
+0200
@@ -56,7 +56,7 @@
 char* get_current_date(void) 
 {
     struct tm * lt;
-    char buf[50];
+    char buf[30];
     double time = get_current_time_exact();
     time_t seconds = (time_t)time;
     lt = localtime(&seconds);

Reply via email to