Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package freeipmi for openSUSE:Factory checked in at 2025-05-06 16:39:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/freeipmi (Old) and /work/SRC/openSUSE:Factory/.freeipmi.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "freeipmi" Tue May 6 16:39:16 2025 rev:55 rq:1274015 version:1.6.15 Changes: -------- --- /work/SRC/openSUSE:Factory/freeipmi/freeipmi.changes 2025-01-17 18:37:45.817929068 +0100 +++ /work/SRC/openSUSE:Factory/.freeipmi.new.30101/freeipmi.changes 2025-05-06 16:39:36.671610441 +0200 @@ -1,0 +2,6 @@ +Fri May 2 08:56:11 UTC 2025 - Friedrich Haubensak <[email protected]> + +- add freeipmi-1.6.15-gcc15.patch from upstream to fix gcc15 + compile time error + +------------------------------------------------------------------- New: ---- freeipmi-1.6.15-gcc15.patch BETA DEBUG BEGIN: New: - add freeipmi-1.6.15-gcc15.patch from upstream to fix gcc15 compile time error BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ freeipmi.spec ++++++ --- /var/tmp/diff_new_pack.rnTx4p/_old 2025-05-06 16:39:37.183631840 +0200 +++ /var/tmp/diff_new_pack.rnTx4p/_new 2025-05-06 16:39:37.187632007 +0200 @@ -43,6 +43,8 @@ Source0: http://ftp.gnu.org/gnu/freeipmi/%{name}-%{srcversion}.tar.gz Source1: http://ftp.gnu.org/gnu/freeipmi/%{name}-%{srcversion}.tar.gz.sig Source2: %{name}.keyring +# PATCH-FIX-UPSTREAM +Patch1: freeipmi-1.6.15-gcc15.patch Summary: IPMI Service Processor, BMC management tool License: GPL-3.0-or-later Group: System/Management ++++++ freeipmi-1.6.15-gcc15.patch ++++++ git.savannah.gnu.org/cgit/freeipmi.git/commit/?id=ececf09 toolcommon: fix gcc15 compilation error Albert Chu <[email protected]> 2025-02-20 12:16:59 -0800 adapted to opensuse's source tree (ChangeLog) --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2025-02-20 Pavel Cahyna <[email protected]> + + * common/toolcommon/tool-config-file-common.c: Fix gcc 15 + compilation failure. + 2025-01-02 Albert Chu <[email protected]> * ipmi-sensors/ipmi-sensors-oem-intel-quanta-qssc-s4r.h: Fix header guard. --- a/common/toolcommon/tool-config-file-common.c +++ b/common/toolcommon/tool-config-file-common.c @@ -78,14 +78,14 @@ _config_file_bool (conffile_t cf, void *app_ptr, int app_data) { - int *bool; + int *value; assert (data); assert (optionname); assert (option_ptr); - bool = (int *)option_ptr; - *bool = data->boolval; + value = (int *)option_ptr; + *value = data->boolval; return (0); }
