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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EC7AE1382C5 for ; Fri, 5 Mar 2021 23:42:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16C30E07FA; Fri, 5 Mar 2021 23:42:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A8BF2E07FA for ; Fri, 5 Mar 2021 23:42:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 58860340E12 for ; Fri, 5 Mar 2021 23:42:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83DD94F1 for ; Fri, 5 Mar 2021 23:42:09 +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: <1614987721.912bc481e49ecdbdf9ac73476ac346f04b5d50e5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/go-ethereum/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/go-ethereum/go-ethereum-1.10.0.ebuild X-VCS-Directories: net-p2p/go-ethereum/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 912bc481e49ecdbdf9ac73476ac346f04b5d50e5 X-VCS-Branch: master Date: Fri, 5 Mar 2021 23:42:09 +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: cc71a2f4-8eda-45f7-a125-1740e63cb25d X-Archives-Hash: 25ffae4d5bcba481de1adc29e0ecd985 commit: 912bc481e49ecdbdf9ac73476ac346f04b5d50e5 Author: Sam James gentoo org> AuthorDate: Fri Mar 5 23:41:40 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 5 23:42:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=912bc481 net-p2p/go-ethereum: update USE=devtools binaries Closes: https://bugs.gentoo.org/774375 Signed-off-by: Sam James gentoo.org> net-p2p/go-ethereum/go-ethereum-1.10.0.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/net-p2p/go-ethereum/go-ethereum-1.10.0.ebuild b/net-p2p/go-ethereum/go-ethereum-1.10.0.ebuild index 57b6d0ad253..71c2a91fa69 100644 --- a/net-p2p/go-ethereum/go-ethereum-1.10.0.ebuild +++ b/net-p2p/go-ethereum/go-ethereum-1.10.0.ebuild @@ -706,15 +706,21 @@ src_compile() { src_install() { einstalldocs + dobin build/bin/geth + if use devtools; then + dobin build/bin/abidump dobin build/bin/abigen dobin build/bin/bootnode + dobin build/bin/checkpoint-admin + dobin build/bin/clef + dobin build/bin/devp2p + dobin build/bin/ethkey dobin build/bin/evm + dobin build/bin/faucet dobin build/bin/p2psim dobin build/bin/puppeth dobin build/bin/rlpdump - dobin build/bin/swarm - dobin build/bin/wnode fi }