Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libopenraw for openSUSE:Factory checked in at 2023-04-11 13:51:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libopenraw (Old) and /work/SRC/openSUSE:Factory/.libopenraw.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libopenraw" Tue Apr 11 13:51:29 2023 rev:36 rq:1078377 version:0.3.4 Changes: -------- --- /work/SRC/openSUSE:Factory/libopenraw/libopenraw.changes 2023-03-08 14:52:28.882646241 +0100 +++ /work/SRC/openSUSE:Factory/.libopenraw.new.19717/libopenraw.changes 2023-04-11 13:51:45.323567913 +0200 @@ -1,0 +2,6 @@ +Mon Apr 10 21:06:06 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Add 03f8270d6bb255ca6618505e83169ab9d95ccef1.patch: Include + stdint.h where needed. This fixes an issue building with gcc 13. + +------------------------------------------------------------------- New: ---- 03f8270d6bb255ca6618505e83169ab9d95ccef1.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libopenraw.spec ++++++ --- /var/tmp/diff_new_pack.BUtkWh/_old 2023-04-11 13:51:47.263579153 +0200 +++ /var/tmp/diff_new_pack.BUtkWh/_new 2023-04-11 13:51:47.267579176 +0200 @@ -29,6 +29,9 @@ # cd lib/mp4 && cargo vendor -s Cargo.toml -s mp4parse/Cargo.toml -s mp4parse_capi/Cargo.toml && tar cf vendor.tar.xz vendor Source3: vendor.tar.xz Source99: baselibs.conf +# PATCH-FIX-UPSTREAM 03f8270d6bb255ca6618505e83169ab9d95ccef1.patch -- Include stdint.h where needed +Patch0: 03f8270d6bb255ca6618505e83169ab9d95ccef1.patch + BuildRequires: autoconf >= 2.69 BuildRequires: cargo BuildRequires: gcc-c++ @@ -79,7 +82,7 @@ libopenraw is a library that aim at decoding digital camera RAW files. %prep -%autosetup -a3 +%autosetup -a3 -p1 mv vendor lib/mp4/ cd lib/mp4 sed -i 's/byteorder = "1.2.1"/byteorder = "1.2.2"/' mp4parse/Cargo.toml ++++++ 03f8270d6bb255ca6618505e83169ab9d95ccef1.patch ++++++ >From 03f8270d6bb255ca6618505e83169ab9d95ccef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hubert=20Figui=C3=A8re?= <h...@figuiere.net> Date: Tue, 21 Feb 2023 18:45:00 -0500 Subject: [PATCH] Issue #12 - Include stdint.h where needed - This fixes an issue building with gcc 13 https://gitlab.freedesktop.org/libopenraw/libopenraw/-/issues/12 --- lib/trace.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/trace.hpp b/lib/trace.hpp index d56c286e..9dae1181 100644 --- a/lib/trace.hpp +++ b/lib/trace.hpp @@ -1,7 +1,7 @@ /* * libopenraw - trace.hpp * - * Copyright (C) 2006-2020 Hubert Figuière + * Copyright (C) 2006-2023 Hubert Figuière * * This library is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -20,6 +20,8 @@ #pragma once +#include <stdint.h> + #include <string> #include <vector> #include <algorithm> -- GitLab