Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Oct 2019 22:54:07 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r514626 - in branches/2019Q4/dns/bind914: . files
Message-ID:  <201910162254.x9GMs7tk068821@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Wed Oct 16 22:54:07 2019
New Revision: 514626
URL: https://svnweb.freebsd.org/changeset/ports/514626

Log:
  MFH: r514625
  
  Update to 9.14.7.
  
  Security:	CVE-2019-6475, CVE-2019-6476
  Changes:	https://downloads.isc.org/isc/bind9/9.14.7/RELEASE-NOTES-bind-9.14.7.html

Modified:
  branches/2019Q4/dns/bind914/Makefile
  branches/2019Q4/dns/bind914/distinfo
  branches/2019Q4/dns/bind914/files/extrapatch-bind-min-override-ttl
  branches/2019Q4/dns/bind914/files/patch-configure
Directory Properties:
  branches/2019Q4/   (props changed)

Modified: branches/2019Q4/dns/bind914/Makefile
==============================================================================
--- branches/2019Q4/dns/bind914/Makefile	Wed Oct 16 22:53:25 2019	(r514625)
+++ branches/2019Q4/dns/bind914/Makefile	Wed Oct 16 22:54:07 2019	(r514626)
@@ -36,7 +36,7 @@ RUN_DEPENDS=	bind-tools>0:dns/bind-tools
 
 USES=	compiler:c11 cpe libedit pkgconfig ssl
 # ISC releases things like 9.8.0-P1, which our versioning doesn't like
-ISCVERSION=	9.14.6
+ISCVERSION=	9.14.7
 
 CPE_VENDOR=	isc
 CPE_VERSION=	${ISCVERSION:C/-.*//}

Modified: branches/2019Q4/dns/bind914/distinfo
==============================================================================
--- branches/2019Q4/dns/bind914/distinfo	Wed Oct 16 22:53:25 2019	(r514625)
+++ branches/2019Q4/dns/bind914/distinfo	Wed Oct 16 22:54:07 2019	(r514626)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1568842517
-SHA256 (bind-9.14.6.tar.gz) = 8967a040ed900e1800293b9874357fc2f267f33c723aa617268e163bd921edfe
-SIZE (bind-9.14.6.tar.gz) = 6314291
+TIMESTAMP = 1571265383
+SHA256 (bind-9.14.7.tar.gz) = cea0f54e5908f77ffd21eb312ee9dd4f3f8f93ca312c6118f27d6c0fba45291d
+SIZE (bind-9.14.7.tar.gz) = 6320994

Modified: branches/2019Q4/dns/bind914/files/extrapatch-bind-min-override-ttl
==============================================================================
--- branches/2019Q4/dns/bind914/files/extrapatch-bind-min-override-ttl	Wed Oct 16 22:53:25 2019	(r514625)
+++ branches/2019Q4/dns/bind914/files/extrapatch-bind-min-override-ttl	Wed Oct 16 22:54:07 2019	(r514626)
@@ -1,4 +1,4 @@
---- bin/named/config.c.orig	2019-08-13 12:42:31 UTC
+--- bin/named/config.c.orig	2019-10-02 06:24:10 UTC
 +++ bin/named/config.c
 @@ -181,6 +181,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-08-13 12:42:31 UTC
+--- bin/named/server.c.orig	2019-10-02 06:24:10 UTC
 +++ bin/named/server.c
 @@ -4246,6 +4246,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-08-13 12:42:31 UTC
+--- lib/dns/include/dns/view.h.orig	2019-10-02 06:24:10 UTC
 +++ lib/dns/include/dns/view.h
 @@ -153,6 +153,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-08-13 12:42:31 UTC
+--- lib/dns/resolver.c.orig	2019-10-02 06:24:10 UTC
 +++ lib/dns/resolver.c
-@@ -6035,6 +6035,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb
+@@ -6064,6 +6064,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-08-13 12:42:31 UTC
+--- lib/isccfg/namedconf.c.orig	2019-10-02 06:24:10 UTC
 +++ lib/isccfg/namedconf.c
 @@ -1901,6 +1901,7 @@ view_clauses[] = {
  #endif

Modified: branches/2019Q4/dns/bind914/files/patch-configure
==============================================================================
--- branches/2019Q4/dns/bind914/files/patch-configure	Wed Oct 16 22:53:25 2019	(r514625)
+++ branches/2019Q4/dns/bind914/files/patch-configure	Wed Oct 16 22:54:07 2019	(r514626)
@@ -1,6 +1,6 @@
---- configure.orig	2019-09-09 14:51:54 UTC
+--- configure.orig	2019-10-02 06:24:10 UTC
 +++ configure
-@@ -16836,27 +16836,9 @@ done
+@@ -16834,27 +16834,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
-@@ -16899,47 +16881,7 @@ $as_echo "no" >&6; } ;;
+@@ -16897,47 +16879,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
-@@ -21408,7 +21350,7 @@ $as_echo "" >&6; }
+@@ -21355,7 +21297,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?201910162254.x9GMs7tk068821>