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 6343315814C for ; Wed, 25 Oct 2023 08:37:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AFA52BC01B; Wed, 25 Oct 2023 08:37:36 +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 0E7EF2BC01B for ; Wed, 25 Oct 2023 08:37:36 +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 112DB335D17 for ; Wed, 25 Oct 2023 08:37:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82A3D12CA for ; Wed, 25 Oct 2023 08:37:33 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1698223040.2d23ce0f6769a00197db3e28117a7e809dc92828.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/bitcoin-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/bitcoin-core/bitcoin-core-25.1-r1.ebuild net-p2p/bitcoin-core/bitcoin-core-25.1.ebuild X-VCS-Directories: net-p2p/bitcoin-core/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 2d23ce0f6769a00197db3e28117a7e809dc92828 X-VCS-Branch: master Date: Wed, 25 Oct 2023 08:37:33 +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: 5d0d5145-afc6-4fbc-b20c-68fa2806be6f X-Archives-Hash: 41841549a208f17cd341c3b80f720ad2 commit: 2d23ce0f6769a00197db3e28117a7e809dc92828 Author: Matt Whitlock mattwhitlock name> AuthorDate: Tue Oct 24 15:46:17 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Oct 25 08:37:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d23ce0f net-p2p/bitcoin-core: install rpcauth.py to doc dir Closes: https://bugs.gentoo.org/757102 Signed-off-by: Matt Whitlock mattwhitlock.name> Signed-off-by: Florian Schmaus gentoo.org> .../{bitcoin-core-25.1.ebuild => bitcoin-core-25.1-r1.ebuild} | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/net-p2p/bitcoin-core/bitcoin-core-25.1.ebuild b/net-p2p/bitcoin-core/bitcoin-core-25.1-r1.ebuild similarity index 98% rename from net-p2p/bitcoin-core/bitcoin-core-25.1.ebuild rename to net-p2p/bitcoin-core/bitcoin-core-25.1-r1.ebuild index a5818124e34f..5eadbf6fddce 100644 --- a/net-p2p/bitcoin-core/bitcoin-core-25.1.ebuild +++ b/net-p2p/bitcoin-core/bitcoin-core-25.1-r1.ebuild @@ -191,6 +191,12 @@ src_install() { use systemtap && DOCS+=( doc/tracing.md ) use zeromq && DOCS+=( doc/zmq.md ) + if use daemon ; then + # https://bugs.gentoo.org/757102 + DOCS+=( share/rpcauth/rpcauth.py ) + docompress -x "/usr/share/doc/${PF}/rpcauth.py" + fi + default find "${ED}" -type f -name '*.la' -delete || die