Date: Mon, 16 Nov 2015 14:59:01 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401766 - in head/dns/bind9-devel: . files Message-ID: <201511161459.tAGEx1Oq019005@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Mon Nov 16 14:59:01 2015 New Revision: 401766 URL: https://svnweb.freebsd.org/changeset/ports/401766 Log: Update to commit 2df6324. Sponsored by: Absolight Modified: head/dns/bind9-devel/Makefile head/dns/bind9-devel/distinfo head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Modified: head/dns/bind9-devel/Makefile ============================================================================== --- head/dns/bind9-devel/Makefile Mon Nov 16 14:58:56 2015 (r401765) +++ head/dns/bind9-devel/Makefile Mon Nov 16 14:59:01 2015 (r401766) @@ -19,8 +19,8 @@ COMMENT= BIND DNS suite with updated DNS LICENSE= ISCL # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.11.0.a20151109 -HASH= e13d04f +ISCVERSION= 9.11.0.a20151116 +HASH= 2df6324 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind9-devel/distinfo ============================================================================== --- head/dns/bind9-devel/distinfo Mon Nov 16 14:58:56 2015 (r401765) +++ head/dns/bind9-devel/distinfo Mon Nov 16 14:59:01 2015 (r401766) @@ -1,2 +1,2 @@ -SHA256 (bind9-e13d04f.tar.gz) = a1d58d7498c9603e2951d834547b33c50f1f4cee7d1543d65c335af0498db62e -SIZE (bind9-e13d04f.tar.gz) = 10994697 +SHA256 (bind9-2df6324.tar.gz) = e6ea70f7939067f8942e6d95f0c3e8c31f7a427ad0ba6ce54f9125dff06ecda0 +SIZE (bind9-2df6324.tar.gz) = 10996063 Modified: head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl ============================================================================== --- head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Nov 16 14:58:56 2015 (r401765) +++ head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Nov 16 14:59:01 2015 (r401766) @@ -1,20 +1,19 @@ -diff -Nabdur bind-9.6.0-P1.orig/bin/named/config.c bind-9.6.0-P1/bin/named/config.c ---- bin/named/config.c 2009-05-22 12:24:49.000000000 +0400 -+++ bin/named/config.c 2009-05-22 12:31:35.000000000 +0400 -@@ -129,6 +129,8 @@ - min-roots 2;\n\ +--- bin/named/config.c.orig 2015-11-11 11:38:39 UTC ++++ bin/named/config.c +@@ -158,6 +158,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\ max-cache-size 0;\n\ -diff -Nabdur bind-9.6.0-P1.orig/bin/named/server.c bind-9.6.0-P1/bin/named/server.c ---- bin/named/server.c 2009-05-22 12:24:49.000000000 +0400 -+++ bin/named/server.c 2009-05-22 12:32:18.000000000 +0400 -@@ -1727,6 +1727,16 @@ - CHECK(mustbesecure(obj, view->resolver)); +--- bin/named/server.c.orig 2015-11-11 11:38:39 UTC ++++ bin/named/server.c +@@ -3020,6 +3020,16 @@ configure_view(dns_view_t *view, dns_vie + } obj = NULL; + result = ns_config_get(maps, "override-cache-ttl", &obj); @@ -30,22 +29,22 @@ diff -Nabdur bind-9.6.0-P1.orig/bin/name result = ns_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); -diff -Nabdur bind-9.6.0-P1.orig/lib/dns/include/dns/view.h bind-9.6.0-P1/lib/dns/include/dns/view.h ---- lib/dns/include/dns/view.h 2009-05-22 12:24:49.000000000 +0400 -+++ lib/dns/include/dns/view.h 2009-05-22 12:29:03.000000000 +0400 -@@ -131,6 +131,8 @@ - isc_boolean_t provideixfr; + view->maxcachettl = cfg_obj_asuint32(obj); +--- lib/dns/include/dns/view.h.orig 2015-11-11 11:38:39 UTC ++++ lib/dns/include/dns/view.h +@@ -152,6 +152,8 @@ struct dns_view { isc_boolean_t requestnsid; + isc_boolean_t sendcookie; dns_ttl_t maxcachettl; + dns_ttl_t mincachettl; + dns_ttl_t overridecachettl; dns_ttl_t maxncachettl; - in_port_t dstport; + isc_uint32_t nta_lifetime; + isc_uint32_t nta_recheck; dns_aclenv_t aclenv; -diff -Nabdur bind-9.6.0-P1.orig/lib/dns/resolver.c bind-9.6.0-P1/lib/dns/resolver.c ---- lib/dns/resolver.c 2009-05-22 12:24:49.000000000 +0400 -+++ lib/dns/resolver.c 2009-05-22 12:30:41.000000000 +0400 -@@ -4054,6 +4054,18 @@ +--- lib/dns/resolver.c.orig 2015-11-11 11:38:39 UTC ++++ lib/dns/resolver.c +@@ -5397,6 +5397,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -64,7 +63,8 @@ diff -Nabdur bind-9.6.0-P1.orig/lib/dns/ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) ---- lib/isccfg/namedconf.c.orig 2015-11-05 13:15:23 UTC + if (rdataset->ttl > res->view->maxcachettl) +--- lib/isccfg/namedconf.c.orig 2015-11-11 11:38:39 UTC +++ lib/isccfg/namedconf.c @@ -1676,6 +1676,8 @@ view_clauses[] = { { "nosit-udp-size", &cfg_type_uint32, CFG_CLAUSEFLAG_OBSOLETE },
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511161459.tAGEx1Oq019005>