Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package multiload-ng for openSUSE:Factory 
checked in at 2026-04-01 19:53:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/multiload-ng (Old)
 and      /work/SRC/openSUSE:Factory/.multiload-ng.new.21863 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "multiload-ng"

Wed Apr  1 19:53:02 2026 rev:3 rq:1344172 version:git20210103.743885d

Changes:
--------
--- /work/SRC/openSUSE:Factory/multiload-ng/multiload-ng.changes        
2025-07-09 17:28:21.199411463 +0200
+++ /work/SRC/openSUSE:Factory/.multiload-ng.new.21863/multiload-ng.changes     
2026-04-01 19:54:59.764014748 +0200
@@ -1,0 +2,8 @@
+Mon Mar 30 17:46:48 UTC 2026 - Scott Bradnick <[email protected]>
+
+- Using gcc-15 since Leap 16.0 doesn't offer up gcc-14
+- Adding patch e92a166.diff to account for errors which manifest as part
+  of autoconf update to v 2.73
+  * Concept taken from udda/multiload-ng#86
+
+-------------------------------------------------------------------

New:
----
  e92a166.diff

----------(New B)----------
  New:- Using gcc-15 since Leap 16.0 doesn't offer up gcc-14
- Adding patch e92a166.diff to account for errors which manifest as part
  of autoconf update to v 2.73
----------(New E)----------

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

Other differences:
------------------
++++++ multiload-ng.spec ++++++
--- /var/tmp/diff_new_pack.Lv9ZVV/_old  2026-04-01 19:55:00.496044965 +0200
+++ /var/tmp/diff_new_pack.Lv9ZVV/_new  2026-04-01 19:55:00.504045296 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package multiload-ng
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,10 +24,11 @@
 Group:          System/X11/Utilities
 URL:            https://github.com/udda/multiload-ng
 Source0:        %{name}-%{version}.tar.gz
+Patch0:         e92a166.diff
 BuildRequires:  autoconf
 BuildRequires:  automake
-BuildRequires:  gcc14
-BuildRequires:  gcc14-c++
+BuildRequires:  gcc15
+BuildRequires:  gcc15-c++
 BuildRequires:  intltool
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
@@ -58,16 +59,16 @@
 Multiload-ng can be built with GTK2 and GTK3, so can be embedded within 
GTK2/GTK3 builds of all the panels above.
 
 %prep base
-%setup -q
+%autosetup -p1
 
 %build base
-export CC=gcc-14 CFLAGS="%{optflags} -fPIE -pie" LDFLAGS="-pie"
+export CC=gcc-15 CFLAGS="%{optflags} -fPIE -pie" LDFLAGS="-pie"
 ./autogen.sh
 %configure --disable-autostart --with-systray --with-xfce4
 %make_build
 
 %install base
-export CC=gcc-14
+export CC=gcc-15
 %make_install
 
 %find_lang multiload-ng %{?no_lang_C}

++++++ e92a166.diff ++++++
--- a/common/preferences.c.smb  2026-02-26 16:20:20.384813226 -0500
+++ b/common/preferences.c      2026-02-26 16:22:26.665643899 -0500
@@ -1566,7 +1566,11 @@
        multiload_preferences_update_dynamic_widgets(ma);
 
        // other stuff
-       multiload_developer_buttons(ma);
+       #ifdef MULTILOAD_DEVELOPER_MODE
+               multiload_developer_buttons(ma);
+       #else
+               multiload_developer_buttons();
+       #endif
 
        #if GTK_API == 3 && GTK_CHECK_VERSION(3,16,0)
        if (gtk_check_version(3,16,0) == NULL)
--- a/common/util.h.smb 2026-02-26 16:22:46.298548799 -0500
+++ b/common/util.h     2026-02-26 16:23:19.623705245 -0500
@@ -49,7 +49,7 @@
 G_GNUC_INTERNAL gchar*
 get_system_monitor_executable();
 G_GNUC_INTERNAL void
-xdg_open_url();
+xdg_open_url(const gchar* url);
 
 G_GNUC_INTERNAL GdkPixbuf*
 cairo_surface_to_gdk_pixbuf(cairo_surface_t *surface, guint width, guint 
height);

Reply via email to