Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rawtherapee for openSUSE:Factory checked in at 2023-03-21 17:44:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rawtherapee (Old) and /work/SRC/openSUSE:Factory/.rawtherapee.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rawtherapee" Tue Mar 21 17:44:31 2023 rev:8 rq:1073527 version:5.9 Changes: -------- --- /work/SRC/openSUSE:Factory/rawtherapee/rawtherapee.changes 2022-11-30 15:01:04.821744332 +0100 +++ /work/SRC/openSUSE:Factory/.rawtherapee.new.31432/rawtherapee.changes 2023-03-21 17:44:51.574786156 +0100 @@ -1,0 +2,6 @@ +Tue Mar 21 08:29:17 UTC 2023 - Guillaume GARDET <guillaume.gar...@opensuse.org> + +- Backport patch to fix build with gcc13 on aarch64: + * 6670.patch + +------------------------------------------------------------------- New: ---- 6670.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rawtherapee.spec ++++++ --- /var/tmp/diff_new_pack.rjYURW/_old 2023-03-21 17:44:52.314789651 +0100 +++ /var/tmp/diff_new_pack.rjYURW/_new 2023-03-21 17:44:52.318789670 +0100 @@ -1,7 +1,7 @@ # # spec file for package rawtherapee # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # Copyright (c) 2022 Marcin Bajor # # All modifications and additions to the file contributed by third parties @@ -31,6 +31,8 @@ Group: Productivity/Graphics/Other URL: https://rawtherapee.com Source0: https://rawtherapee.com/shared/source/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM - Fix build with gcc13 - https://github.com/Beep6581/RawTherapee/pull/6670 +Patch1: 6670.patch BuildRequires: cmake BuildRequires: fftw3-devel BuildRequires: glib2-devel @@ -153,6 +155,7 @@ %prep %setup -q +%patch1 -p1 %build test -x "$(type -p gcc-4.9)" && export CC=gcc-4.9 ++++++ 6670.patch ++++++ >From 311f3422fd25b8306a11186d866d902057fbccb2 Mon Sep 17 00:00:00 2001 From: Mattia Verga <mattia.ve...@tiscali.it> Date: Wed, 25 Jan 2023 14:16:19 +0100 Subject: [PATCH] Add missing include for GCC13 compatibility Signed-off-by: Mattia Verga <mattia.ve...@tiscali.it> Guillaume: Updated to apply the patch --- rtengine/dcraw.h | 1 + 1 file changed, 1 insertion(+) diff --git a/rtengine/dcraw.h b/rtengine/dcraw.h index e0a6cda929..aadc0b9698 100644 --- a/rtengine/dcraw.h +++ b/rtengine/dcraw.h @@ -21,7 +21,7 @@ #include "myfile.h" #include <csetjmp> - +#include <cstdint> class DCraw {