From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B50F15ACFB for ; Mon, 10 Apr 2023 04:11:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB958E084E; Mon, 10 Apr 2023 04:11:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2C8D4E0848 for ; Mon, 10 Apr 2023 04:11:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7CF3B340EDE for ; Mon, 10 Apr 2023 04:11:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBB31A37 for ; Mon, 10 Apr 2023 04:11:08 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1681099574.cc8c224903f48c9154a66e70383ef72b706c2d38.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/bitcoin-cli/files/, net-p2p/bitcoin-cli/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/bitcoin-cli/bitcoin-cli-24.0.1-r1.ebuild net-p2p/bitcoin-cli/files/24.0.1-gcc13.patch X-VCS-Directories: net-p2p/bitcoin-cli/ net-p2p/bitcoin-cli/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cc8c224903f48c9154a66e70383ef72b706c2d38 X-VCS-Branch: master Date: Mon, 10 Apr 2023 04:11:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7f320eb5-4c7b-4f7c-828a-99bca081371f X-Archives-Hash: 6dd41692f575928a38639be84c8f5d06 commit: cc8c224903f48c9154a66e70383ef72b706c2d38 Author: Sam James gentoo org> AuthorDate: Mon Apr 10 04:06:14 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 10 04:06:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc8c2249 net-p2p/bitcoin-cli: fix build w/ gcc 13 Closes: https://bugs.gentoo.org/895814 Signed-off-by: Sam James gentoo.org> net-p2p/bitcoin-cli/bitcoin-cli-24.0.1-r1.ebuild | 1 + net-p2p/bitcoin-cli/files/24.0.1-gcc13.patch | 39 ++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/net-p2p/bitcoin-cli/bitcoin-cli-24.0.1-r1.ebuild b/net-p2p/bitcoin-cli/bitcoin-cli-24.0.1-r1.ebuild index 61cee04d2c9c..c93ec569cf67 100644 --- a/net-p2p/bitcoin-cli/bitcoin-cli-24.0.1-r1.ebuild +++ b/net-p2p/bitcoin-cli/bitcoin-cli-24.0.1-r1.ebuild @@ -29,6 +29,7 @@ DOCS=( doc/release-notes.md ) PATCHES=( "${FILESDIR}"/24.0.1-syslibs.patch + "${FILESDIR}"/24.0.1-gcc13.patch ) pkg_pretend() { diff --git a/net-p2p/bitcoin-cli/files/24.0.1-gcc13.patch b/net-p2p/bitcoin-cli/files/24.0.1-gcc13.patch new file mode 100644 index 000000000000..39cf81b14953 --- /dev/null +++ b/net-p2p/bitcoin-cli/files/24.0.1-gcc13.patch @@ -0,0 +1,39 @@ +https://bugs.gentoo.org/903781 +https://bugs.gentoo.org/900246 +https://bugs.gentoo.org/895814 +https://bugs.gentoo.org/894734 +https://github.com/bitcoin/bitcoin/commit/fadeb6b103cb441e0e91ef506ef29febabb10715 + +From fadeb6b103cb441e0e91ef506ef29febabb10715 Mon Sep 17 00:00:00 2001 +From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> +Date: Thu, 19 Jan 2023 19:35:43 +0100 +Subject: [PATCH] Add missing includes to fix gcc-13 compile error + +--- a/src/support/lockedpool.cpp ++++ b/src/support/lockedpool.cpp +@@ -19,6 +19,9 @@ + #endif + + #include ++#include ++#include ++#include + #ifdef ARENA_DEBUG + #include + #include +--- 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 ++#include + #include + #include +-#include + #include ++#include + #include + + /**