From owner-svn-ports-head@freebsd.org Thu Sep 5 18:40:46 2019 Return-Path: Delivered-To: svn-ports-head@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 E8399D0170; Thu, 5 Sep 2019 18:40:46 +0000 (UTC) (envelope-from pi@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) server-signature RSA-PSS (4096 bits) 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 46PTz25tGJz4DV7; Thu, 5 Sep 2019 18:40:46 +0000 (UTC) (envelope-from pi@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 ADA1987EB; Thu, 5 Sep 2019 18:40:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x85IekOI065046; Thu, 5 Sep 2019 18:40:46 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x85IekkG065043; Thu, 5 Sep 2019 18:40:46 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201909051840.x85IekkG065043@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 5 Sep 2019 18:40:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511261 - in head/dns/powerdns-recursor: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/dns/powerdns-recursor: . files X-SVN-Commit-Revision: 511261 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Sep 2019 18:40:47 -0000 Author: pi Date: Thu Sep 5 18:40:45 2019 New Revision: 511261 URL: https://svnweb.freebsd.org/changeset/ports/511261 Log: dns/powerdns-recursor: upgrade 4.1.14 -> 4.2.0 PR: 239376 Submitted by: Ralf van der Enden (maintainer) Relnotes: https://doc.powerdns.com/recursor/changelog/4.2.html https://blog.powerdns.com/2019/07/15/powerdns-recursor-4-2-0-released/ Added: head/dns/powerdns-recursor/files/patch-pdns_dns__random.cc (contents, props changed) Deleted: head/dns/powerdns-recursor/files/patch-rec__channel.cc Modified: head/dns/powerdns-recursor/Makefile head/dns/powerdns-recursor/distinfo Modified: head/dns/powerdns-recursor/Makefile ============================================================================== --- head/dns/powerdns-recursor/Makefile Thu Sep 5 18:29:06 2019 (r511260) +++ head/dns/powerdns-recursor/Makefile Thu Sep 5 18:40:45 2019 (r511261) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= recursor -DISTVERSION= 4.1.14 -PORTREVISION= 4 +DISTVERSION= 4.2.0 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ PKGNAMEPREFIX= powerdns- @@ -14,7 +13,7 @@ COMMENT= Advanced DNS recursor LICENSE= GPLv2 -BROKEN_armv6= fails to compile: use of overloaded operator << is ambiguous +BROKEN_armv6= fails to compile: use of overloaded operator << is ambiguous BROKEN_armv7= fails to compile: use of overloaded operator << is ambiguous BROKEN_sparc64= fails to compile: json11.cpp: undefined reference to std::__throw_out_of_range_fmt @@ -37,26 +36,27 @@ CXXFLAGS+= -D_GLIBCXX_USE_C99 SUB_FILES= pkg-message -OPTIONS_DEFINE= LUAJIT OPTALGO SETUID +OPTIONS_DEFINE= LUAJIT SETUID OPTIONS_DEFAULT= SETUID LUAJIT_DESC= Use LuaJIT instead of Lua -OPTALGO_DESC= Enable optional algorithms (12, 15 & 16) SETUID_DESC= Run as pdns_recursor user LUAJIT_LIB_DEPENDS= libluajit-5.1.so.2:lang/luajit LUAJIT_USES_OFF= lua -LUAJIT_CONFIGURE_WITH= luajit +LUAJIT_CONFIGURE_ON= --with-lua=luajit -OPTALGO_LIB_DEPENDS= libbotan-2.so:security/botan2 \ - libdecaf.so:security/libdecaf \ - libsodium.so:security/libsodium -OPTALGO_CONFIGURE_ON= --enable-botan \ - --enable-libdecaf \ - --enable-libsodium - SETUID_EXTRA_PATCHES= ${PATCHDIR}/extrapatch-setuid SETUID_VARS= GROUPS=pdns \ USERS=pdns_recursor -.include +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200085 && ${SSL_DEFAULT} != openssl111 +CONFIGURE_ARGS+= --enable-libdecaf \ + --enable-libsodium +LIB_DEPENDS+= libdecaf.so:security/libdecaf \ + libsodium.so:security/libsodium +.endif + +.include Modified: head/dns/powerdns-recursor/distinfo ============================================================================== --- head/dns/powerdns-recursor/distinfo Thu Sep 5 18:29:06 2019 (r511260) +++ head/dns/powerdns-recursor/distinfo Thu Sep 5 18:40:45 2019 (r511261) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560505728 -SHA256 (pdns-recursor-4.1.14.tar.bz2) = 7fceb8fa3bea693aad49d137c801bb3ecc15525cc5a7dc84380321546e87bf14 -SIZE (pdns-recursor-4.1.14.tar.bz2) = 1249908 +TIMESTAMP = 1563267791 +SHA256 (pdns-recursor-4.2.0.tar.bz2) = f03c72c1816fdcc645cc539d8c16721d2ec294feac9b5179e78c3db311b7c2c2 +SIZE (pdns-recursor-4.2.0.tar.bz2) = 1316156 Added: head/dns/powerdns-recursor/files/patch-pdns_dns__random.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/powerdns-recursor/files/patch-pdns_dns__random.cc Thu Sep 5 18:40:45 2019 (r511261) @@ -0,0 +1,12 @@ +--- dns_random.cc.orig 2018-11-29 12:53:42 UTC ++++ dns_random.cc +@@ -40,7 +40,9 @@ + #include + #endif + #if defined(HAVE_GETRANDOM) ++extern "C" { + #include ++} + #endif + + static enum DNS_RNG {