From d4a1762644af951079bc89654cd6208da50583d5 Mon Sep 17 00:00:00 2001 From: David Seifert Date: Fri, 7 Oct 2016 00:02:54 +0200 Subject: net-p2p/go-ethereum: Add subslot operator on dev-lang/go Package-Manager: portage-2.3.1 --- net-p2p/go-ethereum/go-ethereum-1.4.16-r1.ebuild | 29 ++++++++++++++++++++++++ net-p2p/go-ethereum/go-ethereum-1.4.16.ebuild | 29 ------------------------ 2 files changed, 29 insertions(+), 29 deletions(-) create mode 100644 net-p2p/go-ethereum/go-ethereum-1.4.16-r1.ebuild delete mode 100644 net-p2p/go-ethereum/go-ethereum-1.4.16.ebuild (limited to 'net-p2p') diff --git a/net-p2p/go-ethereum/go-ethereum-1.4.16-r1.ebuild b/net-p2p/go-ethereum/go-ethereum-1.4.16-r1.ebuild new file mode 100644 index 000000000000..e5c4fb7ef62a --- /dev/null +++ b/net-p2p/go-ethereum/go-ethereum-1.4.16-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +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="evm" + +DEPEND="dev-lang/go:=" +RDEPEND="${DEPEND}" + +src_compile() { + emake geth + use evm && emake evm +} + +src_install() { + einstalldocs + + dobin build/bin/geth + use evm && dobin build/bin/evm +} diff --git a/net-p2p/go-ethereum/go-ethereum-1.4.16.ebuild b/net-p2p/go-ethereum/go-ethereum-1.4.16.ebuild deleted file mode 100644 index 365b89db42b9..000000000000 --- a/net-p2p/go-ethereum/go-ethereum-1.4.16.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -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="evm" - -DEPEND="dev-lang/go" -RDEPEND="${DEPEND}" - -src_compile() { - emake geth - use evm && emake evm -} - -src_install() { - einstalldocs - - dobin build/bin/geth - use evm && dobin build/bin/evm -} -- cgit v1.2.3-65-gdbad