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 38CBD1382C5 for ; Tue, 27 Mar 2018 18:33:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 343D9E0955; Tue, 27 Mar 2018 18:33:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 0C2AEE0955 for ; Tue, 27 Mar 2018 18:33:02 +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 A3C15335C90 for ; Tue, 27 Mar 2018 18:33:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F076826E for ; Tue, 27 Mar 2018 18:32:59 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1522175567.1c2ffd508a0d1e525511fea6296ed24801a4832c.mgorny@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/Manifest net-p2p/go-ethereum/go-ethereum-1.7.3.ebuild X-VCS-Directories: net-p2p/go-ethereum/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1c2ffd508a0d1e525511fea6296ed24801a4832c X-VCS-Branch: master Date: Tue, 27 Mar 2018 18:32:59 +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-Archives-Salt: d06818b6-4d96-4d73-b0e4-f07857b7f445 X-Archives-Hash: 0532a9de9a9ab4d8f1a59fd2b25033c7 commit: 1c2ffd508a0d1e525511fea6296ed24801a4832c Author: Mathy Vanvoorden vanvoorden be> AuthorDate: Mon Mar 26 07:28:44 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Mar 27 18:32:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2ffd50 net-p2p/go-ethereum: Remove 1.7.3 Closes: https://github.com/gentoo/gentoo/pull/7236 Package-Manager: Portage[mgorny]-2.3.24.1 net-p2p/go-ethereum/Manifest | 1 - net-p2p/go-ethereum/go-ethereum-1.7.3.ebuild | 42 ---------------------------- 2 files changed, 43 deletions(-) diff --git a/net-p2p/go-ethereum/Manifest b/net-p2p/go-ethereum/Manifest index 7f4ccf68e11..1577deb4926 100644 --- a/net-p2p/go-ethereum/Manifest +++ b/net-p2p/go-ethereum/Manifest @@ -1,2 +1 @@ -DIST go-ethereum-1.7.3.tar.gz 8188445 BLAKE2B abfa7fff970ea740376e05a56c51a83ba62853b68fd1de1a7161192da294558ea2939427119d00aadcb9e00b8b487e1acfae058e0c5ab6dbe3531e4db0b446cb SHA512 c50391f84b64c924c56d8d052a5c910f94869d86b080cd9b3355a48e094e7f5d4a05a631a57a74619b677067be5da21d6018d18a81bd014bceed43d3626cb017 DIST go-ethereum-1.8.2.tar.gz 9129180 BLAKE2B 8a1e841c8c9f0c0f0adcb08610996c0a06b0133aae89fc0b67543a4aa6d0209b9dbb5b5cff5fc83eb62f7b00ff650cedb7823d640fe4d222698063c8d818f1d5 SHA512 d09bb18098e866ecbabf8e5b796e1a93c125556525b55eaddc2ec870ea84ca861feab3f56b83f31adf9e5d4001df6f2045b82b9224a6017cc6791be04d202271 diff --git a/net-p2p/go-ethereum/go-ethereum-1.7.3.ebuild b/net-p2p/go-ethereum/go-ethereum-1.7.3.ebuild deleted file mode 100644 index a7fce9166ec..00000000000 --- a/net-p2p/go-ethereum/go-ethereum-1.7.3.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit golang-base - -DESCRIPTION="Official golang implementation of the Ethereum protocol" -HOMEPAGE="https://github.com/ethereum/go-ethereum" -SRC_URI="https://github.com/ethereum/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+ LGPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="devtools opencl" - -DEPEND="dev-lang/go:= - opencl? ( virtual/opencl ) -" -RDEPEND="${DEPEND}" - -src_compile() { - use opencl && export GO_OPENCL=true - - emake $(usex devtools all geth) -} - -src_install() { - einstalldocs - - dobin build/bin/geth - if use devtools; then - dobin build/bin/abigen - dobin build/bin/bootnode - dobin build/bin/evm - dobin build/bin/p2psim - dobin build/bin/puppeth - dobin build/bin/rlpdump - dobin build/bin/swarm - dobin build/bin/wnode - fi -}