Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package 0ad for openSUSE:Factory checked in at 2025-09-20 22:04:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/0ad (Old) and /work/SRC/openSUSE:Factory/.0ad.new.27445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "0ad" Sat Sep 20 22:04:21 2025 rev:20 rq:1306072 version:0.27.1 Changes: -------- --- /work/SRC/openSUSE:Factory/0ad/0ad.changes 2025-07-21 20:02:57.405718602 +0200 +++ /work/SRC/openSUSE:Factory/.0ad.new.27445/0ad.changes 2025-09-20 22:04:43.508293529 +0200 @@ -1,0 +2,6 @@ +Thu Sep 18 18:17:55 UTC 2025 - Arjen de Korte <[email protected]> + +- Fix build with Boost 1.89.0 (Boost.System is headers only since 1.69.0) + + 0002-remove-boost-system-library.patch + +------------------------------------------------------------------- New: ---- 0002-remove-boost-system-library.patch ----------(New B)---------- New:- Fix build with Boost 1.89.0 (Boost.System is headers only since 1.69.0) + 0002-remove-boost-system-library.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ 0ad.spec ++++++ --- /var/tmp/diff_new_pack.iLPK4Y/_old 2025-09-20 22:04:44.672342355 +0200 +++ /var/tmp/diff_new_pack.iLPK4Y/_new 2025-09-20 22:04:44.676342523 +0200 @@ -44,11 +44,17 @@ Source1: premake-disable-rpath.patch Source100: 0ad-rpmlintrc Patch1: 0001-Enable-building-on-arbitrary-architectures.patch +%if 0%{?suse_version} >= 1600 +Patch2: 0002-remove-boost-system-library.patch +BuildRequires: boost-devel >= 1.69.0 +%endif BuildRequires: cmake BuildRequires: gcc%{?force_gcc_version}-c++ BuildRequires: libXcursor-devel BuildRequires: libboost_filesystem-devel +%if 0%{?suse_version} < 1600 BuildRequires: libboost_system-devel +%endif BuildRequires: libminiupnpc-devel BuildRequires: libpng-devel BuildRequires: pkgconfig ++++++ 0002-remove-boost-system-library.patch ++++++ diff -purN a/build/premake/extern_libs5.lua b/build/premake/extern_libs5.lua --- a/build/premake/extern_libs5.lua 2025-07-14 16:31:46.000000000 +0200 +++ b/build/premake/extern_libs5.lua 2025-09-18 20:38:10.348786852 +0200 @@ -248,9 +248,9 @@ extern_lib_defs = { add_default_links({ -- The following are not strictly link dependencies on all systems, but -- are included for compatibility with different versions of Boost - android_names = { "boost_filesystem-gcc-mt", "boost_system-gcc-mt" }, - unix_names = { os.findlib("boost_filesystem-mt") and "boost_filesystem-mt" or "boost_filesystem", os.findlib("boost_system-mt") and "boost_system-mt" or "boost_system" }, - osx_names = { "boost_filesystem", "boost_system" }, + android_names = { "boost_filesystem-gcc-mt" }, + unix_names = { os.findlib("boost_filesystem-mt") and "boost_filesystem-mt" or "boost_filesystem" }, + osx_names = { "boost_filesystem" }, }) end, },
