From owner-svn-ports-all@freebsd.org Tue Jun 2 14:35:18 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 48B6F2F0A75; Tue, 2 Jun 2020 14:35:18 +0000 (UTC) (envelope-from mandree@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 49bvhk13c6z417G; Tue, 2 Jun 2020 14:35:18 +0000 (UTC) (envelope-from mandree@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 1B4681E41E; Tue, 2 Jun 2020 14:35:18 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 052EZHcp020849; Tue, 2 Jun 2020 14:35:17 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 052EZHFk020848; Tue, 2 Jun 2020 14:35:17 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <202006021435.052EZHFk020848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Tue, 2 Jun 2020 14:35:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r537556 - head/net-p2p/namecoin X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/net-p2p/namecoin X-SVN-Commit-Revision: 537556 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: Tue, 02 Jun 2020 14:35:18 -0000 Author: mandree Date: Tue Jun 2 14:35:17 2020 New Revision: 537556 URL: https://svnweb.freebsd.org/changeset/ports/537556 Log: net-p2p/namecoin: DEPRECATE, add short EXPIRATION_DATE before 2020Q3, mark BROKEN. (The db48 dependency was not properly listed in INDEX and thus hidden.) Modified: head/net-p2p/namecoin/Makefile Modified: head/net-p2p/namecoin/Makefile ============================================================================== --- head/net-p2p/namecoin/Makefile Tue Jun 2 14:15:17 2020 (r537555) +++ head/net-p2p/namecoin/Makefile Tue Jun 2 14:35:17 2020 (r537556) @@ -3,6 +3,7 @@ PORTNAME= namecoin PORTVERSION= 0.19.0.1 +PORTREVISION= 1 DISTVERSIONPREFIX= nc PORTEPOCH= 1 CATEGORIES= net-p2p dns @@ -10,6 +11,9 @@ 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 \ @@ -78,7 +82,7 @@ QRCODES_LIB_DEPENDS= libqrencode.so:graphics/libqrenco WALLET_CONFIGURE_ENABLE= wallet WALLET_CXXFLAGS= -I${BDB_INCLUDE_DIR} WALLET_LIBS= -L${BDB_LIB_DIR} -WALLET_USES= bdb:48 +WALLET_USES= bdb ZMQ_CONFIGURE_ENABLE= zmq ZMQ_BUILD_DEPENDS= libzmq4>0:net/libzmq4 @@ -113,5 +117,11 @@ 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