diff options
author | khorben <khorben@pkgsrc.org> | 2019-05-13 08:32:56 +0000 |
---|---|---|
committer | khorben <khorben@pkgsrc.org> | 2019-05-13 08:32:56 +0000 |
commit | aa4d22b1e605ff42196b770a7fb5df1600bad459 (patch) | |
tree | 6bb64adaf52b2a5fcabb605e5d1d7c36ac540ae6 /finance | |
parent | 5ce02f9852fc74c3611e54c6695e079c31bd6322 (diff) | |
download | pkgsrc-aa4d22b1e605ff42196b770a7fb5df1600bad459.tar.gz |
Update finance/bitcoin to version 0.17.1
Among the changes, support was removed for Qt 4.
Due to issues with my local setup, this could not be tested with Qt 5 enabled
(currently not the default).
Diffstat (limited to 'finance')
-rw-r--r-- | finance/bitcoin/Makefile | 13 | ||||
-rw-r--r-- | finance/bitcoin/distinfo | 10 | ||||
-rw-r--r-- | finance/bitcoin/options.mk | 18 |
3 files changed, 17 insertions, 24 deletions
diff --git a/finance/bitcoin/Makefile b/finance/bitcoin/Makefile index bfe465cb706..73d24b777bc 100644 --- a/finance/bitcoin/Makefile +++ b/finance/bitcoin/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2019/04/03 00:32:42 ryoon Exp $ +# $NetBSD: Makefile,v 1.12 2019/05/13 08:32:56 khorben Exp $ -DISTNAME= bitcoin-0.16.3 -PKGREVISION= 2 +DISTNAME= bitcoin-0.17.1 CATEGORIES= finance MASTER_SITES= ${MASTER_SITE_GITHUB:=bitcoin/} GITHUB_TAG= v${PKGVERSION_NOREV} @@ -28,6 +27,12 @@ CONFIGURE_ARGS+= --with-boost=${BUILDLINK_PREFIX.boost-libs} CONFIGURE_ARGS+= --enable-hardening +.include "../../mk/bsd.prefs.mk" + +.if ${OS_VARIANT} == "SmartOS" +CONFIGURE_ARGS+= --disable-tests +.endif + # pkgsrc's db4 package installs as db4_, but bitcoin looks for db_. BUILDLINK_TRANSFORM+= l:db_cxx:db4_cxx @@ -61,7 +66,7 @@ INSTALL_DIRS= ${BUILD_DIRS} src/secp256k1 src/univalue # Install the Debian example config file. post-install: - ${INSTALL_DATA} -m 644 ${WRKSRC}/contrib/debian/examples/bitcoin.conf ${DESTDIR}${EGDIR} + ${INSTALL_DATA} -m 644 ${WRKSRC}/share/examples/bitcoin.conf ${DESTDIR}${EGDIR} .include "options.mk" diff --git a/finance/bitcoin/distinfo b/finance/bitcoin/distinfo index 03f726621ec..0e08d5edfc8 100644 --- a/finance/bitcoin/distinfo +++ b/finance/bitcoin/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.2 2019/02/04 22:06:22 khorben Exp $ +$NetBSD: distinfo,v 1.3 2019/05/13 08:32:56 khorben Exp $ -SHA1 (bitcoin-0.16.3.tar.gz) = efb4e2757f1ae47b1083ec90c7ceb964427e90f8 -RMD160 (bitcoin-0.16.3.tar.gz) = edaac28b150a380075735dbb74c14451019845c9 -SHA512 (bitcoin-0.16.3.tar.gz) = cc7ccd09a6561cb32dee1e95041d8499347e04dd5ae4de89a36bc3dd07024af0f9151fef93bf49e05b078baf247f1b0b84c8fd1b600953ba27d31e5cbc1534b4 -Size (bitcoin-0.16.3.tar.gz) = 6655901 bytes +SHA1 (bitcoin-0.17.1.tar.gz) = 4f7e19b5f2980aabd63080d2111d40172ba2d9eb +RMD160 (bitcoin-0.17.1.tar.gz) = 47ab653936bee50bd9feeb8116e6a9646ddee826 +SHA512 (bitcoin-0.17.1.tar.gz) = a72008004e244ae6d8d7f52eefa7dc7d3de5fb23efad8080bcc52d79d1fb8a43bf7de9c012b37f2586e3e4e2f44014a678d63c429132200eca0ca120c820053c +Size (bitcoin-0.17.1.tar.gz) = 6219440 bytes SHA1 (patch-src_leveldb_port_port__posix.h) = 6a3cde12951b9801e8ffe19b6134ca48ad0d876c SHA1 (patch-src_netbase.cpp) = c1357ce9437fab87651df9fd4ca12dd24c59830c SHA1 (patch-src_secp256k1_configure.ac) = 688e13e1da110bf15557434f19507f43290be8ef diff --git a/finance/bitcoin/options.mk b/finance/bitcoin/options.mk index 5c49d914e2a..b468064e65e 100644 --- a/finance/bitcoin/options.mk +++ b/finance/bitcoin/options.mk @@ -1,26 +1,14 @@ -# $NetBSD: options.mk,v 1.1 2018/07/08 11:13:46 khorben Exp $ +# $NetBSD: options.mk,v 1.2 2019/05/13 08:32:56 khorben Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.bitcoin -PKG_SUPPORTED_OPTIONS+= qt4 qt5 miniupnpc -# qt4 is off because it doubles the footprint of the package. +PKG_SUPPORTED_OPTIONS+= qt5 miniupnpc +# qt5 is off because it doubles the footprint of the package. # Please do not enable it by default; instead, create a split # package. PKG_SUGGESTED_OPTIONS+= .include "../../mk/bsd.options.mk" -.if !empty(PKG_OPTIONS:Mqt4) -PLIST.qt= yes - -.include "../../converters/qrencode/buildlink3.mk" -.include "../../devel/protobuf/buildlink3.mk" -BUILDLINK_DEPMETHOD.qt4-tools= full -.include "../../x11/qt4-tools/buildlink3.mk" -.include "../../x11/qt4-libs/buildlink3.mk" - -CONFIGURE_ARGS+= --with-qt-bindir=${QTDIR}/bin -.endif - .if !empty(PKG_OPTIONS:Mqt5) PLIST.qt= yes |