From owner-svn-ports-all@freebsd.org Thu Aug 23 13:31:07 2018 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 118E7108DDD4; Thu, 23 Aug 2018 13:31:07 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A458872729; Thu, 23 Aug 2018 13:31:06 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8593B22972; Thu, 23 Aug 2018 13:31:06 +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 w7NDV6RV021848; Thu, 23 Aug 2018 13:31:06 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7NDV6of021847; Thu, 23 Aug 2018 13:31:06 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201808231331.w7NDV6of021847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 23 Aug 2018 13:31:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477870 - in head/net-p2p: bitcoin-daemon bitcoin/files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/net-p2p: bitcoin-daemon bitcoin/files X-SVN-Commit-Revision: 477870 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.27 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: Thu, 23 Aug 2018 13:31:07 -0000 Author: swills Date: Thu Aug 23 13:31:05 2018 New Revision: 477870 URL: https://svnweb.freebsd.org/changeset/ports/477870 Log: net-p2p/bitcoin-daemon: fix deterministic tarball fallout PR: 230832 Submitted by: kbowling (maintainer) Added: head/net-p2p/bitcoin/files/bitcoin.conf (contents, props changed) Modified: head/net-p2p/bitcoin-daemon/Makefile Modified: head/net-p2p/bitcoin-daemon/Makefile ============================================================================== --- head/net-p2p/bitcoin-daemon/Makefile Thu Aug 23 13:02:25 2018 (r477869) +++ head/net-p2p/bitcoin-daemon/Makefile Thu Aug 23 13:31:05 2018 (r477870) @@ -1,7 +1,7 @@ # $FreeBSD$ MASTERDIR= ${.CURDIR}/../bitcoin -PORTREVISION= 1 +PORTREVISION= 2 PKGNAMESUFFIX= -daemon COMMENT= Virtual Peer-to-Peer Currency (Daemon) @@ -27,11 +27,11 @@ CONFIGURE_ARGS= --with-daemon \ PLIST_FILES= bin/bitcoind \ man/man1/bitcoind.1.gz \ - %%ETCDIR%%.conf.sample + "@sample %%ETCDIR%%.conf.sample" USE_RC_SUBR= bitcoind post-install: - ${INSTALL_DATA} ${WRKSRC}/contrib/init/bitcoind.conf ${STAGEDIR}${PREFIX}/etc/bitcoin.conf.sample + ${INSTALL_DATA} ${FILESDIR}/bitcoin.conf ${STAGEDIR}${PREFIX}/etc/bitcoin.conf.sample .include "${MASTERDIR}/Makefile" Added: head/net-p2p/bitcoin/files/bitcoin.conf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/bitcoin/files/bitcoin.conf Thu Aug 23 13:31:05 2018 (r477870) @@ -0,0 +1,23 @@ +# FreeBSD bitcoind configuration file + +# This file is used by bitcoind +# The GUI and CLI will default to generating and using ~/.bitcoin/bitcoin.conf +# +# bitcoin has hundreds of config options and there isn't a single mode of +# operation (mining, client, testnet etc) that can be easily covered by a +# sample file. +# +# A generator for some common configurations exists at +# https://jlopp.github.io/bitcoin-core-config-generator/ + +# Bind to given address and always listen on it. Use [host]:port notation for IPv6 +#bind= + +# Specify your own public IP address. +#externalip= + +# Listen for incoming connections on non-default port. +#port= + +# Connect via a SOCKS5 proxy +#proxy=127.0.0.1:9050