From owner-svn-ports-all@freebsd.org Sun Feb 17 23:29:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F75A14E55FC; Sun, 17 Feb 2019 23:29:42 +0000 (UTC) (envelope-from kbowling@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B98BB8E5DE; Sun, 17 Feb 2019 23:29:41 +0000 (UTC) (envelope-from kbowling@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AAADF25586; Sun, 17 Feb 2019 23:29:41 +0000 (UTC) (envelope-from kbowling@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1HNTfsw057014; Sun, 17 Feb 2019 23:29:41 GMT (envelope-from kbowling@FreeBSD.org) Received: (from kbowling@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1HNTfPE057013; Sun, 17 Feb 2019 23:29:41 GMT (envelope-from kbowling@FreeBSD.org) Message-Id: <201902172329.x1HNTfPE057013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kbowling set sender to kbowling@FreeBSD.org using -f From: Kevin Bowling Date: Sun, 17 Feb 2019 23:29:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493228 - in head/net-p2p: bitcoin bitcoin-daemon X-SVN-Group: ports-head X-SVN-Commit-Author: kbowling X-SVN-Commit-Paths: in head/net-p2p: bitcoin bitcoin-daemon X-SVN-Commit-Revision: 493228 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B98BB8E5DE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2019 23:29:42 -0000 Author: kbowling Date: Sun Feb 17 23:29:41 2019 New Revision: 493228 URL: https://svnweb.freebsd.org/changeset/ports/493228 Log: net-p2p/bitcoin: enable ZMQ by default Reported by: Seth Hahn Approved by: timur (mentor) Sponsored by: BBOX.io Differential Revision: https://reviews.freebsd.org/D19209 Modified: head/net-p2p/bitcoin-daemon/Makefile head/net-p2p/bitcoin/Makefile Modified: head/net-p2p/bitcoin-daemon/Makefile ============================================================================== --- head/net-p2p/bitcoin-daemon/Makefile Sun Feb 17 21:40:32 2019 (r493227) +++ head/net-p2p/bitcoin-daemon/Makefile Sun Feb 17 23:29:41 2019 (r493228) @@ -1,7 +1,7 @@ # $FreeBSD$ MASTERDIR= ${.CURDIR}/../bitcoin -PORTREVISION= 4 +PORTREVISION= 5 PKGNAMESUFFIX= -daemon COMMENT= Virtual Peer-to-Peer Currency (Daemon) @@ -14,7 +14,7 @@ NOT_FOR_ARCHS_REASON= does not support big-endian arch OPTIONS_DEFINE= DEBUG HARDENING TESTS UPNP ZMQ # WALLET_BDBMODERN is a choice for WALLET, introduced via OPTIONS_RADIO=WALLET # from ${MASTERDIR}/Makefile -OPTIONS_DEFAULT= HARDENING UPNP WALLET_BDBMODERN +OPTIONS_DEFAULT= HARDENING UPNP WALLET_BDBMODERN ZMQ USERS= bitcoin GROUPS= bitcoin Modified: head/net-p2p/bitcoin/Makefile ============================================================================== --- head/net-p2p/bitcoin/Makefile Sun Feb 17 21:40:32 2019 (r493227) +++ head/net-p2p/bitcoin/Makefile Sun Feb 17 23:29:41 2019 (r493228) @@ -3,7 +3,7 @@ PORTNAME= bitcoin PORTVERSION= 0.17.1 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= net-p2p finance MASTER_SITES= https://bitcoincore.org/bin/bitcoin-core-${PORTVERSION}/:DEFAULT \ LOCAL/swills:icon @@ -42,7 +42,7 @@ TESTS_PLIST_FILES= bin/test_bitcoin-qt \ OPTIONS_DEFINE?= DBUS DEBUG HARDENING QRCODES TESTS UPNP ZMQ OPTIONS_RADIO?= WALLET OPTIONS_RADIO_WALLET?= WALLET_BDB48 WALLET_BDBMODERN -OPTIONS_DEFAULT?= DBUS HARDENING QRCODES UPNP WALLET_BDBMODERN +OPTIONS_DEFAULT?= DBUS HARDENING QRCODES UPNP WALLET_BDBMODERN ZMQ OPTIONS_SUB= yes HARDENING_DESC= Attempt to harden binaries (PIE for ASLR, NX Stack)