Date: Wed, 10 Apr 2019 20:43:00 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r498594 - in head/net-p2p/go-ethereum: . files Message-ID: <201904102043.x3AKh0Tg055971@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Wed Apr 10 20:43:00 2019 New Revision: 498594 URL: https://svnweb.freebsd.org/changeset/ports/498594 Log: net-p2p/go-ethereum: upgrade to 1.8.24 PR: 237150 Submitted by: Enrique Fynn <me@enriquefynn.com> (maintainer) Added: head/net-p2p/go-ethereum/files/ head/net-p2p/go-ethereum/files/patch-common_fdlimit_fdlimit__freebsd.go (contents, props changed) Modified: head/net-p2p/go-ethereum/Makefile (contents, props changed) head/net-p2p/go-ethereum/distinfo (contents, props changed) Modified: head/net-p2p/go-ethereum/Makefile ============================================================================== --- head/net-p2p/go-ethereum/Makefile Wed Apr 10 20:29:18 2019 (r498593) +++ head/net-p2p/go-ethereum/Makefile Wed Apr 10 20:43:00 2019 (r498594) @@ -2,7 +2,7 @@ PORTNAME= go-ethereum DISTVERSIONPREFIX= v -DISTVERSION= 1.8.22 +DISTVERSION= 1.8.24 CATEGORIES= net-p2p MAINTAINER= me@enriquefynn.com Modified: head/net-p2p/go-ethereum/distinfo ============================================================================== --- head/net-p2p/go-ethereum/distinfo Wed Apr 10 20:29:18 2019 (r498593) +++ head/net-p2p/go-ethereum/distinfo Wed Apr 10 20:43:00 2019 (r498594) @@ -1,3 +1,3 @@ -TIMESTAMP = 1549124152 -SHA256 (ethereum-go-ethereum-v1.8.22_GH0.tar.gz) = 8cd1d3bf8bcea7fa6449eef56d9103eca9403aae74f839c1f1f89eaf6989fe01 -SIZE (ethereum-go-ethereum-v1.8.22_GH0.tar.gz) = 10092112 +TIMESTAMP = 1554802409 +SHA256 (ethereum-go-ethereum-v1.8.24_GH0.tar.gz) = 7b4d5df58bb00b0601d2b16ca16d03d2aa5a70e9529443154d24bdc38f7d931c +SIZE (ethereum-go-ethereum-v1.8.24_GH0.tar.gz) = 10544062 Added: head/net-p2p/go-ethereum/files/patch-common_fdlimit_fdlimit__freebsd.go ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/go-ethereum/files/patch-common_fdlimit_fdlimit__freebsd.go Wed Apr 10 20:43:00 2019 (r498594) @@ -0,0 +1,11 @@ +--- common/fdlimit/fdlimit_freebsd.go.orig 2019-04-08 13:16:05 UTC ++++ common/fdlimit/fdlimit_freebsd.go +@@ -43,7 +43,7 @@ func Raise(max uint64) (uint64, error) { + if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &limit); err != nil { + return 0, err + } +- return limit.Cur, nil ++ return uint64(limit.Cur), nil + } + + // Current retrieves the number of file descriptors allowed to be opened by this
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904102043.x3AKh0Tg055971>