Hello community,

here is the log from the commit of package libetonyek for openSUSE:Factory 
checked in at 2020-09-01 20:01:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libetonyek (Old)
 and      /work/SRC/openSUSE:Factory/.libetonyek.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libetonyek"

Tue Sep  1 20:01:59 2020 rev:19 rq:828646 version:0.1.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/libetonyek/libetonyek.changes    2019-08-22 
15:11:07.858447983 +0200
+++ /work/SRC/openSUSE:Factory/.libetonyek.new.3399/libetonyek.changes  
2020-09-01 20:02:05.492444342 +0200
@@ -1,0 +2,6 @@
+Fri Aug 21 21:24:58 UTC 2020 - Dirk Mueller <dmuel...@suse.com>
+
+- add 0001-add-missing-include-for-std-for_each.patch to fix build
+  issue with newer boost 
+
+-------------------------------------------------------------------

New:
----
  0001-add-missing-include-for-std-for_each.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libetonyek.spec ++++++
--- /var/tmp/diff_new_pack.0LoeSq/_old  2020-09-01 20:02:07.692445371 +0200
+++ /var/tmp/diff_new_pack.0LoeSq/_new  2020-09-01 20:02:07.700445375 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libetonyek
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,8 @@
 Group:          Productivity/Publishing/Word
 URL:            https://wiki.documentfoundation.org/DLP/Libraries/libetonyek
 Source0:        
http://dev-www.libreoffice.org/src/%{name}/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM: https://gerrit.libreoffice.org/c/libetonyek/+/94450
+Patch0:         0001-add-missing-include-for-std-for_each.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  doxygen
@@ -89,6 +91,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 autoreconf -fvi

++++++ 0001-add-missing-include-for-std-for_each.patch ++++++
>From 4b4d879a6db69ea05b89fdf99df8cb5d902d16b6 Mon Sep 17 00:00:00 2001
From: Roland Illig <roland.il...@gmx.de>
Date: Tue, 19 May 2020 08:43:39 +0200
Subject: [PATCH] add missing include for std::for_each

On NetBSD 8.0 x86_64, gcc complains:
 NUM3Parser.cpp: In member function 'virtual bool 
libetonyek::NUM3Parser::parseDocument()':
 NUM3Parser.cpp:46:3: error: 'for_each' is not a member of 'std'
   std::for_each(sheetListRefs.begin(), sheetListRefs.end(), 
std::bind(&NUM3Parser::parseSheet, this, std::placeholders::_1));

Change-Id: I723ba1bcbd10ed9215ceea8c5b224fdc5242be65
Reviewed-on: https://gerrit.libreoffice.org/c/libetonyek/+/94450
Tested-by: Thorsten Behrens <thorsten.behr...@cib.de>
Reviewed-by: Thorsten Behrens <thorsten.behr...@cib.de>
---
 src/lib/NUM3Parser.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/lib/NUM3Parser.cpp b/src/lib/NUM3Parser.cpp
index 66fb195..c19b611 100644
--- a/src/lib/NUM3Parser.cpp
+++ b/src/lib/NUM3Parser.cpp
@@ -7,6 +7,7 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#include <algorithm>
 #include <functional>
 
 #include "NUM3Parser.h"
-- 
2.28.0


Reply via email to