Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package eb for openSUSE:Factory checked in 
at 2024-05-13 17:58:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/eb (Old)
 and      /work/SRC/openSUSE:Factory/.eb.new.1880 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "eb"

Mon May 13 17:58:35 2024 rev:25 rq:1173666 version:4.4.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/eb/eb.changes    2024-02-22 21:01:55.958658048 
+0100
+++ /work/SRC/openSUSE:Factory/.eb.new.1880/eb.changes  2024-05-13 
17:59:09.356248338 +0200
@@ -1,0 +2,7 @@
+Mon May 13 11:49:01 UTC 2024 - pgaj...@suse.com
+
+- added patches
+  fix build with gcc14
+  + eb-gcc14.patch
+
+-------------------------------------------------------------------

New:
----
  eb-gcc14.patch

BETA DEBUG BEGIN:
  New:  fix build with gcc14
  + eb-gcc14.patch
BETA DEBUG END:

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

Other differences:
------------------
++++++ eb.spec ++++++
--- /var/tmp/diff_new_pack.ZXZDg7/_old  2024-05-13 17:59:09.780263808 +0200
+++ /var/tmp/diff_new_pack.ZXZDg7/_new  2024-05-13 17:59:09.784263954 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package eb
 #
-# Copyright (c) 2023 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
@@ -26,6 +26,8 @@
 URL:            https://github.com/aehlke/eb
 Source:         ftp://ftp.sra.co.jp/pub/misc/eb/%{name}-%{version}.tar.bz2
 Patch0:         gettext.patch
+# build with gcc14
+Patch1:         eb-gcc14.patch
 BuildRequires:  libtool
 BuildRequires:  zlib-devel
 Recommends:     %{name}-lang

++++++ eb-gcc14.patch ++++++
Index: eb-4.4.3/libebutils/puts_eucjp.c
===================================================================
--- eb-4.4.3.orig/libebutils/puts_eucjp.c
+++ eb-4.4.3/libebutils/puts_eucjp.c
@@ -94,7 +94,7 @@ fputs_eucjp_to_locale(const char *string
        out_p = buffer;
        out_left = buffer_size;
 
-       if (iconv(cd, &in_p, &in_left, &out_p, &out_left) != -1)
+       if (iconv(cd, (char **)&in_p, &in_left, &out_p, &out_left) != -1)
            break;
        if (errno == E2BIG) {
            /*

Reply via email to