Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package 0ad for openSUSE:Factory checked in at 2024-11-24 11:04:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/0ad (Old) and /work/SRC/openSUSE:Factory/.0ad.new.28523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "0ad" Sun Nov 24 11:04:19 2024 rev:13 rq:1225916 version:0.0.26 Changes: -------- --- /work/SRC/openSUSE:Factory/0ad/0ad.changes 2024-04-26 23:27:27.565361480 +0200 +++ /work/SRC/openSUSE:Factory/.0ad.new.28523/0ad.changes 2024-11-24 11:04:26.263437887 +0100 @@ -1,0 +2,5 @@ +Fri Nov 22 09:16:50 UTC 2024 - Dominique Leuenberger <dims...@opensuse.org> + +- Add 0ad-link-icu-76.patch: Fix build against ICU 76.x. + +------------------------------------------------------------------- New: ---- 0ad-link-icu-76.patch BETA DEBUG BEGIN: New: - Add 0ad-link-icu-76.patch: Fix build against ICU 76.x. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ 0ad.spec ++++++ --- /var/tmp/diff_new_pack.SfYcoU/_old 2024-11-24 11:04:27.191476469 +0100 +++ /var/tmp/diff_new_pack.SfYcoU/_new 2024-11-24 11:04:27.195476636 +0100 @@ -52,6 +52,8 @@ Patch5: fix-fmt10-build.patch # PATCH-FIX-UPSTREAM -- Fix build with boost 1.85 Patch6: fix-boost-1.85-build.patch +# PATCH-FIX-UPSTREAM -- Fix build with icu 76.x +Patch7: 0ad-link-icu-76.patch BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: libXcursor-devel @@ -112,6 +114,7 @@ %if %{pkg_vcmp libboost_filesystem-devel >= 1.74} %patch -P 6 -p1 %endif +%patch -P 7 -p1 %build export CFLAGS="%{optflags}" ++++++ 0ad-link-icu-76.patch ++++++ Index: 0ad-0.0.26-alpha/build/premake/extern_libs5.lua =================================================================== --- 0ad-0.0.26-alpha.orig/build/premake/extern_libs5.lua +++ 0ad-0.0.26-alpha/build/premake/extern_libs5.lua @@ -396,6 +396,7 @@ extern_lib_defs = { add_default_include_paths("icu") else pkgconfig.add_includes("icu-i18n") + pkgconfig.add_includes("icu-uc") end end, link_settings = function() @@ -408,6 +409,7 @@ extern_lib_defs = { }) else pkgconfig.add_links("icu-i18n") + pkgconfig.add_links("icu-uc") end end, },