Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xfce4-systemload-plugin for openSUSE:Factory checked in at 2022-12-24 17:17:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xfce4-systemload-plugin (Old) and /work/SRC/openSUSE:Factory/.xfce4-systemload-plugin.new.1563 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xfce4-systemload-plugin" Sat Dec 24 17:17:55 2022 rev:5 rq:1045211 version:1.3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/xfce4-systemload-plugin/xfce4-systemload-plugin.changes 2021-03-24 16:15:55.256125902 +0100 +++ /work/SRC/openSUSE:Factory/.xfce4-systemload-plugin.new.1563/xfce4-systemload-plugin.changes 2022-12-24 17:17:59.511013469 +0100 @@ -1,0 +2,41 @@ +Thu Dec 22 09:49:28 UTC 2022 - Manfred Hollstein <manfre...@gmx.net> + +- Add convert-gulong.patch to avoid an otherwise impossible + conversion on i586. + +------------------------------------------------------------------- +Sun Dec 18 15:17:38 UTC 2022 - Dirk Müller <dmuel...@suse.com> + +- update to 1.3.2: + * Remove code obsoleted by libxfce4util-4.17.2 + * Fix GLib warnings occurring with newer xfce4-dev-tools + * Fix intltool lock file bug in make distcheck + * Code cleanup: Update variable declarations, extend maximum line length + * Code cleanup: Replace gboolean with bool where possible + * Code cleanup: Remove void from + * Code cleanup: Remove typedef keywords + * Add BSD-2 license badge to README + * Rename all files from C to C++ + * Bump required Xfce4 libs from 4.12 to 4.16 + * Update copyright notices, copyright years and author emails + * Cleanup Makefile.am + * Update configure.ac.in syntax + * Document rgba_equal() function + * Don't save default colors to Xfconf configuration file + * Move swap to be next to mem + * Update default colors + * Decouple the program order from the visual order of monitors + * Bump required XDT version to 4.14 + * Avoid G_GNUC_FALLTHROUGH to enable compilation with GLib earlier than + 2.60 + * Translation Updates: + Albanian, Arabic, Basque, Belarusian, Bulgarian, Catalan, Chinese + (China), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern + Armenian, English (Australia), English (Canada), English (United + Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew, + Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese, + Korean, Lithuanian, Malay, Norwegian Bokmål, Occitan (post 1500), + Polish, Portuguese, Russian, Serbian, Slovak, Slovenian, Spanish, + Swedish, Thai, Turkish, Ukrainian, Uyghur + +------------------------------------------------------------------- Old: ---- _service xfce4-systemload-plugin-1.3.1.tar.bz2 New: ---- convert-gulong.patch xfce4-systemload-plugin-1.3.2.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xfce4-systemload-plugin.spec ++++++ --- /var/tmp/diff_new_pack.k4jx5J/_old 2022-12-24 17:18:00.023016559 +0100 +++ /var/tmp/diff_new_pack.k4jx5J/_new 2022-12-24 17:18:00.027016582 +0100 @@ -1,7 +1,7 @@ # -# spec file for package xfce4-systemload-plugin +# spec file # -# Copyright (c) 2021 SUSE LLC +# 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 @@ -16,18 +16,20 @@ # -%define panel_version 4.12.0 +%define panel_version 4.16.0 %define plugin systemload %bcond_with git Name: xfce4-%{plugin}-plugin -Version: 1.3.1 +Version: 1.3.2 Release: 0 Summary: System Load Monitoring Plugin for the Xfce Panel License: BSD-2-Clause Group: System/GUI/XFCE URL: https://docs.xfce.org/panel-plugins/xfce4-systemload-plugin Source0: https://archive.xfce.org/src/panel-plugins/%{name}/1.3/%{name}-%{version}.tar.bz2 +Patch0: convert-gulong.patch BuildRequires: fdupes +BuildRequires: gcc-c++ BuildRequires: intltool BuildRequires: pkgconfig BuildRequires: pkgconfig(libxfce4panel-2.0) >= %{panel_version} @@ -62,7 +64,7 @@ Provides translations for the "%{name}" package. %prep -%autosetup +%autosetup -p1 %build %if %{with git} ++++++ convert-gulong.patch ++++++ diff -rup xfce4-systemload-plugin-1.3.2.orig/panel-plugin/network.cc xfce4-systemload-plugin-1.3.2/panel-plugin/network.cc --- xfce4-systemload-plugin-1.3.2.orig/panel-plugin/network.cc 2022-02-16 19:57:05.000000000 +0100 +++ xfce4-systemload-plugin-1.3.2/panel-plugin/network.cc 2022-12-22 11:12:43.287510914 +0100 @@ -114,6 +114,7 @@ read_netload_proc (gulong *bytes) gint read_netload (gulong *net, gulong *NTotal) { + gulong tbytes[2]; static guint64 bytes[2]; static gint64 time[2]; @@ -122,10 +123,12 @@ read_netload (gulong *net, gulong *NTota time[1] = g_get_monotonic_time (); - if (read_netload_proc (&bytes[1]) != 0) - if (read_netload_libgtop (&bytes[1]) != 0) + if (read_netload_proc (&tbytes[1]) != 0) + if (read_netload_libgtop (&tbytes[1]) != 0) return -1; + bytes[0] = tbytes[0]; + bytes[1] = tbytes[1]; if (time[0] != 0 && G_LIKELY (time[1] > time[0]) && G_LIKELY (bytes[1] >= bytes[0])) { guint64 diff_bits = 8 * (bytes[1] - bytes[0]); ++++++ xfce4-systemload-plugin-1.3.1.tar.bz2 -> xfce4-systemload-plugin-1.3.2.tar.bz2 ++++++ ++++ 62683 lines of diff (skipped)