Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package emptyepsilon for openSUSE:Factory checked in at 2026-08-04 21:38:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/emptyepsilon (Old) and /work/SRC/openSUSE:Factory/.emptyepsilon.new.16738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "emptyepsilon" Tue Aug 4 21:38:05 2026 rev:8 rq:1369454 version:2024.12.08 Changes: -------- --- /work/SRC/openSUSE:Factory/emptyepsilon/emptyepsilon.changes 2025-08-12 17:05:11.212793006 +0200 +++ /work/SRC/openSUSE:Factory/.emptyepsilon.new.16738/emptyepsilon.changes 2026-08-04 21:39:59.091854121 +0200 @@ -1,0 +2,5 @@ +Tue Aug 4 09:38:46 UTC 2026 - Dominik Heidler <[email protected]> + +- Add force_cxx_17.patch: Add CXX_STANDARD to force C++17 + +------------------------------------------------------------------- New: ---- force_cxx_17.patch ----------(New B)---------- New: - Add force_cxx_17.patch: Add CXX_STANDARD to force C++17 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ emptyepsilon.spec ++++++ --- /var/tmp/diff_new_pack.4rotVF/_old 2026-08-04 21:40:02.887987129 +0200 +++ /var/tmp/diff_new_pack.4rotVF/_new 2026-08-04 21:40:02.907987830 +0200 @@ -1,7 +1,7 @@ # # spec file for package emptyepsilon # -# 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 @@ -34,6 +34,7 @@ Patch3: lua_fix_multivar.patch Patch4: lua_add_commandBypassSelfDestruct.patch Patch5: lua_fix_commandCombatManeuver.patch +Patch101: force_cxx_17.patch BuildRequires: bsdtar BuildRequires: cmake BuildRequires: fdupes @@ -58,9 +59,10 @@ %prep # extract EE and SP inside the EE dir %setup -q -a1 -n EmptyEpsilon-EE-%{version} +%autopatch -p1 -m100 find -name .gitignore -delete patch -d SeriousProton-EE-%{version} -p1 < %{S:6} -%autopatch -p1 +%autopatch -p1 -M99 # extract bundled dependencies mkdir -p SeriousProton/externals/basis ++++++ force_cxx_17.patch ++++++ >From de3d6d8e93ebf9986f9f77bd66e9c6671194572f Mon Sep 17 00:00:00 2001 From: oznogon <[email protected]> Date: Sat, 9 May 2026 08:33:16 -0700 Subject: [PATCH] Add CXX_STANDARD to force C++17 --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ddb7430e31..4bf481b41e 100644 @@ -11,6 +11,9 @@ cmake_minimum_required(VERSION 3.8 FATAL_ERROR) +# Force C++17 across all compilers +set(CMAKE_CXX_STANDARD 17) + set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) # Set a default version.
