Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mumble for openSUSE:Factory checked in at 2026-09-21 12:21:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mumble (Old) and /work/SRC/openSUSE:Factory/.mumble.new.383539 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mumble" Mon Sep 21 12:21:03 2026 rev:17 rq:1379298 version:1.5.915 Changes: -------- --- /work/SRC/openSUSE:Factory/mumble/mumble.changes 2026-07-21 23:14:36.174921848 +0200 +++ /work/SRC/openSUSE:Factory/.mumble.new.383539/mumble.changes 2026-09-21 12:21:05.100938903 +0200 @@ -1,0 +2,5 @@ +Sun Sep 20 17:00:06 UTC 2026 - Carsten Ziepke <[email protected]> + +- Add mumble-fix-pluginupdater-init.patch, fix Tumbleweed building + +------------------------------------------------------------------- New: ---- mumble-fix-pluginupdater-init.patch ----------(New B)---------- New: - Add mumble-fix-pluginupdater-init.patch, fix Tumbleweed building ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mumble.spec ++++++ --- /var/tmp/diff_new_pack.f8oNsN/_old 2026-09-21 12:21:06.504997609 +0200 +++ /var/tmp/diff_new_pack.f8oNsN/_new 2026-09-21 12:21:06.508997777 +0200 @@ -1,7 +1,7 @@ # # spec file for package mumble # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2026 Andreas Stieger <[email protected]> # Copyright (c) 2024 Tobias Burnus <[email protected]> # @@ -40,6 +40,8 @@ Source6: baselibs.conf # PATCH-FIX-UPSTREAM fix-64bit-only-plugins.patch -- Requires 64bit memory alignment ( https://github.com/mumble-voip/mumble/issues/5849 ) Patch0: fix-64bit-only-plugins.patch +# PATCH-FIX-UPSTREAM mumble-fix-pluginupdater-init.patch -- fixes compiling with newer gcc version +Patch1: mumble-fix-pluginupdater-init.patch # Patches related to dependency unbundling Patch100: licenses.patch Patch101: mumble-unbundle-tracy.patch ++++++ mumble-fix-pluginupdater-init.patch ++++++ diff -Nur mumble-1.5.915-orig/src/mumble/PluginUpdater.cpp mumble-1.5.915/src/mumble/PluginUpdater.cpp --- mumble-1.5.915-orig/src/mumble/PluginUpdater.cpp 2026-09-20 18:35:51.089783759 +0200 +++ mumble-1.5.915/src/mumble/PluginUpdater.cpp 2026-09-20 18:50:22.587671663 +0200 @@ -45,7 +45,11 @@ QUrl updateURL = plugin->getUpdateDownloadURL(); if (updateURL.isValid() && !updateURL.isEmpty() && !updateURL.fileName().isEmpty()) { - UpdateEntry entry = { plugin->getID(), updateURL, updateURL.fileName(), 0 }; + UpdateEntry entry; + entry.pluginID = plugin->getID(); + entry.updateURL = updateURL; + entry.fileName = updateURL.fileName(); + entry.redirects = 0; m_pluginsToUpdate << entry; } }
