net-p2p/go-ethereum: upgrade to 1.8.24
PR: 237150 Submitted by: Enrique Fynn <me@enriquefynn.com> (maintainer)
This commit is contained in:
parent
acefd06145
commit
5d925fc5e0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=498594
@ -2,7 +2,7 @@
|
||||
|
||||
PORTNAME= go-ethereum
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.8.22
|
||||
DISTVERSION= 1.8.24
|
||||
CATEGORIES= net-p2p
|
||||
|
||||
MAINTAINER= me@enriquefynn.com
|
||||
|
@ -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
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user