Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package warzone2100 for openSUSE:Factory checked in at 2025-07-10 22:10:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/warzone2100 (Old) and /work/SRC/openSUSE:Factory/.warzone2100.new.7373 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "warzone2100" Thu Jul 10 22:10:38 2025 rev:41 rq:1291521 version:4.5.5 Changes: -------- --- /work/SRC/openSUSE:Factory/warzone2100/warzone2100.changes 2025-05-08 20:40:06.108782914 +0200 +++ /work/SRC/openSUSE:Factory/.warzone2100.new.7373/warzone2100.changes 2025-07-10 22:10:48.588374573 +0200 @@ -1,0 +2,5 @@ +Tue Jun 24 04:59:49 UTC 2025 - Carsten Ziepke <kiel...@gmail.com> + +- Add warzone2100-SQLiteCPP-gcc15.patch, fix building with gcc15 + +------------------------------------------------------------------- New: ---- warzone2100-SQLiteCPP-gcc15.patch ----------(New B)---------- New: - Add warzone2100-SQLiteCPP-gcc15.patch, fix building with gcc15 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ warzone2100.spec ++++++ --- /var/tmp/diff_new_pack.Qsg92w/_old 2025-07-10 22:10:56.472702491 +0200 +++ /var/tmp/diff_new_pack.Qsg92w/_new 2025-07-10 22:10:56.476702656 +0200 @@ -32,6 +32,8 @@ URL: http://wz2100.net/ Source: https://github.com/Warzone2100/warzone2100/releases/download/%{version}/warzone2100_src.tar.xz Source99: %{name}.changes +# PATCH-FIX-UPSTREAM warzone2100-SQLiteCPP-gcc15.patch - Fix building with gcc15 - https://src.fedoraproject.org/rpms/warzone2100/raw/rawhide/f/SQLiteCPP-gcc15.patch +Patch0: warzone2100-SQLiteCPP-gcc15.patch BuildRequires: asciidoc BuildRequires: cmake >= 3.5 BuildRequires: fdupes ++++++ warzone2100-SQLiteCPP-gcc15.patch ++++++ >From a4287a72e12ff64aec2b6cc418a3726bb1a4b7a4 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich <sly...@gmail.com> Date: Sat, 7 Sep 2024 14:31:27 +0100 Subject: [PATCH] SQLiteCpp/Statement.h: add missing `<cstdint>` include Without the change the build fails on `gcc-15` as: [ 5%] Building CXX object CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.o In file included from /build/source/include/SQLiteCpp/Column.h:14, from /build/source/include/SQLiteCpp/Database.h:14, from /build/source/include/SQLiteCpp/Backup.h:15, from /build/source/src/Backup.cpp:12: /build/source/include/SQLiteCpp/Statement.h:132:39: error: 'uint32_t' does not name a type 132 | void bind(const int aIndex, const uint32_t aValue); | ^~~~~~~~ /build/source/include/SQLiteCpp/Statement.h:20:1: note: 'uint32_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>' 19 | #include <memory> +++ |+#include <cstdint> 20 | --- include/SQLiteCpp/Statement.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/SQLiteCpp/Statement.h b/include/SQLiteCpp/Statement.h index bb62a9f9..2f3adf7d 100644 --- a/3rdparty/SQLiteCpp/include/SQLiteCpp/Statement.h +++ b/3rdparty/SQLiteCpp/include/SQLiteCpp/Statement.h @@ -14,6 +14,7 @@ #include <SQLiteCpp/Exception.h> #include <SQLiteCpp/Utils.h> // SQLITECPP_PURE_FUNC +#include <cstdint> #include <string> #include <map> #include <memory>