Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package descent3 for openSUSE:Factory checked in at 2025-05-30 14:37:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/descent3 (Old) and /work/SRC/openSUSE:Factory/.descent3.new.25440 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "descent3" Fri May 30 14:37:39 2025 rev:5 rq:1281103 version:1.6.0~git533.c99e57c Changes: -------- --- /work/SRC/openSUSE:Factory/descent3/descent3.changes 2025-03-24 13:29:24.036679395 +0100 +++ /work/SRC/openSUSE:Factory/.descent3.new.25440/descent3.changes 2025-05-30 17:20:26.623061503 +0200 @@ -1,0 +2,6 @@ +Wed May 28 22:57:52 UTC 2025 - Jan Engelhardt <jeng...@inai.de> + +- Add fstream.patch to resolve source build failure with new + compiler + +------------------------------------------------------------------- New: ---- fstream.patch BETA DEBUG BEGIN: New: - Add fstream.patch to resolve source build failure with new compiler BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ descent3.spec ++++++ --- /var/tmp/diff_new_pack.cO31sy/_old 2025-05-30 17:20:27.011077897 +0200 +++ /var/tmp/diff_new_pack.cO31sy/_new 2025-05-30 17:20:27.011077897 +0200 @@ -27,6 +27,7 @@ Source: https://github.com/jengelh/descent3/archive/%commit.tar.gz Source2: https://github.com/SergiusTheBest/plog/archive/e21baecd4753f14da64ede979c5a19302618b752.tar.gz Patch1: system-libacm.patch +Patch2: fstream.patch %if 0%{?suse_version} && 0%{?suse_version} < 1600 BuildRequires: gcc13-c++ Provides: bundled(plog) ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.cO31sy/_old 2025-05-30 17:20:27.047079418 +0200 +++ /var/tmp/diff_new_pack.cO31sy/_new 2025-05-30 17:20:27.047079418 +0200 @@ -1,5 +1,5 @@ -mtime: 1741298509 -commit: dabe1a6e481da7a64cea3130d77f66c5e9f09169abc6d28d2f26dc99b9f7bc7d +mtime: 1748500522 +commit: 4e58b21cccac537879b2765290f224bae7bd396ec558632bb8546e4947ea3116 url: https://src.opensuse.org/jengelh/descent3 revision: master ++++++ fstream.patch ++++++ >From e1a907bd64d700308e3a1625f0e0a5ddb1c22ef0 Mon Sep 17 00:00:00 2001 From: Jon Daniel <joneqdan...@gmail.com> Date: Thu, 8 May 2025 12:36:35 -0700 Subject: [PATCH] build: add missing #include to cure compile error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit References: https://github.com/DescentDevelopers/Descent3/pull/715 [g++-14 complains: mission_download.cpp:402:19: error: variable ‘std::fstream in’ has initializer but incomplete type 402 | std::fstream in(qualfile, std::ios::binary | std::ios::trunc | std::ios::out); –jengelh] --- Descent3/mission_download.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Descent3/mission_download.cpp b/Descent3/mission_download.cpp index 52e408e4..7343ee8d 100644 --- a/Descent3/mission_download.cpp +++ b/Descent3/mission_download.cpp @@ -120,6 +120,7 @@ #include <cstdio> #include <future> +#include <fstream> #include "mem.h" #include "args.h" -- 2.49.0