summaryrefslogtreecommitdiff
path: root/net-p2p
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2013-12-17 02:13:55 +0000
committerSteve Wills <swills@FreeBSD.org>2013-12-17 02:13:55 +0000
commit1c6c6f328a015691348324d74f0132b30d3c6947 (patch)
tree78550252afe0e74c7cb55b75f5aca277166d1275 /net-p2p
parentMark RESTRICTED and match /usr/ports/LEGAL (diff)
- Update to 0.8.6
PR: ports/184655 Submitted by: Robert Backahus <robbak@robbak.com> (maintainer)
Notes
Notes: svn path=/head/; revision=336687
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/bitcoin/Makefile4
-rw-r--r--net-p2p/bitcoin/distinfo4
-rw-r--r--net-p2p/bitcoin/files/patch-init_cpp12
3 files changed, 4 insertions, 16 deletions
diff --git a/net-p2p/bitcoin/Makefile b/net-p2p/bitcoin/Makefile
index 911fac8543a4..cad4367d9c8d 100644
--- a/net-p2p/bitcoin/Makefile
+++ b/net-p2p/bitcoin/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= bitcoin
-PORTVERSION= 0.8.5
+PORTVERSION= 0.8.6
CATEGORIES= net-p2p finance
MASTER_SITES= ${MASTER_SITE_LOCAL} \
http://people.freebsd.org/~swills/ \
@@ -23,7 +23,7 @@ QRCODES_DESC= Build with QR code display
USE_GITHUB= yes
GH_ACCOUNT= bitcoin
GH_PROJECT= bitcoin
-GH_COMMIT= 8090e11
+GH_COMMIT= 15e2837
GH_TAGNAME= v${PORTVERSION}
USE_GMAKE= yes
diff --git a/net-p2p/bitcoin/distinfo b/net-p2p/bitcoin/distinfo
index ab17d8102019..bcf01b2a425a 100644
--- a/net-p2p/bitcoin/distinfo
+++ b/net-p2p/bitcoin/distinfo
@@ -1,2 +1,2 @@
-SHA256 (bitcoin-0.8.5.tar.gz) = 0a60bda22fb198a2682a6a0b3c82b3da053f76efdd5930eae9af3792bdc4bffe
-SIZE (bitcoin-0.8.5.tar.gz) = 3181937
+SHA256 (bitcoin-0.8.6.tar.gz) = 0703ce3fce77b63bce11388790176f5626b521b7403d72db1ed452c692fdc55d
+SIZE (bitcoin-0.8.6.tar.gz) = 3194755
diff --git a/net-p2p/bitcoin/files/patch-init_cpp b/net-p2p/bitcoin/files/patch-init_cpp
deleted file mode 100644
index 8bc42b140588..000000000000
--- a/net-p2p/bitcoin/files/patch-init_cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur ../bitcoin-bitcoin-18c9239.orig/src/init.cpp ./src/init.cpp
---- ../bitcoin-bitcoin-18c9239.orig/src/init.cpp 2013-05-24 22:50:15.000000000 +1000
-+++ ./src/init.cpp 2013-05-24 22:53:20.000000000 +1000
-@@ -530,7 +530,7 @@
- // Make sure enough file descriptors are available
- int nBind = std::max((int)mapArgs.count("-bind"), 1);
- nMaxConnections = GetArg("-maxconnections", 125);
-- nMaxConnections = std::max(std::min(nMaxConnections, FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS), 0);
-+ nMaxConnections = std::max(std::min(nMaxConnections, (int)(FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS)), 0);
- int nFD = RaiseFileDescriptorLimit(nMaxConnections + MIN_CORE_FILEDESCRIPTORS);
- if (nFD < MIN_CORE_FILEDESCRIPTORS)
- return InitError(_("Not enough file descriptors available."));