From owner-svn-ports-branches@freebsd.org Wed Sep 2 16:46:10 2015 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21B7E9C9DB6; Wed, 2 Sep 2015 16:46:10 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1250C1BF6; Wed, 2 Sep 2015 16:46:10 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t82Gk9xc014941; Wed, 2 Sep 2015 16:46:09 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t82Gk8nZ014935; Wed, 2 Sep 2015 16:46:08 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201509021646.t82Gk8nZ014935@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 2 Sep 2015 16:46:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r395864 - in branches/2015Q3/dns/powerdns: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Sep 2015 16:46:10 -0000 Author: feld Date: Wed Sep 2 16:46:08 2015 New Revision: 395864 URL: https://svnweb.freebsd.org/changeset/ports/395864 Log: MFH: r395863 dns/powerdns: Update to 3.4.6 - No longer install dnsdist, which conflicted with dns/dnsdist port - Luabackend patch is now FreeBSD/i386 specific and has been submitted upstream for inclusion This update also fixes a DoS vulnerability: https://doc.powerdns.com/md/security/powerdns-advisory-2015-02/ Changelog: https://doc.powerdns.com/md/changelog/#powerdns-authoritative-server-346 PR: 202738 Security: 55c43f5b-5190-11e5-9ad8-14dae9d210b8 Security: CVE-2015-5230 Approved by: ports-secteam (with hat) Modified: branches/2015Q3/dns/powerdns/Makefile branches/2015Q3/dns/powerdns/distinfo branches/2015Q3/dns/powerdns/files/patch-modules__luabackend__lua_functions.cc branches/2015Q3/dns/powerdns/files/patch-modules__luabackend__luabackend.hh branches/2015Q3/dns/powerdns/pkg-plist Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/dns/powerdns/Makefile ============================================================================== --- branches/2015Q3/dns/powerdns/Makefile Wed Sep 2 16:42:46 2015 (r395863) +++ branches/2015Q3/dns/powerdns/Makefile Wed Sep 2 16:46:08 2015 (r395864) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= powerdns -PORTVERSION= 3.4.5 +PORTVERSION= 3.4.6 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ DISTNAME= pdns-${PORTVERSION} Modified: branches/2015Q3/dns/powerdns/distinfo ============================================================================== --- branches/2015Q3/dns/powerdns/distinfo Wed Sep 2 16:42:46 2015 (r395863) +++ branches/2015Q3/dns/powerdns/distinfo Wed Sep 2 16:46:08 2015 (r395864) @@ -1,2 +1,2 @@ -SHA256 (pdns-3.4.5.tar.bz2) = f3e1441532b0af05a6b5efe5346f02d0c55f252fbed62d5b4f2e4a80997c507d -SIZE (pdns-3.4.5.tar.bz2) = 1337222 +SHA256 (pdns-3.4.6.tar.bz2) = 80a6a43cabd14db844bce84482ba56d03d46ebfbf96c88689fb3e2185ac286d8 +SIZE (pdns-3.4.6.tar.bz2) = 1336760 Modified: branches/2015Q3/dns/powerdns/files/patch-modules__luabackend__lua_functions.cc ============================================================================== --- branches/2015Q3/dns/powerdns/files/patch-modules__luabackend__lua_functions.cc Wed Sep 2 16:42:46 2015 (r395863) +++ branches/2015Q3/dns/powerdns/files/patch-modules__luabackend__lua_functions.cc Wed Sep 2 16:46:08 2015 (r395864) @@ -4,7 +4,7 @@ return ret; } -+#ifndef __i386__ ++#if !(defined( __i386__) && defined(__FreeBSD__)) bool LUABackend::getValueFromTable(lua_State *lua, const std::string& key, time_t& value) { lua_pushstring(lua, key.c_str()); lua_gettable(lua, -2); Modified: branches/2015Q3/dns/powerdns/files/patch-modules__luabackend__luabackend.hh ============================================================================== --- branches/2015Q3/dns/powerdns/files/patch-modules__luabackend__luabackend.hh Wed Sep 2 16:42:46 2015 (r395863) +++ branches/2015Q3/dns/powerdns/files/patch-modules__luabackend__luabackend.hh Wed Sep 2 16:46:08 2015 (r395864) @@ -4,7 +4,7 @@ // FUNCTIONS TO THIS BACKEND bool getValueFromTable(lua_State *lua, const std::string& key, string& value); bool getValueFromTable(lua_State *lua, uint32_t key, string& value); -+#ifndef __i386__ ++#if !(defined(__i386__) && defined(__FreeBSD__)) bool getValueFromTable(lua_State *lua, const std::string& key, time_t& value); +#endif bool getValueFromTable(lua_State *lua, const std::string& key, uint32_t& value); Modified: branches/2015Q3/dns/powerdns/pkg-plist ============================================================================== --- branches/2015Q3/dns/powerdns/pkg-plist Wed Sep 2 16:42:46 2015 (r395863) +++ branches/2015Q3/dns/powerdns/pkg-plist Wed Sep 2 16:46:08 2015 (r395864) @@ -5,7 +5,6 @@ bin/zone2ldap bin/zone2sql sbin/pdns_server %%TOOLS%%bin/dnsbulktest -%%TOOLS%%bin/dnsdist %%TOOLS%%bin/dnsreplay %%TOOLS%%bin/dnsscan %%TOOLS%%bin/dnsscope @@ -29,7 +28,6 @@ sbin/pdns_server %%LMDB%%bin/zone2lmdb lib/pdns/libbindbackend.so lib/pdns/libpipebackend.so -%%TOOLS%%man/man1/dnsdist.1.gz %%TOOLS%%man/man1/dnstcpbench.1.gz %%TOOLS%%man/man1/dnsreplay.1.gz %%TOOLS%%man/man1/dnsscope.1.gz