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 8D838138335 for ; Tue, 18 Sep 2018 09:37:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65AD0E05C1; Tue, 18 Sep 2018 09:37:50 +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 3CF20E05C1 for ; Tue, 18 Sep 2018 09:37:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BD68D335D0C for ; Tue, 18 Sep 2018 09:37:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF00F3F6 for ; Tue, 18 Sep 2018 09:37:45 +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: <1537262770.540a7d2cd3f099a1b00081897149ba41008ccc92.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.8.2.ebuild X-VCS-Directories: net-p2p/go-ethereum/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 540a7d2cd3f099a1b00081897149ba41008ccc92 X-VCS-Branch: master Date: Tue, 18 Sep 2018 09:37:45 +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: 253b4c00-728b-4056-bb57-e5daef2ed229 X-Archives-Hash: 7168ea581eef51d992199da83e699b4e commit: 540a7d2cd3f099a1b00081897149ba41008ccc92 Author: Mathy Vanvoorden vanvoorden be> AuthorDate: Thu Sep 13 07:58:52 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 18 09:26:10 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=540a7d2c net-p2p/go-ethereum: Remove old version 1.8.2 Package-Manager: Portage[mgorny]-2.3.43.3 Closes: https://github.com/gentoo/gentoo/pull/9855 net-p2p/go-ethereum/Manifest | 1 - net-p2p/go-ethereum/go-ethereum-1.8.2.ebuild | 42 ---------------------------- 2 files changed, 43 deletions(-) diff --git a/net-p2p/go-ethereum/Manifest b/net-p2p/go-ethereum/Manifest index 1fc16204ea4..fc324d48325 100644 --- a/net-p2p/go-ethereum/Manifest +++ b/net-p2p/go-ethereum/Manifest @@ -1,2 +1 @@ DIST go-ethereum-1.8.15.tar.gz 11101556 BLAKE2B 19c92a473be363da3070cc6d264e2826b05430ed22fab2fa2567baaea3bd03f056d540639fc9f247cf3d45ded30ef28e5611f4eb0fda36324d46a0e1dad0e581 SHA512 d542881cbc2712eb35d327f26e14384fcfd273cfc9ee2b231c2a59bd1db18297a8444443551c186aa4942af2b5143e062845dcb2fa7c1daba50a6158a4ffe57f -DIST go-ethereum-1.8.2.tar.gz 9129180 BLAKE2B 8a1e841c8c9f0c0f0adcb08610996c0a06b0133aae89fc0b67543a4aa6d0209b9dbb5b5cff5fc83eb62f7b00ff650cedb7823d640fe4d222698063c8d818f1d5 SHA512 d09bb18098e866ecbabf8e5b796e1a93c125556525b55eaddc2ec870ea84ca861feab3f56b83f31adf9e5d4001df6f2045b82b9224a6017cc6791be04d202271 diff --git a/net-p2p/go-ethereum/go-ethereum-1.8.2.ebuild b/net-p2p/go-ethereum/go-ethereum-1.8.2.ebuild deleted file mode 100644 index 6fc3806ae75..00000000000 --- a/net-p2p/go-ethereum/go-ethereum-1.8.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2018 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 -}