From owner-svn-ports-head@freebsd.org Sat Apr 30 18:37:53 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 573C8AD90D4; Sat, 30 Apr 2016 18:37:53 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32EFB109A; Sat, 30 Apr 2016 18:37:53 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3UIbqvG020186; Sat, 30 Apr 2016 18:37:52 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3UIbqPF020181; Sat, 30 Apr 2016 18:37:52 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201604301837.u3UIbqPF020181@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 30 Apr 2016 18:37:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414354 - in head/net-p2p: . go-ethereum X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Apr 2016 18:37:53 -0000 Author: pi Date: Sat Apr 30 18:37:51 2016 New Revision: 414354 URL: https://svnweb.freebsd.org/changeset/ports/414354 Log: New port: net-p2p/go-ethereum Ethereum is a community-driven project aiming to decentralize the internet and return it to its democratic roots. It is a platform for building and running applications which do not need to rely on trust and cannot be controlled by any central authority. This is the Go implementation of Ethereum y/w paper WWW: https://github.com/ethereum/go-ethereum PR: 201954 Submitted by: enriquefynn@gmail.com Added: head/net-p2p/go-ethereum/ head/net-p2p/go-ethereum/Makefile (contents, props changed) head/net-p2p/go-ethereum/distinfo (contents, props changed) head/net-p2p/go-ethereum/pkg-descr (contents, props changed) head/net-p2p/go-ethereum/pkg-plist (contents, props changed) Modified: head/net-p2p/Makefile Modified: head/net-p2p/Makefile ============================================================================== --- head/net-p2p/Makefile Sat Apr 30 18:31:57 2016 (r414353) +++ head/net-p2p/Makefile Sat Apr 30 18:37:51 2016 (r414354) @@ -34,6 +34,7 @@ SUBDIR += gnewtellium SUBDIR += gnunet SUBDIR += gnunet-gtk + SUBDIR += go-ethereum SUBDIR += gtk-gnutella SUBDIR += gtorrentviewer SUBDIR += hs-torrent Added: head/net-p2p/go-ethereum/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/go-ethereum/Makefile Sat Apr 30 18:37:51 2016 (r414354) @@ -0,0 +1,49 @@ +# $FreeBSD$ + +PORTNAME= go-ethereum +PORTVERSION= 1.3.6 +DISTVERSIONPREFIX= v +CATEGORIES= net-p2p + +MAINTAINER= enriquefynn@gmail.com +COMMENT= Go implementation of the Ethereum y/w paper + +LICENSE= GPLv3 + +LIB_DEPENDS= libgmp.so:math/gmp +BUILD_DEPENDS= go:lang/go +RUN_DEPENDS= go:lang/go + +OPTIONS_DEFINE= BOOTNODE ETHTEST EVM DISASM RLPDUMP +OPTIONS_SUB= yes + +BOOTNODE_DESC= Runs a bootstrap node for the Discovery Protocol +ETHTEST_DESC= Test tool which runs with the tests suite +EVM_DESC= A generic Ethereum Virtual Machine +DISASM_DESC= Disassembles EVM code +RLPDUMP_DESC= Prints RLP structures + +USE_GITHUB= yes +GH_ACCOUNT= ethereum + +USE_GCC= 4.8+ + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/geth ${STAGEDIR}${PREFIX}/bin + @if [ ${PORT_OPTIONS:MBOOTNODE} ]; then \ + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/bootnode ${STAGEDIR}${PREFIX}/bin; \ + fi; + @if [ ${PORT_OPTIONS:METHTEST} ]; then \ + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/ethtest ${STAGEDIR}${PREFIX}/bin; \ + fi; + @if [ ${PORT_OPTIONS:MEVM} ]; then \ + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/evm ${STAGEDIR}${PREFIX}/bin; \ + fi; + @if [ ${PORT_OPTIONS:MDISASM} ]; then \ + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/disasm ${STAGEDIR}${PREFIX}/bin; \ + fi; + @if [ ${PORT_OPTIONS:MRLPDUMP} ]; then \ + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/rlpdump ${STAGEDIR}${PREFIX}/bin; \ + fi; + +.include Added: head/net-p2p/go-ethereum/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/go-ethereum/distinfo Sat Apr 30 18:37:51 2016 (r414354) @@ -0,0 +1,2 @@ +SHA256 (ethereum-go-ethereum-v1.3.6_GH0.tar.gz) = 83e90eeca939a0e721bd58dbb76b832bbd0b944f790a34d55eb22684570a5023 +SIZE (ethereum-go-ethereum-v1.3.6_GH0.tar.gz) = 10778610 Added: head/net-p2p/go-ethereum/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/go-ethereum/pkg-descr Sat Apr 30 18:37:51 2016 (r414354) @@ -0,0 +1,8 @@ +Ethereum is a community-driven project aiming to decentralize the internet and +return it to its democratic roots. It is a platform for building and running +applications which do not need to rely on trust and cannot be controlled by +any central authority. + +This is the Go implementation of Ethereum y/w paper + +WWW: https://github.com/ethereum/go-ethereum Added: head/net-p2p/go-ethereum/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/go-ethereum/pkg-plist Sat Apr 30 18:37:51 2016 (r414354) @@ -0,0 +1,6 @@ +bin/geth +%%BOOTNODE%%bin/bootnode +%%ETHTEST%%bin/ethtest +%%EVM%%bin/evm +%%DISASM%%bin/disasm +%%RLPDUMP%%bin/rlpdump