Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Nov 2018 17:28:04 +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: r484813 - in head/dns/bind9-devel: . files
Message-ID:  <201811121728.wACHS47r050154@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Mon Nov 12 17:28:04 2018
New Revision: 484813
URL: https://svnweb.freebsd.org/changeset/ports/484813

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)
  head/dns/bind9-devel/files/patch-configure   (contents, props changed)

Modified: head/dns/bind9-devel/Makefile
==============================================================================
--- head/dns/bind9-devel/Makefile	Mon Nov 12 17:27:40 2018	(r484812)
+++ head/dns/bind9-devel/Makefile	Mon Nov 12 17:28:04 2018	(r484813)
@@ -40,13 +40,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.13.1a0.2018.11.02
+ISCVERSION=	9.13.1a0.2018.11.12
 # XXX: Remove gitlab
 USE_GITLAB=	yes
 GL_SITE=	https://gitlab.isc.org
 GL_ACCOUNT=	isc-projects
 GL_PROJECT=	bind9
-GL_COMMIT=	d88efa7e40cbf244ca7886d8ddf0f0361ce8a518
+GL_COMMIT=	62a92b7784a6fb5a1b29bce398d18e892a62846b
 
 CPE_VENDOR=	isc
 CPE_VERSION=	${ISCVERSION:C/-.*//}

Modified: head/dns/bind9-devel/distinfo
==============================================================================
--- head/dns/bind9-devel/distinfo	Mon Nov 12 17:27:40 2018	(r484812)
+++ head/dns/bind9-devel/distinfo	Mon Nov 12 17:28:04 2018	(r484813)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1541405974
-SHA256 (isc-projects-bind9-d88efa7e40cbf244ca7886d8ddf0f0361ce8a518_GL0.tar.gz) = b8794031fcf4552f7cd305c2787bc4c6389e8ce35915c6a01212dc8877f04bdd
-SIZE (isc-projects-bind9-d88efa7e40cbf244ca7886d8ddf0f0361ce8a518_GL0.tar.gz) = 7266983
+TIMESTAMP = 1542017471
+SHA256 (isc-projects-bind9-62a92b7784a6fb5a1b29bce398d18e892a62846b_GL0.tar.gz) = 9d15143db25acb78d332574251bd92932b8c2e72610483f2d2c85882840ea616
+SIZE (isc-projects-bind9-62a92b7784a6fb5a1b29bce398d18e892a62846b_GL0.tar.gz) = 7273651

Modified: head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl
==============================================================================
--- head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl	Mon Nov 12 17:27:40 2018	(r484812)
+++ head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl	Mon Nov 12 17:28:04 2018	(r484813)
@@ -1,4 +1,4 @@
---- bin/named/config.c.orig	2018-10-31 13:26:42 UTC
+--- bin/named/config.c.orig	2018-11-12 07:12:04 UTC
 +++ bin/named/config.c
 @@ -174,12 +174,14 @@ options {\n\
  	max-recursion-queries 75;\n\
@@ -15,9 +15,9 @@
  	provide-ixfr true;\n\
  	qname-minimization relaxed;\n\
  	query-source address *;\n\
---- bin/named/server.c.orig	2018-10-31 13:26:42 UTC
+--- bin/named/server.c.orig	2018-11-12 07:12:04 UTC
 +++ bin/named/server.c
-@@ -4101,6 +4101,16 @@ configure_view(dns_view_t *view, dns_vie
+@@ -4109,6 +4109,16 @@ configure_view(dns_view_t *view, dns_vie
  	}
  
  	obj = NULL;
@@ -34,7 +34,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	2018-10-31 13:26:42 UTC
+--- lib/dns/include/dns/view.h.orig	2018-11-12 07:12:04 UTC
 +++ lib/dns/include/dns/view.h
 @@ -153,6 +153,8 @@ struct dns_view {
  	bool			requestnsid;
@@ -45,9 +45,9 @@
  	dns_ttl_t			maxncachettl;
  	uint32_t			nta_lifetime;
  	uint32_t			nta_recheck;
---- lib/dns/resolver.c.orig	2018-10-31 13:26:42 UTC
+--- lib/dns/resolver.c.orig	2018-11-12 07:12:04 UTC
 +++ lib/dns/resolver.c
-@@ -5926,6 +5926,18 @@ cache_name(fetchctx_t *fctx, dns_name_t 
+@@ -5952,6 +5952,18 @@ cache_name(fetchctx_t *fctx, dns_name_t 
  		}
  
  		/*
@@ -66,7 +66,7 @@
  		 * Enforce the configure maximum cache TTL.
  		 */
  		if (rdataset->ttl > res->view->maxcachettl) {
---- lib/isccfg/namedconf.c.orig	2018-10-31 13:26:42 UTC
+--- lib/isccfg/namedconf.c.orig	2018-11-12 07:12:04 UTC
 +++ lib/isccfg/namedconf.c
 @@ -1921,6 +1921,8 @@ view_clauses[] = {
  	{ "max-acache-size", &cfg_type_sizenodefault,

Modified: head/dns/bind9-devel/files/patch-configure
==============================================================================
--- head/dns/bind9-devel/files/patch-configure	Mon Nov 12 17:27:40 2018	(r484812)
+++ head/dns/bind9-devel/files/patch-configure	Mon Nov 12 17:28:04 2018	(r484813)
@@ -1,6 +1,6 @@
---- configure.orig	2018-10-31 13:26:42 UTC
+--- configure.orig	2018-11-12 07:12:04 UTC
 +++ configure
-@@ -16328,27 +16328,9 @@ done
+@@ -16389,27 +16389,9 @@ done
  		# problems start to show up.
  		saved_libs="$LIBS"
  		for TRY_LIBS in \
@@ -30,7 +30,7 @@
  		    { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5
  $as_echo_n "checking linking as $TRY_LIBS... " >&6; }
  		    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-@@ -16391,47 +16373,7 @@ $as_echo "no" >&6; } ;;
+@@ -16452,47 +16434,7 @@ $as_echo "no" >&6; } ;;
  		no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;;
  		esac
  
@@ -79,7 +79,7 @@
  		DNS_GSSAPI_LIBS="$LIBS"
  
  		{ $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5
-@@ -20980,7 +20922,7 @@ $as_echo "" >&6; }
+@@ -21032,7 +20974,7 @@ $as_echo "" >&6; }
  			# Check other locations for includes.
  			# Order is important (sigh).
  



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