Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Feb 2019 15:38:47 +0000 (UTC)
From:      Kirill Ponomarev <krion@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r493269 - in head/dns/powerdns-recursor: . files
Message-ID:  <201902181538.x1IFcljS066150@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: krion
Date: Mon Feb 18 15:38:47 2019
New Revision: 493269
URL: https://svnweb.freebsd.org/changeset/ports/493269

Log:
  Update to 4.1.11 and add buffer fix for rec_control
  
  The changelog:
  
  #7434: Add an option to export only responses over protobuf #7430:
  Reduce systemcall usage in protobuf logging
  
  Also add a fix (pulled in from OpenBSD) for rec_control's buffer
  being too small to handle output of some commands. This could be
  remedied by setting net.local.dgram.maxdgram=131072 in
  /etc/sysctl.conf, but this patch omits that requirement.
  
  PR:		235392
  Submitted by:	maintainer

Modified:
  head/dns/powerdns-recursor/Makefile
  head/dns/powerdns-recursor/distinfo
  head/dns/powerdns-recursor/files/patch-dnsname.hh

Modified: head/dns/powerdns-recursor/Makefile
==============================================================================
--- head/dns/powerdns-recursor/Makefile	Mon Feb 18 15:30:39 2019	(r493268)
+++ head/dns/powerdns-recursor/Makefile	Mon Feb 18 15:38:47 2019	(r493269)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	recursor
-DISTVERSION=	4.1.10
+DISTVERSION=	4.1.11
 CATEGORIES=	dns ipv6
 MASTER_SITES=	http://downloads.powerdns.com/releases/
 PKGNAMEPREFIX=	powerdns-
@@ -21,8 +21,6 @@ BROKEN_powerpc64=	fails to compile: dnslabeltext.cc: u
 BUILD_DEPENDS=	${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs
 LIB_DEPENDS=	libboost_context.so:devel/boost-libs \
 		libprotobuf.so:devel/protobuf
-
-CONFLICTS_INSTALL=	powerdns-recursor40
 
 USES=		compiler:c++11-lib cpe gmake localbase:ldflags pkgconfig ssl tar:bzip2
 GNU_CONFIGURE=	YES

Modified: head/dns/powerdns-recursor/distinfo
==============================================================================
--- head/dns/powerdns-recursor/distinfo	Mon Feb 18 15:30:39 2019	(r493268)
+++ head/dns/powerdns-recursor/distinfo	Mon Feb 18 15:38:47 2019	(r493269)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1548341968
-SHA256 (pdns-recursor-4.1.10.tar.bz2) = f22dc09dae32fbf394a80831f7e7a2fde2e5a2a5ac572e134de9935629817f01
-SIZE (pdns-recursor-4.1.10.tar.bz2) = 1238148
+TIMESTAMP = 1549022270
+SHA256 (pdns-recursor-4.1.11.tar.bz2) = 9ec7d52b545d3ea4498b17ea5433a686aa0d82e882608dcdcea9a116a3f4d670
+SIZE (pdns-recursor-4.1.11.tar.bz2) = 1239986

Modified: head/dns/powerdns-recursor/files/patch-dnsname.hh
==============================================================================
--- head/dns/powerdns-recursor/files/patch-dnsname.hh	Mon Feb 18 15:30:39 2019	(r493268)
+++ head/dns/powerdns-recursor/files/patch-dnsname.hh	Mon Feb 18 15:38:47 2019	(r493269)
@@ -1,4 +1,4 @@
---- dnsname.hh.orig	2017-01-17 03:18:41 UTC
+--- dnsname.hh.orig	2019-01-31 19:43:44 UTC
 +++ dnsname.hh
 @@ -30,7 +30,7 @@
  #include <boost/version.hpp>
@@ -9,7 +9,7 @@
  #include <boost/container/string.hpp>
  #endif
  
-@@ -133,7 +133,7 @@ public:
+@@ -135,7 +135,7 @@ class DNSName (public)
    inline bool canonCompare(const DNSName& rhs) const;
    bool slowCanonCompare(const DNSName& rhs) const;  
  



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902181538.x1IFcljS066150>