From owner-svn-ports-all@freebsd.org Fri Oct 25 15:41:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9D723173D23; Fri, 25 Oct 2019 15:41:17 +0000 (UTC) (envelope-from jbeich@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 4707cs3hRpz4fQh; Fri, 25 Oct 2019 15:41:17 +0000 (UTC) (envelope-from jbeich@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 5F211287C7; Fri, 25 Oct 2019 15:41:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9PFfHQ3033401; Fri, 25 Oct 2019 15:41:17 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9PFfG8N033397; Fri, 25 Oct 2019 15:41:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201910251541.x9PFfG8N033397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 25 Oct 2019 15:41:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r515617 - in head/net-p2p: bitcoin qtum X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/net-p2p: bitcoin qtum X-SVN-Commit-Revision: 515617 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Fri, 25 Oct 2019 15:41:17 -0000 Author: jbeich Date: Fri Oct 25 15:41:16 2019 New Revision: 515617 URL: https://svnweb.freebsd.org/changeset/ports/515617 Log: net-p2p/bitcoin: unbreak with boost 1.72 httpserver.cpp:74:10: error: no template named 'deque' in namespace 'std' std::deque> queue; ~~~~~^ Modified: head/net-p2p/bitcoin/Makefile (contents, props changed) head/net-p2p/bitcoin/distinfo (contents, props changed) head/net-p2p/qtum/Makefile (contents, props changed) head/net-p2p/qtum/distinfo (contents, props changed) Modified: head/net-p2p/bitcoin/Makefile ============================================================================== --- head/net-p2p/bitcoin/Makefile Fri Oct 25 15:41:01 2019 (r515616) +++ head/net-p2p/bitcoin/Makefile Fri Oct 25 15:41:16 2019 (r515617) @@ -10,6 +10,9 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} bitcoin128.png:i DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${_DISTFILES:N*.png} +PATCH_SITES= https://github.com/${PORTNAME}/${PORTNAME}/commit/ +PATCHFILES+= a59291302239.patch:-p1 + MAINTAINER= kbowling@FreeBSD.org COMMENT?= Virtual Peer-to-Peer Currency Client (QT) Modified: head/net-p2p/bitcoin/distinfo ============================================================================== --- head/net-p2p/bitcoin/distinfo Fri Oct 25 15:41:01 2019 (r515616) +++ head/net-p2p/bitcoin/distinfo Fri Oct 25 15:41:16 2019 (r515617) @@ -3,3 +3,5 @@ SHA256 (bitcoin/bitcoin-0.18.1.tar.gz) = 5c7d93f15579e SIZE (bitcoin/bitcoin-0.18.1.tar.gz) = 7379509 SHA256 (bitcoin/bitcoin128.png) = ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722 SIZE (bitcoin/bitcoin128.png) = 10639 +SHA256 (bitcoin/a59291302239.patch) = 666d144f07e95fc5333690be2751f26c512de220813537b43e2ce6fc85da0189 +SIZE (bitcoin/a59291302239.patch) = 700 Modified: head/net-p2p/qtum/Makefile ============================================================================== --- head/net-p2p/qtum/Makefile Fri Oct 25 15:41:01 2019 (r515616) +++ head/net-p2p/qtum/Makefile Fri Oct 25 15:41:16 2019 (r515617) @@ -6,6 +6,9 @@ PORTVERSION= 0.18.1 DISTVERSIONPREFIX= mainnet-ignition-v CATEGORIES= net-p2p finance +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ +PATCHFILES+= 05564ff309be.patch:-p1 + MAINTAINER= vd@FreeBSD.org COMMENT= PoS cryptocurrency that can execute smart contract as part of an UTXO Modified: head/net-p2p/qtum/distinfo ============================================================================== --- head/net-p2p/qtum/distinfo Fri Oct 25 15:41:01 2019 (r515616) +++ head/net-p2p/qtum/distinfo Fri Oct 25 15:41:16 2019 (r515617) @@ -7,3 +7,5 @@ SHA256 (chfast-ethash-67a3216a5494834f7c221df93b079dac SIZE (chfast-ethash-67a3216a5494834f7c221df93b079dac4_GH0.tar.gz) = 95929 SHA256 (ethereum-evmc-bf7064dca5cbbda4def8c2548d0d7a040_GH0.tar.gz) = 881c99b3093978f3b03811d318373eea04ce91092e1f8585eaa4bb82c41b81b3 SIZE (ethereum-evmc-bf7064dca5cbbda4def8c2548d0d7a040_GH0.tar.gz) = 68126 +SHA256 (05564ff309be.patch) = 8c239ff8dad036f060d2b4361363e7c36368bda6b0f92d5175b8d3c3648cd9ab +SIZE (05564ff309be.patch) = 694