Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libXbgi for openSUSE:Factory checked 
in at 2024-09-06 17:18:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libXbgi (Old)
 and      /work/SRC/openSUSE:Factory/.libXbgi.new.10096 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libXbgi"

Fri Sep  6 17:18:27 2024 rev:3 rq:1199028 version:365

Changes:
--------
--- /work/SRC/openSUSE:Factory/libXbgi/libXbgi.changes  2020-05-26 
17:21:11.128215388 +0200
+++ /work/SRC/openSUSE:Factory/.libXbgi.new.10096/libXbgi.changes       
2024-09-06 17:18:46.984484900 +0200
@@ -1,0 +2,6 @@
+Thu Sep  5 17:01:55 UTC 2024 - Jan Engelhardt <jeng...@inai.de>
+
+- Rectify xbgi-automake.diff to feature current version
+- Add xbgi-gcc14.diff
+
+-------------------------------------------------------------------

New:
----
  _scmsync.obsinfo
  build.specials.obscpio
  xbgi-gcc14.diff

BETA DEBUG BEGIN:
  New:- Rectify xbgi-automake.diff to feature current version
- Add xbgi-gcc14.diff
BETA DEBUG END:

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

Other differences:
------------------
++++++ libXbgi.spec ++++++
--- /var/tmp/diff_new_pack.AIcinM/_old  2024-09-06 17:18:47.692514319 +0200
+++ /var/tmp/diff_new_pack.AIcinM/_new  2024-09-06 17:18:47.696514485 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libXbgi
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
 Version:        365
 Release:        0
 Summary:        BGI-compatible 2D graphics C library with X11 backend
-License:        MIT AND GPL-2.0-or-later
+License:        GPL-2.0-or-later AND MIT
 Group:          Development/Libraries/C and C++
 URL:            http://libXbgi.sf.net/
 
@@ -31,6 +31,7 @@
 Patch2:         xbgi-getpixel.diff
 Patch3:         xbgi-sequence.diff
 Patch4:         xbgi-grapherrormsg.diff
+Patch5:         xbgi-gcc14.diff
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libtool

++++++ _scmsync.obsinfo ++++++
mtime: 1725555752
commit: 8922fd9d72ff582c5092fd1a079299b5c8262991f46248b9e38a281f307eb88f
url: https://src.opensuse.org/jengelh/libXbgi
revision: master

++++++ xbgi-automake.diff ++++++
--- /var/tmp/diff_new_pack.AIcinM/_old  2024-09-06 17:18:47.748516645 +0200
+++ /var/tmp/diff_new_pack.AIcinM/_new  2024-09-06 17:18:47.752516812 +0200
@@ -42,7 +42,7 @@
 --- /dev/null
 +++ xbgi-364/configure.ac
 @@ -0,0 +1,9 @@
-+AC_INIT([xbgi], [364])
++AC_INIT([xbgi], [365])
 +AC_CONFIG_AUX_DIR([build-aux])
 +AC_CONFIG_MACRO_DIR([m4])
 +AC_PROG_CC

++++++ xbgi-gcc14.diff ++++++
From: Jan Engelhardt <jeng...@inai.de>
Date: 2024-09-05 17:32:55.590866847 +0200

gcc-14 does not like not having a matching prototype.

---
 src/graphics.h        |    1 +
 src/rotated.h         |    2 +-
 src/setusercharsize.c |    1 +
 3 files changed, 3 insertions(+), 1 deletion(-)

Index: xbgi-365/src/graphics.h
===================================================================
--- xbgi-365.orig/src/graphics.h
+++ xbgi-365/src/graphics.h
@@ -300,6 +300,7 @@ typedef struct {
                void fillellipse PROTO((int, int, int, int));
                void fillpoly PROTO((int, int *));
                void floodfill PROTO((int, int, int));
+               void _floodfill PROTO((int, int));
                void getarccoords PROTO((struct arccoordstype *));
                void getaspectratio PROTO((int *, int *));
                int getbkcolor PROTO((void));
Index: xbgi-365/src/rotated.h
===================================================================
--- xbgi-365.orig/src/rotated.h
+++ xbgi-365/src/rotated.h
@@ -43,7 +43,7 @@
 
 extern "C" {
 float   XRotVersion(char*, int);
-void    XRotSetMagnification(float);
+void    XRotSetMagnification(float, float);
 void    XRotSetBoundingBoxPad(int);
 int     XRotDrawString(Display*, XFontStruct*, float,
                        Drawable, GC, int, int, char*);
Index: xbgi-365/src/setusercharsize.c
===================================================================
--- xbgi-365.orig/src/setusercharsize.c
+++ xbgi-365/src/setusercharsize.c
@@ -8,6 +8,7 @@
  *
  */
 #include "graphics.h"
+#include "rotated.h"
 
 void setusercharsize(int multx, int divx, int multy, int divy)
 {

Reply via email to