From owner-svn-ports-all@freebsd.org Sun Jun 28 07:47:33 2020 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 AF727344005; Sun, 28 Jun 2020 07:47:33 +0000 (UTC) (envelope-from lwhsu@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 49vjQF4GYbz44Ll; Sun, 28 Jun 2020 07:47:33 +0000 (UTC) (envelope-from lwhsu@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 8DC2B12FB0; Sun, 28 Jun 2020 07:47:33 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05S7lX5a019711; Sun, 28 Jun 2020 07:47:33 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05S7lXvP019709; Sun, 28 Jun 2020 07:47:33 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202006280747.05S7lXvP019709@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Sun, 28 Jun 2020 07:47:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r540681 - in head/net-p2p/namecoin: . files X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/net-p2p/namecoin: . files X-SVN-Commit-Revision: 540681 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.33 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, 28 Jun 2020 07:47:33 -0000 Author: lwhsu Date: Sun Jun 28 07:47:32 2020 New Revision: 540681 URL: https://svnweb.freebsd.org/changeset/ports/540681 Log: Update to 0.19.1 PR: 247024 Submitted by: Chad Jacob Milios (maintainer) Deleted: head/net-p2p/namecoin/files/patch-src_fs.h Modified: head/net-p2p/namecoin/Makefile head/net-p2p/namecoin/distinfo Modified: head/net-p2p/namecoin/Makefile ============================================================================== --- head/net-p2p/namecoin/Makefile Sun Jun 28 07:39:38 2020 (r540680) +++ head/net-p2p/namecoin/Makefile Sun Jun 28 07:47:32 2020 (r540681) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= namecoin -PORTVERSION= 0.19.0.1 -PORTREVISION= 2 +PORTVERSION= 0.19.1 DISTVERSIONPREFIX= nc PORTEPOCH= 1 CATEGORIES= net-p2p dns @@ -11,17 +10,11 @@ CATEGORIES= net-p2p dns MAINTAINER= milios@ccsys.com COMMENT?= Decentralized, open DNS and general purpose key/value store -DEPRECATED= Relies on implementation details of a particular Berkeley DB version (4.8), which has been EOL since 2010. -EXPIRATION_DATE=2020-06-30 - LICENSE= MIT LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libevent.so:devel/libevent -CONFLICTS_INSTALL= namecoin-beta-[0-9]* namecoin-beta-daemon-[0-9]* namecoin-beta-utils-[0-9]* \ - namecoin-stable-[0-9]* namecoin-stable-daemon-[0-9]* namecoin-stable-utils-[0-9]* - USES= autoreconf compiler:c++11-lib gmake libtool pkgconfig ssl GNU_CONFIGURE= yes @@ -79,10 +72,14 @@ UPNP_LIBS= -L${LOCALBASE}/lib QRCODES_CONFIGURE_WITH= qrencode QRCODES_LIB_DEPENDS= libqrencode.so:graphics/libqrencode -WALLET_CONFIGURE_ENABLE= wallet -WALLET_CXXFLAGS= -I${BDB_INCLUDE_DIR} -WALLET_LIBS= -L${BDB_LIB_DIR} -WALLET_USES= bdb +WALLET_CONFIGURE_OFF= --disable-wallet +WALLET_CONFIGURE_ON= --enable-wallet \ + --with-incompatible-bdb \ + BDB_CFLAGS=-I${BDB_INCLUDE_DIR} \ + BDB_LIBS="-L${BDB_LIB_DIR} \ + -Wl,-rpath=${BDB_LIB_DIR} \ + -l${BDB_LIB_CXX_NAME}" +WALLET_USES= bdb:5+ ZMQ_CONFIGURE_ENABLE= zmq ZMQ_BUILD_DEPENDS= libzmq4>0:net/libzmq4 @@ -117,11 +114,5 @@ regression-test: build # from CONFIGURE_ARGS above. @cd ${WRKSRC} && ${GMAKE} check - -.include - -.if !empty(PORT_OPTIONS:MWALLET) -BROKEN= Critical design flaw: Wallet option relies on Berkeley DB 4.8 implementation internals, where Berkeley DB 4.8 has been EOL since 2010 -.endif .include Modified: head/net-p2p/namecoin/distinfo ============================================================================== --- head/net-p2p/namecoin/distinfo Sun Jun 28 07:39:38 2020 (r540680) +++ head/net-p2p/namecoin/distinfo Sun Jun 28 07:47:32 2020 (r540681) @@ -1,5 +1,5 @@ -TIMESTAMP = 1581654464 -SHA256 (namecoin-namecoin-core-nc0.19.0.1_GH0.tar.gz) = a9d403822a7ff470f9bf1467e6833af53af7c80a8c696eb259f16b105cba7ad3 -SIZE (namecoin-namecoin-core-nc0.19.0.1_GH0.tar.gz) = 5873509 +TIMESTAMP = 1591326954 +SHA256 (namecoin-namecoin-core-nc0.19.1_GH0.tar.gz) = afd788e6ffbea3ab01c8657a51f3fcc061478618225adebb8dd8c0aecf780023 +SIZE (namecoin-namecoin-core-nc0.19.1_GH0.tar.gz) = 5904070 SHA256 (indolering-namecoin-graphics-a13a73b_GH0.tar.gz) = 82f308a3527d96a202099feb96a754d036bbdaa875156ad002ba2747d75000c7 SIZE (indolering-namecoin-graphics-a13a73b_GH0.tar.gz) = 7364908