Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Apr 2019 08:36:08 +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: r497467 - in head/dns/bind9-devel: . files
Message-ID:  <201904010836.x318a8Dr062586@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Mon Apr  1 08:36:08 2019
New Revision: 497467
URL: https://svnweb.freebsd.org/changeset/ports/497467

Log:
  Update to latest commit.

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 Apr  1 08:35:59 2019	(r497466)
+++ head/dns/bind9-devel/Makefile	Mon Apr  1 08:36:08 2019	(r497467)
@@ -38,13 +38,13 @@ LIB_DEPENDS=	libxml2.so:textproc/libxml2
 # XXX: remove tar:bz2
 USES=	compiler:c11 cpe libedit ssl tar:bz2
 # ISC releases things like 9.8.0-P1, which our versioning doesn't like
-ISCVERSION=	9.15.0a0.2019.03.22
+ISCVERSION=	9.15.0a0.2019.03.29
 # XXX: Remove gitlab
 USE_GITLAB=	yes
 GL_SITE=	https://gitlab.isc.org
 GL_ACCOUNT=	isc-projects
 GL_PROJECT=	bind9
-GL_COMMIT=	d089387d7f98b26eff89e75200e0d2cb4b7eec6b
+GL_COMMIT=	7e069cb16a0a6b8d3551ecb793e1cea682815942
 
 CPE_VENDOR=	isc
 CPE_VERSION=	${ISCVERSION:C/-.*//}

Modified: head/dns/bind9-devel/distinfo
==============================================================================
--- head/dns/bind9-devel/distinfo	Mon Apr  1 08:35:59 2019	(r497466)
+++ head/dns/bind9-devel/distinfo	Mon Apr  1 08:36:08 2019	(r497467)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1553504621
-SHA256 (isc-projects-bind9-d089387d7f98b26eff89e75200e0d2cb4b7eec6b_GL0.tar.gz) = 4388e1035c0794491affabd1275286e55e5c697261a5d7352a48236ebae95076
-SIZE (isc-projects-bind9-d089387d7f98b26eff89e75200e0d2cb4b7eec6b_GL0.tar.gz) = 6337543
+TIMESTAMP = 1554105090
+SHA256 (isc-projects-bind9-7e069cb16a0a6b8d3551ecb793e1cea682815942_GL0.tar.gz) = c08bd0de7d39bdd1c015b1680eb4e0cc2ee4b0bfaa2bdf310f93924cb58f6b51
+SIZE (isc-projects-bind9-7e069cb16a0a6b8d3551ecb793e1cea682815942_GL0.tar.gz) = 6337730

Modified: head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl
==============================================================================
--- head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl	Mon Apr  1 08:35:59 2019	(r497466)
+++ head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl	Mon Apr  1 08:36:08 2019	(r497467)
@@ -1,4 +1,4 @@
---- bin/named/config.c.orig	2019-03-22 10:58:02 UTC
+--- bin/named/config.c.orig	2019-03-29 15:22:57 UTC
 +++ bin/named/config.c
 @@ -176,6 +176,7 @@ options {\n\
  	notify-source *;\n\
@@ -8,7 +8,7 @@
  	provide-ixfr true;\n\
  	qname-minimization relaxed;\n\
  	query-source address *;\n\
---- bin/named/server.c.orig	2019-03-22 10:58:02 UTC
+--- bin/named/server.c.orig	2019-03-29 15:22:57 UTC
 +++ bin/named/server.c
 @@ -4231,6 +4231,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
  	}
@@ -22,7 +22,7 @@
  	result = named_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	2019-03-22 10:58:02 UTC
+--- lib/dns/include/dns/view.h.orig	2019-03-29 15:22:57 UTC
 +++ lib/dns/include/dns/view.h
 @@ -152,6 +152,7 @@ struct dns_view {
  	bool				requestnsid;
@@ -32,9 +32,9 @@
  	dns_ttl_t			maxncachettl;
  	dns_ttl_t			mincachettl;
  	dns_ttl_t			minncachettl;
---- lib/dns/resolver.c.orig	2019-03-22 10:58:02 UTC
+--- lib/dns/resolver.c.orig	2019-03-29 15:22:57 UTC
 +++ lib/dns/resolver.c
-@@ -6008,6 +6008,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb
+@@ -6011,6 +6011,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb
  		}
  
  		/*
@@ -47,7 +47,7 @@
  		 * Enforce the configure maximum cache TTL.
  		 */
  		if (rdataset->ttl > res->view->maxcachettl) {
---- lib/isccfg/namedconf.c.orig	2019-03-22 10:58:02 UTC
+--- lib/isccfg/namedconf.c.orig	2019-03-29 15:22:57 UTC
 +++ lib/isccfg/namedconf.c
 @@ -1899,6 +1899,7 @@ view_clauses[] = {
  #endif



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