Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/go-ethereum/
Date: Tue, 27 Mar 2018 18:33:05
Message-Id: 1522175567.1c2ffd508a0d1e525511fea6296ed24801a4832c.mgorny@gentoo
1 commit: 1c2ffd508a0d1e525511fea6296ed24801a4832c
2 Author: Mathy Vanvoorden <mathy <AT> vanvoorden <DOT> be>
3 AuthorDate: Mon Mar 26 07:28:44 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 27 18:32:47 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2ffd50
7
8 net-p2p/go-ethereum: Remove 1.7.3
9
10 Closes: https://github.com/gentoo/gentoo/pull/7236
11 Package-Manager: Portage[mgorny]-2.3.24.1
12
13 net-p2p/go-ethereum/Manifest | 1 -
14 net-p2p/go-ethereum/go-ethereum-1.7.3.ebuild | 42 ----------------------------
15 2 files changed, 43 deletions(-)
16
17 diff --git a/net-p2p/go-ethereum/Manifest b/net-p2p/go-ethereum/Manifest
18 index 7f4ccf68e11..1577deb4926 100644
19 --- a/net-p2p/go-ethereum/Manifest
20 +++ b/net-p2p/go-ethereum/Manifest
21 @@ -1,2 +1 @@
22 -DIST go-ethereum-1.7.3.tar.gz 8188445 BLAKE2B abfa7fff970ea740376e05a56c51a83ba62853b68fd1de1a7161192da294558ea2939427119d00aadcb9e00b8b487e1acfae058e0c5ab6dbe3531e4db0b446cb SHA512 c50391f84b64c924c56d8d052a5c910f94869d86b080cd9b3355a48e094e7f5d4a05a631a57a74619b677067be5da21d6018d18a81bd014bceed43d3626cb017
23 DIST go-ethereum-1.8.2.tar.gz 9129180 BLAKE2B 8a1e841c8c9f0c0f0adcb08610996c0a06b0133aae89fc0b67543a4aa6d0209b9dbb5b5cff5fc83eb62f7b00ff650cedb7823d640fe4d222698063c8d818f1d5 SHA512 d09bb18098e866ecbabf8e5b796e1a93c125556525b55eaddc2ec870ea84ca861feab3f56b83f31adf9e5d4001df6f2045b82b9224a6017cc6791be04d202271
24
25 diff --git a/net-p2p/go-ethereum/go-ethereum-1.7.3.ebuild b/net-p2p/go-ethereum/go-ethereum-1.7.3.ebuild
26 deleted file mode 100644
27 index a7fce9166ec..00000000000
28 --- a/net-p2p/go-ethereum/go-ethereum-1.7.3.ebuild
29 +++ /dev/null
30 @@ -1,42 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit golang-base
37 -
38 -DESCRIPTION="Official golang implementation of the Ethereum protocol"
39 -HOMEPAGE="https://github.com/ethereum/go-ethereum"
40 -SRC_URI="https://github.com/ethereum/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="GPL-3+ LGPL-3+"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="devtools opencl"
46 -
47 -DEPEND="dev-lang/go:=
48 - opencl? ( virtual/opencl )
49 -"
50 -RDEPEND="${DEPEND}"
51 -
52 -src_compile() {
53 - use opencl && export GO_OPENCL=true
54 -
55 - emake $(usex devtools all geth)
56 -}
57 -
58 -src_install() {
59 - einstalldocs
60 -
61 - dobin build/bin/geth
62 - if use devtools; then
63 - dobin build/bin/abigen
64 - dobin build/bin/bootnode
65 - dobin build/bin/evm
66 - dobin build/bin/p2psim
67 - dobin build/bin/puppeth
68 - dobin build/bin/rlpdump
69 - dobin build/bin/swarm
70 - dobin build/bin/wnode
71 - fi
72 -}