Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package blender for openSUSE:Factory checked in at 2023-02-03 22:06:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/blender (Old) and /work/SRC/openSUSE:Factory/.blender.new.4462 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "blender" Fri Feb 3 22:06:06 2023 rev:171 rq:1063029 version:3.4.1 Changes: -------- --- /work/SRC/openSUSE:Factory/blender/blender.changes 2023-01-19 16:44:05.897735895 +0100 +++ /work/SRC/openSUSE:Factory/.blender.new.4462/blender.changes 2023-02-03 22:06:29.451716499 +0100 @@ -1,0 +2,6 @@ +Fri Feb 3 07:33:29 UTC 2023 - Stefan Brüns <stefan.bru...@rwth-aachen.de> + +- Fix build with Boost >= 1.18, add upstream + Add_missing_iostream_header.patch + +------------------------------------------------------------------- New: ---- Add_missing_iostream_header.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ blender.spec ++++++ --- /var/tmp/diff_new_pack.DvujGz/_old 2023-02-03 22:06:29.923719284 +0100 +++ /var/tmp/diff_new_pack.DvujGz/_new 2023-02-03 22:06:29.927719308 +0100 @@ -68,6 +68,7 @@ %bcond_without opensubdiv %bcond_without openvdb %bcond_without osl +# https://github.com/audaspace/audaspace/issues/13 %bcond_with system_audaspace %bcond_without system_glew # TBD: contributions welcome @@ -95,6 +96,8 @@ Source99: series # PATCH-FIX-OPENSUSE https://developer.blender.org/D5858 Patch0: reproducible.patch +# PATCH-FIX-UPSTREAM +Patch1: https://github.com/blender/blender/commit/79837c5ed4b5.patch#/Add_missing_iostream_header.patch BuildRequires: %{py3pkg}-devel BuildRequires: %{py3pkg}-numpy-devel BuildRequires: %{py3pkg}-requests @@ -222,7 +225,7 @@ BuildRequires: openCOLLADA-devel %endif %if %{with embree} -BuildRequires: embree-devel +BuildRequires: cmake(embree) %endif %if %{with oidn} BuildRequires: OpenImageDenoise-devel ++++++ Add_missing_iostream_header.patch ++++++ >From 79837c5ed4b57925bf6c6bb9e7c2248f6f52bbb0 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg <darkdefe...@gmail.com> Date: Wed, 4 Jan 2023 15:23:26 +0100 Subject: [PATCH] Fix building with boost >= 1.81 In boost 1.81 they no longer implicitly include <iostream> anymore. --- intern/locale/boost_locale_wrapper.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/intern/locale/boost_locale_wrapper.cpp b/intern/locale/boost_locale_wrapper.cpp index fb0e194352a7..80e8d89799a8 100644 --- a/intern/locale/boost_locale_wrapper.cpp +++ b/intern/locale/boost_locale_wrapper.cpp @@ -6,6 +6,7 @@ */ #include <boost/locale.hpp> +#include <iostream> #include <stdio.h> #include "boost_locale_wrapper.h"