svn commit: r449251 - in head/dns/bind9-devel: . files

Mathieu Arnold mat at FreeBSD.org
Mon Sep 4 14:29:56 UTC 2017


Author: mat
Date: Mon Sep  4 14:29:55 2017
New Revision: 449251
URL: https://svnweb.freebsd.org/changeset/ports/449251

Log:
  Update to latest commit.
  
  Sponsored by:	Absolight

Modified:
  head/dns/bind9-devel/Makefile   (contents, props changed)
  head/dns/bind9-devel/distinfo   (contents, props changed)
  head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl   (contents, props changed)

Modified: head/dns/bind9-devel/Makefile
==============================================================================
--- head/dns/bind9-devel/Makefile	Mon Sep  4 14:29:44 2017	(r449250)
+++ head/dns/bind9-devel/Makefile	Mon Sep  4 14:29:55 2017	(r449251)
@@ -31,8 +31,8 @@ LICENSE=	MPL
 LICENSE_FILE=	${WRKSRC}/COPYRIGHT
 
 # ISC releases things like 9.8.0-P1, which our versioning doesn't like
-ISCVERSION=	9.12.0a.2017.08.26
-HASH=		503223b
+ISCVERSION=	9.12.0a.2017.09.04
+HASH=		1007623
 
 USES=	cpe libedit
 

Modified: head/dns/bind9-devel/distinfo
==============================================================================
--- head/dns/bind9-devel/distinfo	Mon Sep  4 14:29:44 2017	(r449250)
+++ head/dns/bind9-devel/distinfo	Mon Sep  4 14:29:55 2017	(r449251)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1503923142
-SHA256 (bind9-503223b.tar.gz) = ba4bc8ac9afa73cc6f0ae29066b929ff034fd555ebb4da23239a47dbc0812090
-SIZE (bind9-503223b.tar.gz) = 11901720
+TIMESTAMP = 1504530859
+SHA256 (bind9-1007623.tar.gz) = 8bd1cbde1ae534398eae50c6e1199215c608fabea328e64e91025a59d2ebeb2d
+SIZE (bind9-1007623.tar.gz) = 11908264

Modified: head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl
==============================================================================
--- head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl	Mon Sep  4 14:29:44 2017	(r449250)
+++ head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl	Mon Sep  4 14:29:55 2017	(r449251)
@@ -1,15 +1,21 @@
---- bin/named/config.c.orig	2017-08-21 08:20:10 UTC
+--- bin/named/config.c.orig	2017-09-04 08:22:52 UTC
 +++ bin/named/config.c
-@@ -156,6 +156,8 @@ options {\n\
- 	lame-ttl 600;\n\
- 	servfail-ttl 1;\n\
- 	max-ncache-ttl 10800; /* 3 hours */\n\
-+       override-cache-ttl 0; /* do not override */\n\
-+       min-cache-ttl 0; /* no minimal, zero is allowed */\n\
- 	max-cache-ttl 604800; /* 1 week */\n\
- 	transfer-format many-answers;\n\
- 	max-cache-size 90%;\n\
---- bin/named/server.c.orig	2017-08-21 08:20:10 UTC
+@@ -176,12 +176,14 @@ options {\n\
+ 	max-recursion-depth 7;\n\
+ 	max-recursion-queries 75;\n\
+ 	message-compression yes;\n\
++	min-cache-ttl 0; /* no minimal, zero is allowed */\n\
+ #	min-roots <obsolete>;\n\
+ 	minimal-any false;\n\
+ 	minimal-responses true;\n\
+ 	notify-source *;\n\
+ 	notify-source-v6 *;\n\
+ 	nsec3-test-zone no;\n\
++	override-cache-ttl 0; /* do not override */\n\
+ 	provide-ixfr true;\n\
+ 	query-source address *;\n\
+ 	query-source-v6 address *;\n\
+--- bin/named/server.c.orig	2017-09-04 08:22:52 UTC
 +++ bin/named/server.c
 @@ -3722,6 +3722,16 @@ configure_view(dns_view_t *view, dns_vie
  	}
@@ -28,9 +34,9 @@
  	result = ns_config_get(maps, "max-cache-ttl", &obj);
  	INSIST(result == ISC_R_SUCCESS);
  	view->maxcachettl = cfg_obj_asuint32(obj);
---- lib/dns/include/dns/view.h.orig	2017-08-21 08:20:10 UTC
+--- lib/dns/include/dns/view.h.orig	2017-09-04 08:22:52 UTC
 +++ lib/dns/include/dns/view.h
-@@ -144,6 +144,8 @@ struct dns_view {
+@@ -145,6 +145,8 @@ struct dns_view {
  	isc_boolean_t			requestnsid;
  	isc_boolean_t			sendcookie;
  	dns_ttl_t			maxcachettl;
@@ -39,9 +45,9 @@
  	dns_ttl_t			maxncachettl;
  	isc_uint32_t			nta_lifetime;
  	isc_uint32_t			nta_recheck;
---- lib/dns/resolver.c.orig	2017-08-21 08:20:10 UTC
+--- lib/dns/resolver.c.orig	2017-09-04 08:22:52 UTC
 +++ lib/dns/resolver.c
-@@ -5687,6 +5687,18 @@ cache_name(fetchctx_t *fctx, dns_name_t 
+@@ -5723,6 +5723,18 @@ cache_name(fetchctx_t *fctx, dns_name_t 
  		}
  
  		/*
@@ -60,9 +66,9 @@
  		 * Enforce the configure maximum cache TTL.
  		 */
  		if (rdataset->ttl > res->view->maxcachettl)
---- lib/isccfg/namedconf.c.orig	2017-08-21 08:20:10 UTC
+--- lib/isccfg/namedconf.c.orig	2017-09-04 08:22:52 UTC
 +++ lib/isccfg/namedconf.c
-@@ -1896,6 +1896,8 @@ view_clauses[] = {
+@@ -1894,6 +1894,8 @@ view_clauses[] = {
  	{ "max-acache-size", &cfg_type_sizenodefault,
  	  CFG_CLAUSEFLAG_OBSOLETE },
  	{ "max-cache-size", &cfg_type_sizeorpercent, 0 },


More information about the svn-ports-all mailing list