Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package liborcus for openSUSE:Factory checked in at 2023-03-08 14:51:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/liborcus (Old) and /work/SRC/openSUSE:Factory/.liborcus.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "liborcus" Wed Mar 8 14:51:20 2023 rev:37 rq:1069835 version:0.17.2 Changes: -------- --- /work/SRC/openSUSE:Factory/liborcus/liborcus.changes 2022-02-24 18:22:50.210668185 +0100 +++ /work/SRC/openSUSE:Factory/.liborcus.new.31432/liborcus.changes 2023-03-08 14:51:21.630280028 +0100 @@ -1,0 +2,5 @@ +Mon Mar 6 19:25:17 UTC 2023 - Martin Liška <[email protected]> + +- Add include fix gcc13-fix.patch for GCC 13 compiler. + +------------------------------------------------------------------- New: ---- gcc13-fix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ liborcus.spec ++++++ --- /var/tmp/diff_new_pack.k6Q85B/_old 2023-03-08 14:51:22.086282511 +0100 +++ /var/tmp/diff_new_pack.k6Q85B/_new 2023-03-08 14:51:22.090282533 +0100 @@ -1,7 +1,7 @@ # # spec file for package liborcus # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,6 +26,7 @@ URL: https://gitlab.com/orcus/orcus/ Source: http://kohei.us/files/orcus/src/%{name}-%{version}.tar.xz Patch0: no-std-filesystem.patch +Patch1: gcc13-fix.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: coreutils @@ -90,6 +91,7 @@ %prep %setup -q %patch0 -p1 +%patch1 -p1 %build libtoolize --force --copy ++++++ gcc13-fix.patch ++++++ diff --git a/include/orcus/types.hpp b/include/orcus/types.hpp index f5ec320de541050d333dc7699b1991167ea2d88c..46edd1ca04bdebf92abcd2a46f05c370ab2c0c3a 100644 --- a/include/orcus/types.hpp +++ b/include/orcus/types.hpp @@ -8,6 +8,7 @@ #ifndef INCLUDED_ORCUS_TYPES_HPP #define INCLUDED_ORCUS_TYPES_HPP +#include <cstdint> #include <cstdlib> #include <vector> #include <string> diff --git a/include/orcus/base64.hpp b/include/orcus/base64.hpp index f880b7f..398fafb 100644 --- a/include/orcus/base64.hpp +++ b/include/orcus/base64.hpp @@ -11,6 +11,7 @@ #include "env.hpp" #include <vector> #include <string> +#include <cstdint> namespace orcus {
