From owner-svn-ports-all@freebsd.org Sat Aug 12 03:43:33 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F715DDE318; Sat, 12 Aug 2017 03:43:33 +0000 (UTC) (envelope-from swills@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 mx1.freebsd.org (Postfix) with ESMTPS id 1C6F971052; Sat, 12 Aug 2017 03:43:33 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7C3hW7j051959; Sat, 12 Aug 2017 03:43:32 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7C3hVma051955; Sat, 12 Aug 2017 03:43:31 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201708120343.v7C3hVma051955@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 12 Aug 2017 03:43:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447813 - in head/net-p2p: bitcoin bitcoin-daemon bitcoin-utils bitcoin/files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/net-p2p: bitcoin bitcoin-daemon bitcoin-utils bitcoin/files X-SVN-Commit-Revision: 447813 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.23 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: Sat, 12 Aug 2017 03:43:33 -0000 Author: swills Date: Sat Aug 12 03:43:31 2017 New Revision: 447813 URL: https://svnweb.freebsd.org/changeset/ports/447813 Log: net-p2p/bitcoin: Update to 0.14.2 PR: 220897 Submitted by: kbowling Approved by: robbak@robbak.com (maintainer) Differential Revision: https://reviews.freebsd.org/D11684 Deleted: head/net-p2p/bitcoin/files/patch-src_leveldb_helpers_memenv_memenv.cc Modified: head/net-p2p/bitcoin-daemon/Makefile head/net-p2p/bitcoin-utils/Makefile head/net-p2p/bitcoin/Makefile head/net-p2p/bitcoin/distinfo Modified: head/net-p2p/bitcoin-daemon/Makefile ============================================================================== --- head/net-p2p/bitcoin-daemon/Makefile Fri Aug 11 23:16:56 2017 (r447812) +++ head/net-p2p/bitcoin-daemon/Makefile Sat Aug 12 03:43:31 2017 (r447813) @@ -1,7 +1,6 @@ # $FreeBSD$ MASTERDIR= ${.CURDIR}/../bitcoin -PORTREVISION= 7 PKGNAMESUFFIX= -daemon COMMENT= Virtual Peer-to-Peer Currency (Daemon) @@ -23,7 +22,8 @@ CONFIGURE_ARGS= --with-daemon \ --without-qrencode \ --without-utils -PLIST_FILES= bin/bitcoind +PLIST_FILES= bin/bitcoind \ + man/man1/bitcoind.1.gz USE_RC_SUBR= bitcoind Modified: head/net-p2p/bitcoin-utils/Makefile ============================================================================== --- head/net-p2p/bitcoin-utils/Makefile Fri Aug 11 23:16:56 2017 (r447812) +++ head/net-p2p/bitcoin-utils/Makefile Sat Aug 12 03:43:31 2017 (r447813) @@ -1,7 +1,6 @@ # $FreeBSD$ MASTERDIR= ${.CURDIR}/../bitcoin -PORTREVISION= 6 PKGNAMESUFFIX= -utils COMMENT= Virtual Peer-to-Peer Currency (CLI and Utilities) @@ -17,9 +16,11 @@ CONFIGURE_ARGS= --without-daemon \ --without-gui \ --without-libs \ --without-qrencode \ + --without-miniupnpc \ --with-utils \ --disable-wallet -PLIST_FILES= bin/bitcoin-cli bin/bitcoin-tx +PLIST_FILES= bin/bitcoin-cli bin/bitcoin-tx \ + man/man1/bitcoin-cli.1.gz man/man1/bitcoin-tx.1.gz .include "${MASTERDIR}/Makefile" Modified: head/net-p2p/bitcoin/Makefile ============================================================================== --- head/net-p2p/bitcoin/Makefile Fri Aug 11 23:16:56 2017 (r447812) +++ head/net-p2p/bitcoin/Makefile Sat Aug 12 03:43:31 2017 (r447813) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= bitcoin -PORTVERSION= 0.12.1 +PORTVERSION= 0.14.2 DISTVERSIONPREFIX= v -PORTREVISION= 12 CATEGORIES= net-p2p finance MAINTAINER= robbak@robbak.com @@ -17,7 +16,7 @@ LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ BROKEN_powerpc64= fails to compile: util.cpp: undefined reference to boost::program_options::to_internal -USES= autoreconf compiler:c++0x gmake libtool pkgconfig shebangfix ssl +USES= autoreconf compiler:c++11-lib gmake libtool pkgconfig shebangfix ssl SHEBANG_FILES= src/test/*.py USE_GITHUB= yes GNU_CONFIGURE= yes @@ -26,13 +25,13 @@ SLAVE_PORT?= no .if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no" USES+= desktop-file-utils -USE_QT4= corelib gui moc_build linguisttools_build network qmake_build \ - rcc_build uic_build +USE_QT5= core gui network widgets \ + buildtools_build linguisttools_build qmake_build BUILD_DEPENDS+= protoc:devel/protobuf LIB_DEPENDS+= libprotobuf.so:devel/protobuf -TESTS_USE= QT4=testlib +TESTS_USE= QT5=testlib TESTS_PLIST_FILES= bin/test_bitcoin-qt \ bin/test_bitcoin .endif @@ -47,8 +46,8 @@ TESTS_DESC= Build test binary and unit tests WALLET_DESC= Wallet Management Support ZMQ_DESC= Block and transaction broadcasting with ZeroMQ -DBUS_CONFIGURE_WITH= qtdbus -DBUS_USE= QT4=dbus +DBUS_CONFIGURE_WITH= dbus +DBUS_USE= QT5=dbus DEBUG_CONFIGURE_ENABLE= debug DEBUG_INSTALL_TARGET_OFF= install-strip @@ -81,7 +80,7 @@ ZMQ_RUN_DEPENDS= libzmq4>0:net/libzmq4 GH_ACCOUNT= bitcoin CONFIGURE_ARGS?= --without-libs \ - --with-gui=qt4 \ + --with-gui=qt5 \ --without-daemon \ --without-utils @@ -90,8 +89,8 @@ CONFIGURE_ENV= CRYPTO_CFLAGS="-I${OPENSSLINC}" CRYPTO_ OBJCXX="${CXX}" OBJCXXFLAGS="${CXXFLAGS}" MAKE_ENV+= V=1 -PLIST_FILES?= bin/bitcoin-qt share/applications/bitcoin-qt.desktop \ - share/pixmaps/bitcoin128.png +PLIST_FILES?= bin/bitcoin-qt man/man1/bitcoin-qt.1.gz \ + share/applications/bitcoin-qt.desktop share/pixmaps/bitcoin128.png .if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no" Modified: head/net-p2p/bitcoin/distinfo ============================================================================== --- head/net-p2p/bitcoin/distinfo Fri Aug 11 23:16:56 2017 (r447812) +++ head/net-p2p/bitcoin/distinfo Sat Aug 12 03:43:31 2017 (r447813) @@ -1,2 +1,3 @@ -SHA256 (bitcoin-bitcoin-v0.12.1_GH0.tar.gz) = 7bdc287575067461c123e1afcb48843f9f78eb5e6cac95b413e2e09f1f7fc7bd -SIZE (bitcoin-bitcoin-v0.12.1_GH0.tar.gz) = 6751284 +TIMESTAMP = 1500590635 +SHA256 (bitcoin-bitcoin-v0.14.2_GH0.tar.gz) = e0ac23f01a953fcc6290c96799deeffb32aa76ca8e216c564d20c18e75a25219 +SIZE (bitcoin-bitcoin-v0.14.2_GH0.tar.gz) = 7180535