Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qpdf for openSUSE:Factory checked in at 2025-05-06 16:38:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qpdf (Old) and /work/SRC/openSUSE:Factory/.qpdf.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qpdf" Tue May 6 16:38:20 2025 rev:78 rq:1274146 version:11.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/qpdf/qpdf.changes 2024-06-14 18:58:05.770895614 +0200 +++ /work/SRC/openSUSE:Factory/.qpdf.new.30101/qpdf.changes 2025-05-06 16:38:26.864691723 +0200 @@ -1,0 +2,6 @@ +Sat May 3 15:57:23 UTC 2025 - Friedrich Haubensak <[email protected]> + +- add qpdf-11.9.1-gcc15.patch from upstream to fix gcc-15 compile + time error + +------------------------------------------------------------------- New: ---- qpdf-11.9.1-gcc15.patch BETA DEBUG BEGIN: New: - add qpdf-11.9.1-gcc15.patch from upstream to fix gcc-15 compile time error BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qpdf.spec ++++++ --- /var/tmp/diff_new_pack.GbFYV9/_old 2025-05-06 16:38:28.048741348 +0200 +++ /var/tmp/diff_new_pack.GbFYV9/_new 2025-05-06 16:38:28.060741850 +0200 @@ -27,6 +27,8 @@ Source: https://github.com/qpdf/qpdf/releases/download/v%{version}/qpdf-%{version}.tar.gz Source1: https://github.com/qpdf/qpdf/releases/download/v%{version}/qpdf-%{version}.tar.gz.asc Source2: qpdf.keyring +# PATCH-FIX-UPSTREAM +Patch1: qpdf-11.9.1-gcc15.patch BuildRequires: cmake BuildRequires: fdupes BuildRequires: gcc-c++ ++++++ qpdf-11.9.1-gcc15.patch ++++++ github.com/qpdf/qpdf/pull/1259 github.com/qpdf/qpdf/commit/6918f0b >From 6918f0b7eb0160059d712ee19ba0ce2d65b9f89c Mon Sep 17 00:00:00 2001 From: Christopher Fore <[email protected]> Date: Mon, 5 Aug 2024 09:41:50 -0400 Subject: [PATCH] libtests: include cstdint for GCC 15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GCC 15 starts to no longer include this by default, requiring it to be explicitly included. Error message: libtests/cxx11.cc:75:16: error: âuint8_tâ was not declared in this scope 75 | check_size<uint8_t>(1, false); | ^~~~~~~ libtests/cxx11.cc:10:1: note: âuint8_tâ is defined in header â<cstdint>â; this is probably fixable by adding â#include <cstdint>â 9 | #include <regex> +++ |+#include <cstdint> 10 | #include <type_traits> Signed-off-by: Christopher Fore <[email protected]> --- libtests/cxx11.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libtests/cxx11.cc b/libtests/cxx11.cc index 59c74fa86..953ad00f9 100644 --- a/libtests/cxx11.cc +++ b/libtests/cxx11.cc @@ -1,5 +1,6 @@ #include <qpdf/assert_test.h> +#include <cstdint> #include <cstdlib> #include <cstring> #include <functional>
