Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package bitcoin for openSUSE:Factory checked in at 2023-04-11 13:51:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bitcoin (Old) and /work/SRC/openSUSE:Factory/.bitcoin.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bitcoin" Tue Apr 11 13:51:51 2023 rev:48 rq:1078364 version:24.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/bitcoin/bitcoin.changes 2022-12-21 16:07:20.834783154 +0100 +++ /work/SRC/openSUSE:Factory/.bitcoin.new.19717/bitcoin.changes 2023-04-11 13:51:59.931652547 +0200 @@ -1,0 +2,5 @@ +Thu Apr 6 11:56:11 UTC 2023 - Dominique Leuenberger <[email protected]> + +- Add 392dc68e.patch: Fix build with gcc 13. + +------------------------------------------------------------------- New: ---- 392dc68e.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bitcoin.spec ++++++ --- /var/tmp/diff_new_pack.sn6Sel/_old 2023-04-11 13:52:00.739657228 +0200 +++ /var/tmp/diff_new_pack.sn6Sel/_new 2023-04-11 13:52:00.747657274 +0200 @@ -1,7 +1,7 @@ # # spec file for package bitcoin # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # Copyright (c) 2011-2014 P Rusnak <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -41,6 +41,7 @@ Source3: %{base}d.conf Source4: %{base}.conf Patch0: harden_bitcoind.service.patch +Patch1: https://github.com/bitcoin/bitcoin/commit/392dc68e.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: gcc-c++ ++++++ 392dc68e.patch ++++++ >From fadeb6b103cb441e0e91ef506ef29febabb10715 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^[email protected]> Date: Thu, 19 Jan 2023 19:35:43 +0100 Subject: [PATCH] Add missing includes to fix gcc-13 compile error --- src/support/lockedpool.cpp | 3 +++ src/support/lockedpool.h | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/support/lockedpool.cpp b/src/support/lockedpool.cpp index fb59324f7a890..8b057433309fe 100644 --- a/src/support/lockedpool.cpp +++ b/src/support/lockedpool.cpp @@ -19,6 +19,9 @@ #endif #include <algorithm> +#include <limits> +#include <stdexcept> +#include <utility> #ifdef ARENA_DEBUG #include <iomanip> #include <iostream> diff --git a/src/support/lockedpool.h b/src/support/lockedpool.h index 03e4e371a3a98..66fbc218abfd9 100644 --- a/src/support/lockedpool.h +++ b/src/support/lockedpool.h @@ -5,11 +5,11 @@ #ifndef BITCOIN_SUPPORT_LOCKEDPOOL_H #define BITCOIN_SUPPORT_LOCKEDPOOL_H -#include <stdint.h> +#include <cstddef> #include <list> #include <map> -#include <mutex> #include <memory> +#include <mutex> #include <unordered_map> /**
