Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fife for openSUSE:Factory checked in at 2021-10-12 21:49:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fife (Old) and /work/SRC/openSUSE:Factory/.fife.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fife" Tue Oct 12 21:49:27 2021 rev:5 rq:924668 version:0.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/fife/fife.changes 2019-09-19 15:51:48.695281474 +0200 +++ /work/SRC/openSUSE:Factory/.fife.new.2443/fife.changes 2021-10-12 21:50:46.687994102 +0200 @@ -1,0 +2,6 @@ +Mon Oct 11 13:18:28 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Add upstream patch: + * fife-boost_1_77.patch + +------------------------------------------------------------------- New: ---- fife-boost_1_77.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fife.spec ++++++ --- /var/tmp/diff_new_pack.txxpwl/_old 2021-10-12 21:50:47.379995092 +0200 +++ /var/tmp/diff_new_pack.txxpwl/_new 2021-10-12 21:50:47.383995098 +0200 @@ -30,6 +30,8 @@ # PATCH-FIX-UPSTREAM swig4.patch -- removed flags that are not supported with swig 4.0 # See https://github.com/fifengine/fifengine/commit/d14f232f4cd9a00b05d6872957070e8c020f515d Patch0: swig4.patch +# PATCH-FIX-UPSTREAM +Patch1: fife-boost_1_77.patch BuildRequires: cmake BuildRequires: fifechan-devel BuildRequires: gcc-c++ @@ -97,6 +99,7 @@ %if 0%{?suse_version} > 1500 %patch0 -p1 %endif +%patch1 -p1 %build %define __builddir py3 ++++++ fife-boost_1_77.patch ++++++ >From 8072f18a9bf4e75c3e1b197b6ccda11e82954460 Mon Sep 17 00:00:00 2001 From: Lars Wendler <[email protected]> Date: Tue, 31 Aug 2021 17:45:12 +0200 Subject: [PATCH] Fix build against boost-1.77.0 boost-1.77.0 no longer includes <algorithm> Closes: #1080 Signed-off-by: Lars Wendler <[email protected]> --- engine/core/vfs/zip/zipnode.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/core/vfs/zip/zipnode.cpp b/engine/core/vfs/zip/zipnode.cpp index a1b14abbd..e1613e7f4 100644 --- a/engine/core/vfs/zip/zipnode.cpp +++ b/engine/core/vfs/zip/zipnode.cpp @@ -28,6 +28,7 @@ #include "vfs/fife_boost_filesystem.h" #include "zipnode.h" +#include <algorithm> namespace { /** helper function to find a value in a ZipNodeContainer
