Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package widelands for openSUSE:Factory checked in at 2021-10-12 21:49:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/widelands (Old) and /work/SRC/openSUSE:Factory/.widelands.new.2443 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "widelands" Tue Oct 12 21:49:56 2021 rev:10 rq:924902 version:1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/widelands/widelands.changes 2021-08-23 10:08:47.704202653 +0200 +++ /work/SRC/openSUSE:Factory/.widelands.new.2443/widelands.changes 2021-10-12 21:51:20.076041899 +0200 @@ -1,0 +2,6 @@ +Tue Oct 12 09:19:25 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Add upstream patch to fix build on Tumbleweed: + * 316eaea20975436.patch + +------------------------------------------------------------------- New: ---- 316eaea20975436.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ widelands.spec ++++++ --- /var/tmp/diff_new_pack.PKSl0N/_old 2021-10-12 21:51:25.436049572 +0200 +++ /var/tmp/diff_new_pack.PKSl0N/_new 2021-10-12 21:51:25.440049578 +0200 @@ -23,6 +23,8 @@ License: GPL-2.0-or-later URL: https://www.widelands.org Source0: https://github.com/%{name}/%{name}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM -- add missing 'map' include +Patch0: 316eaea20975436.patch BuildRequires: SDL2_gfx-devel BuildRequires: SDL2_image-devel BuildRequires: SDL2_mixer-devel @@ -83,7 +85,8 @@ operation. %prep -%setup -q +%autosetup -p1 + sed -i '/wl_add_flag(WL_COMPILE_DIAGNOSTICS "-Werror=uninitialized")/d' CMakeLists.txt sed -i 's/\(install(TARGETS ${NAME} DESTINATION \)"."\( COMPONENT ExecutableFiles)\)/\1bin\2/' cmake/WlFunctions.cmake sed -i 's#../share#share#g' xdg/CMakeLists.txt ++++++ 316eaea20975436.patch ++++++ >From 316eaea209754368a57f445ea4dd016ecf8eded6 Mon Sep 17 00:00:00 2001 From: matthiakl <t-m...@mailpost.spdns.org> Date: Sat, 14 Aug 2021 19:24:08 +0200 Subject: [PATCH] Added missing direct incude (#5025) --- src/network/bufferedconnection.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/network/bufferedconnection.h b/src/network/bufferedconnection.h index fe974b9ea54..7e1ecf87e4d 100644 --- a/src/network/bufferedconnection.h +++ b/src/network/bufferedconnection.h @@ -20,6 +20,7 @@ #ifndef WL_NETWORK_BUFFEREDCONNECTION_H #define WL_NETWORK_BUFFEREDCONNECTION_H +#include <map> #include <memory> #include <mutex> #include <thread>