Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mangohud for openSUSE:Factory checked in at 2026-04-15 16:05:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mangohud (Old) and /work/SRC/openSUSE:Factory/.mangohud.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mangohud" Wed Apr 15 16:05:45 2026 rev:22 rq:1347049 version:0.8.2 Changes: -------- --- /work/SRC/openSUSE:Factory/mangohud/mangohud.changes 2025-12-01 11:16:04.265485065 +0100 +++ /work/SRC/openSUSE:Factory/.mangohud.new.21863/mangohud.changes 2026-04-15 16:14:19.523059982 +0200 @@ -1,0 +2,6 @@ +Wed Apr 15 04:54:52 UTC 2026 - Dead Mozay <[email protected]> + +- Add mangohud-gpu_fdinfo-add-missing-sstream-header-include.patch + to fix build with GCC 16. + +------------------------------------------------------------------- New: ---- mangohud-gpu_fdinfo-add-missing-sstream-header-include.patch ----------(New B)---------- New: - Add mangohud-gpu_fdinfo-add-missing-sstream-header-include.patch to fix build with GCC 16. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mangohud.spec ++++++ --- /var/tmp/diff_new_pack.6P5CbP/_old 2026-04-15 16:14:21.447139085 +0200 +++ /var/tmp/diff_new_pack.6P5CbP/_new 2026-04-15 16:14:21.463139743 +0200 @@ -1,7 +1,7 @@ # # spec file for package mangohud # -# Copyright (c) 2025 SUSE LLC and contributors +# 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 @@ -35,8 +35,9 @@ Source5: https://github.com/epezent/implot/archive/refs/tags/v%{implot_ver}.zip#/implot-%{implot_ver}.tar.gz Source6: https://wrapdb.mesonbuild.com/v2/implot_%{implot_ver}-1/get_patch#/implot-%{implot_ver}-1-wrap.zip Source99: baselibs.conf -# PATCH-FIX-UPSTREAM mangohud-remove-glew-dep.patch -# https://github.com/flightlessmango/MangoHud/commit/9da183900bc6f7af0f3cb907d9370aec54a11a91.patch +# PATCH-FIX-UPSTREAM mangohud-gpu_fdinfo-add-missing-sstream-header-include.patch bsc#1262011 +# https://github.com/flightlessmango/MangoHud/pull/1884 +Patch0: mangohud-gpu_fdinfo-add-missing-sstream-header-include.patch BuildRequires: AppStream %if 0%{?suse_version} < 1550 && 0%{?sle_version} >= 150500 BuildRequires: gcc12-c++ ++++++ mangohud-gpu_fdinfo-add-missing-sstream-header-include.patch ++++++ >From 8c8d0c6d2f45f8b2fbdfd3685a88b52a6963c203 Mon Sep 17 00:00:00 2001 From: Alfred Wingate <[email protected]> Date: Mon, 1 Dec 2025 18:17:36 +0200 Subject: [PATCH] gpu_fdinfo: add missing implicit sstream header include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's not implicit in gcc-16 anymore. ../src/gpu_fdinfo.cpp: In member function ‘void GPU_fdinfo::get_current_hwmon_readings()’: ../src/gpu_fdinfo.cpp:287:27: error: aggregate ‘std::stringstream ss’ has incomplete type and cannot be defined 287 | std::stringstream ss; | Signed-off-by: Alfred Wingate <[email protected]> --- src/gpu_fdinfo.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gpu_fdinfo.h b/src/gpu_fdinfo.h index 7d22703b40..109082bfdd 100644 --- a/src/gpu_fdinfo.h +++ b/src/gpu_fdinfo.h @@ -11,6 +11,7 @@ #include <map> #include <set> #include <regex> +#include <sstream> #ifdef TEST_ONLY #include <../src/mesa/util/os_time.h>
