diff options
author | riggs <riggs@FreeBSD.org> | 2017-06-03 15:32:44 +0800 |
---|---|---|
committer | riggs <riggs@FreeBSD.org> | 2017-06-03 15:32:44 +0800 |
commit | 17630b06d59ee3528404b985daa35e7429039034 (patch) | |
tree | 9f647abf5a732b7747fffee57af2437a6bc4c3bf /net-p2p | |
parent | 7fb21f7a818c8c8643c1f6f6e5adcc1355da913d (diff) | |
download | freebsd-ports-gnome-17630b06d59ee3528404b985daa35e7429039034.tar.gz freebsd-ports-gnome-17630b06d59ee3528404b985daa35e7429039034.tar.zst freebsd-ports-gnome-17630b06d59ee3528404b985daa35e7429039034.zip |
Update to upstream version 1.6.2, simplify
Details:
- Update to upstream version 1.6.2
- Retire existing OPTIONs in favour of the new
DEVTOOLS, which installs all developer tools
PR: 218689
Submitted by: enriquefynn@gmail.com (maintainer)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/go-ethereum/Makefile | 31 | ||||
-rw-r--r-- | net-p2p/go-ethereum/distinfo | 6 | ||||
-rw-r--r-- | net-p2p/go-ethereum/pkg-plist | 13 |
3 files changed, 19 insertions, 31 deletions
diff --git a/net-p2p/go-ethereum/Makefile b/net-p2p/go-ethereum/Makefile index 9c09d54f4bb6..e77f6ac7fde9 100644 --- a/net-p2p/go-ethereum/Makefile +++ b/net-p2p/go-ethereum/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= go-ethereum -PORTVERSION= 1.5.8 -PORTREVISION= 1 +PORTVERSION= 1.6.2 DISTVERSIONPREFIX= v CATEGORIES= net-p2p @@ -12,38 +11,24 @@ COMMENT= Go implementation of the Ethereum y/w paper LICENSE= GPLv3 BUILD_DEPENDS= go:lang/go -RUN_DEPENDS= go:lang/go USE_GITHUB= yes GH_ACCOUNT= ethereum -USE_GCC= yes - -OPTIONS_DEFINE= BOOTNODE ETHTEST EVM DISASM RLPDUMP +OPTIONS_DEFINE= DEVTOOLS 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 +DEVTOOLS_DESC= Developer tools do-install: ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/geth ${STAGEDIR}${PREFIX}/bin - -do-install-BOOTNODE-on: + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/abigen ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/bootnode ${STAGEDIR}${PREFIX}/bin - -do-install-ETHTEST-on: - ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/ethtest ${STAGEDIR}${PREFIX}/bin - -do-install-EVM-on: ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/evm ${STAGEDIR}${PREFIX}/bin - -do-install-DISASM-on: - ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/disasm ${STAGEDIR}${PREFIX}/bin - -do-install-RLPDUMP-on: + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/faucet ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/puppeth ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/rlpdump ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/swarm ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/wnode ${STAGEDIR}${PREFIX}/bin .include <bsd.port.mk> diff --git a/net-p2p/go-ethereum/distinfo b/net-p2p/go-ethereum/distinfo index 88433b0192aa..553fda97d988 100644 --- a/net-p2p/go-ethereum/distinfo +++ b/net-p2p/go-ethereum/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1486054395 -SHA256 (ethereum-go-ethereum-v1.5.8_GH0.tar.gz) = 1b65c18c6da26e92bef230eb44a74708f561014d924ec695145f92381c3026bf -SIZE (ethereum-go-ethereum-v1.5.8_GH0.tar.gz) = 15223201 +TIMESTAMP = 1496303944 +SHA256 (ethereum-go-ethereum-v1.6.2_GH0.tar.gz) = fb9dad31f8cfff572cc3246eba68d2e33dca3c749ef9f8f81175605e0c971409 +SIZE (ethereum-go-ethereum-v1.6.2_GH0.tar.gz) = 17223273 diff --git a/net-p2p/go-ethereum/pkg-plist b/net-p2p/go-ethereum/pkg-plist index d55416ba6aad..470653c805bc 100644 --- a/net-p2p/go-ethereum/pkg-plist +++ b/net-p2p/go-ethereum/pkg-plist @@ -1,6 +1,9 @@ bin/geth -%%BOOTNODE%%bin/bootnode -%%ETHTEST%%bin/ethtest -%%EVM%%bin/evm -%%DISASM%%bin/disasm -%%RLPDUMP%%bin/rlpdump +%%DEVTOOLS%%bin/abigen +%%DEVTOOLS%%bin/bootnode +%%DEVTOOLS%%bin/evm +%%DEVTOOLS%%bin/faucet +%%DEVTOOLS%%bin/puppeth +%%DEVTOOLS%%bin/rlpdump +%%DEVTOOLS%%bin/swarm +%%DEVTOOLS%%bin/wnode |