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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CE06815ACFB for ; Mon, 10 Apr 2023 04:11:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 025CDE0855; Mon, 10 Apr 2023 04:11:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D2A64E084E for ; Mon, 10 Apr 2023 04:11:12 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A80C340F08 for ; Mon, 10 Apr 2023 04:11:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D71D9A35 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: <1681099520.2d9e3f5a95e66bd492349e29a066d25ae7744a20.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/bitcoin-qt/, net-p2p/bitcoin-qt/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/bitcoin-qt/bitcoin-qt-24.0.1.ebuild net-p2p/bitcoin-qt/files/24.0.1-gcc13.patch X-VCS-Directories: net-p2p/bitcoin-qt/ net-p2p/bitcoin-qt/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2d9e3f5a95e66bd492349e29a066d25ae7744a20 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: 7cd03094-6c22-4ef5-824d-40ec8c6bde1f X-Archives-Hash: 30ad28d2d9a0ea0c86921e5ced55555e commit: 2d9e3f5a95e66bd492349e29a066d25ae7744a20 Author: Sam James gentoo org> AuthorDate: Mon Apr 10 04:05:20 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 10 04:05:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d9e3f5a net-p2p/bitcoin-qt: fix build w/ gcc 13 Closes: https://bugs.gentoo.org/900246 Signed-off-by: Sam James gentoo.org> net-p2p/bitcoin-qt/bitcoin-qt-24.0.1.ebuild | 1 + net-p2p/bitcoin-qt/files/24.0.1-gcc13.patch | 39 +++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/net-p2p/bitcoin-qt/bitcoin-qt-24.0.1.ebuild b/net-p2p/bitcoin-qt/bitcoin-qt-24.0.1.ebuild index 76fdba8ff317..bd11d93118f0 100644 --- a/net-p2p/bitcoin-qt/bitcoin-qt-24.0.1.ebuild +++ b/net-p2p/bitcoin-qt/bitcoin-qt-24.0.1.ebuild @@ -68,6 +68,7 @@ DOCS=( PATCHES=( "${FILESDIR}"/24.0.1-syslibs.patch + "${FILESDIR}"/24.0.1-gcc13.patch ) pkg_pretend() { diff --git a/net-p2p/bitcoin-qt/files/24.0.1-gcc13.patch b/net-p2p/bitcoin-qt/files/24.0.1-gcc13.patch new file mode 100644 index 000000000000..39cf81b14953 --- /dev/null +++ b/net-p2p/bitcoin-qt/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 + + /**