Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libICE for openSUSE:Factory checked 
in at 2022-12-07 17:34:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libICE (Old)
 and      /work/SRC/openSUSE:Factory/.libICE.new.1835 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libICE"

Wed Dec  7 17:34:19 2022 rev:11 rq:1040585 version:1.1.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/libICE/libICE.changes    2019-07-17 
14:22:44.564185821 +0200
+++ /work/SRC/openSUSE:Factory/.libICE.new.1835/libICE.changes  2022-12-07 
17:35:18.956654423 +0100
@@ -1,0 +2,26 @@
+Tue Dec  6 10:20:56 UTC 2022 - Stefan Dirsch <sndir...@suse.com>
+
+- U_ICEmsg-Fix-C-interoperability-error-due-to-static_as.patch
+  * needed by plasma5-workspace
+
+-------------------------------------------------------------------
+Sun Dec  4 22:56:03 UTC 2022 - Stefan Dirsch <sndir...@suse.com>
+
+- Update to version 1.1.0
+  * Fix spelling/wording issues
+  * gitlab CI: add a basic build test
+  * configure: check for libbsd before libxtrans checks for strlcpy
+  * ConnectToPeer: be doubly sure that use-after-free doesn't happen
+  * ProcessAuthReply: rename status variable to avoid shadowing
+  * Only link to libbsd for arc4random_buf if it is not found in libc
+  * IceGetHeaderExtra: only include extra space in outbufptr if there's room
+  * Refactor Fatal I/O error handling into a common function
+  * IceFlush: signal fatal I/O error if bufptr is past end of buffer
+  * ICEmsg.h: Add static asserts that message header length <= ICE_OUTBUFSIZE
+  * Handle arrays too large to fit in iceConn buffers
+  * Only link with libbsd if needed for arc4random_buf() or getentropy()
+  * Avoid -Wdeclaration-after-statement warnings from static_assert
+  * ice.pc.in: "Libs.Private" should be "Libs.private"
+  * configure: Use AC_SYS_LARGEFILE to enable large file support
+
+-------------------------------------------------------------------

Old:
----
  libICE-1.0.10.tar.bz2

New:
----
  U_ICEmsg-Fix-C-interoperability-error-due-to-static_as.patch
  libICE-1.1.0.tar.xz

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

Other differences:
------------------
++++++ libICE.spec ++++++
--- /var/tmp/diff_new_pack.dn8IIA/_old  2022-12-07 17:35:19.680658387 +0100
+++ /var/tmp/diff_new_pack.dn8IIA/_new  2022-12-07 17:35:19.688658431 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libICE
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,17 +18,18 @@
 
 Name:           libICE
 %define lname  libICE6
-Version:        1.0.10
+Version:        1.1.0
 Release:        0
 Summary:        X11 Inter-Client Exchange Library
 License:        MIT
 Group:          Development/Libraries/C and C++
-Url:            http://xorg.freedesktop.org/
+URL:            http://xorg.freedesktop.org/
 
 #Git-Clone:    git://anongit.freedesktop.org/xorg/lib/libICE
 #Git-Web:      http://cgit.freedesktop.org/xorg/lib/libICE/
-Source:         
http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.bz2
+Source:         
http://xorg.freedesktop.org/releases/individual/lib/%{name}-%{version}.tar.xz
 Source1:        baselibs.conf
+Patch0:         U_ICEmsg-Fix-C-interoperability-error-due-to-static_as.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 #git#BuildRequires:    autoconf >= 2.60, automake, libtool
 BuildRequires:  autoconf
@@ -80,6 +81,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 autoreconf -fi

++++++ U_ICEmsg-Fix-C-interoperability-error-due-to-static_as.patch ++++++
>From e176b676cff17948d68299c00dddefe41638c752 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= <ar...@aarsen.me>
Date: Sun, 4 Dec 2022 22:19:20 +0100
Subject: [PATCH] ICEmsg: Fix C++ interoperability error due to static_assert
 define

Commit 0269c687e954db7aca2a4344e32cb203315a00b6 added a static_assert helper
that gets defined to blank if left undefined by assert.h.  As this is not a
macro in other languages that use this header, this can lead to a compile-time
error.

Bug: https://bugs.gentoo.org/884369
---
 include/X11/ICE/ICEmsg.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/X11/ICE/ICEmsg.h b/include/X11/ICE/ICEmsg.h
index b6bad13..13e1509 100644
--- a/include/X11/ICE/ICEmsg.h
+++ b/include/X11/ICE/ICEmsg.h
@@ -34,7 +34,7 @@ Author: Ralph Mor, X Consortium
 #include <X11/ICE/ICEconn.h>
 
 #include <assert.h>
-#ifndef static_assert
+#if !defined(__cplusplus) && !defined(static_assert)
 #define static_assert(cond, msg) /* skip for non-C11 compilers */
 #endif
 
-- 
2.35.3

Reply via email to