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

Mathieu Arnold mat at FreeBSD.org
Mon Mar 11 16:52:51 UTC 2019


Author: mat
Date: Mon Mar 11 16:52:49 2019
New Revision: 495365
URL: https://svnweb.freebsd.org/changeset/ports/495365

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)
  head/dns/bind9-devel/pkg-plist   (contents, props changed)

Modified: head/dns/bind9-devel/Makefile
==============================================================================
--- head/dns/bind9-devel/Makefile	Mon Mar 11 16:52:35 2019	(r495364)
+++ head/dns/bind9-devel/Makefile	Mon Mar 11 16:52:49 2019	(r495365)
@@ -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.03
+ISCVERSION=	9.15.0a0.2019.03.11
 # XXX: Remove gitlab
 USE_GITLAB=	yes
 GL_SITE=	https://gitlab.isc.org
 GL_ACCOUNT=	isc-projects
 GL_PROJECT=	bind9
-GL_COMMIT=	7f6cc1b40559ffc9c09aead11660cfa82ac2b003
+GL_COMMIT=	faa0de1349e72a2ca747f7de4143effdba360d00
 
 CPE_VENDOR=	isc
 CPE_VERSION=	${ISCVERSION:C/-.*//}

Modified: head/dns/bind9-devel/distinfo
==============================================================================
--- head/dns/bind9-devel/distinfo	Mon Mar 11 16:52:35 2019	(r495364)
+++ head/dns/bind9-devel/distinfo	Mon Mar 11 16:52:49 2019	(r495365)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1551701350
-SHA256 (isc-projects-bind9-7f6cc1b40559ffc9c09aead11660cfa82ac2b003_GL0.tar.gz) = d7e3410d023447a5cbff4a2382d67f3ec968aeccc6c38b09b43dc50a47c475a1
-SIZE (isc-projects-bind9-7f6cc1b40559ffc9c09aead11660cfa82ac2b003_GL0.tar.gz) = 6332259
+TIMESTAMP = 1552315934
+SHA256 (isc-projects-bind9-faa0de1349e72a2ca747f7de4143effdba360d00_GL0.tar.gz) = 3cce59ef752afed576acd128106ba0ae116aa8e56c7fd530726684d2017a4e58
+SIZE (isc-projects-bind9-faa0de1349e72a2ca747f7de4143effdba360d00_GL0.tar.gz) = 6336704

Modified: head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl
==============================================================================
--- head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl	Mon Mar 11 16:52:35 2019	(r495364)
+++ head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl	Mon Mar 11 16:52:49 2019	(r495365)
@@ -1,6 +1,6 @@
---- bin/named/config.c.orig	2019-02-01 06:55:25 UTC
+--- bin/named/config.c.orig	2019-03-11 12:28:13 UTC
 +++ bin/named/config.c
-@@ -179,6 +179,7 @@ options {\n\
+@@ -177,6 +177,7 @@ options {\n\
  	notify-source *;\n\
  	notify-source-v6 *;\n\
  	nsec3-test-zone no;\n\
@@ -8,9 +8,9 @@
  	provide-ixfr true;\n\
  	qname-minimization relaxed;\n\
  	query-source address *;\n\
---- bin/named/server.c.orig	2019-02-01 06:55:25 UTC
+--- bin/named/server.c.orig	2019-03-11 12:28:13 UTC
 +++ bin/named/server.c
-@@ -4150,6 +4150,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
+@@ -4176,6 +4176,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
  	}
  
  	obj = NULL;
@@ -22,19 +22,19 @@
  	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-02-01 06:55:25 UTC
+--- lib/dns/include/dns/view.h.orig	2019-03-11 12:28:13 UTC
 +++ lib/dns/include/dns/view.h
 @@ -153,6 +153,7 @@ struct dns_view {
- 	bool			requestnsid;
- 	bool			sendcookie;
+ 	bool				requestnsid;
+ 	bool				sendcookie;
  	dns_ttl_t			maxcachettl;
 +	dns_ttl_t			overridecachettl;
  	dns_ttl_t			maxncachettl;
  	dns_ttl_t			mincachettl;
  	dns_ttl_t			minncachettl;
---- lib/dns/resolver.c.orig	2019-02-01 06:55:25 UTC
+--- lib/dns/resolver.c.orig	2019-03-11 12:28:13 UTC
 +++ lib/dns/resolver.c
-@@ -6008,6 +6008,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb
+@@ -6006,6 +6006,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-02-01 06:55:25 UTC
+--- lib/isccfg/namedconf.c.orig	2019-03-11 12:28:13 UTC
 +++ lib/isccfg/namedconf.c
 @@ -1899,6 +1899,7 @@ view_clauses[] = {
  #endif

Modified: head/dns/bind9-devel/files/patch-configure
==============================================================================
--- head/dns/bind9-devel/files/patch-configure	Mon Mar 11 16:52:35 2019	(r495364)
+++ head/dns/bind9-devel/files/patch-configure	Mon Mar 11 16:52:49 2019	(r495365)
@@ -1,6 +1,6 @@
---- configure.orig	2019-02-10 20:07:38 UTC
+--- configure.orig	2019-03-11 12:28:13 UTC
 +++ configure
-@@ -16302,27 +16302,9 @@ done
+@@ -16594,27 +16594,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
-@@ -16365,47 +16347,7 @@ $as_echo "no" >&6; } ;;
+@@ -16657,47 +16639,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
-@@ -20864,7 +20806,7 @@ $as_echo "" >&6; }
+@@ -21186,7 +21128,7 @@ $as_echo "" >&6; }
  			# Check other locations for includes.
  			# Order is important (sigh).
  

Modified: head/dns/bind9-devel/pkg-plist
==============================================================================
--- head/dns/bind9-devel/pkg-plist	Mon Mar 11 16:52:35 2019	(r495364)
+++ head/dns/bind9-devel/pkg-plist	Mon Mar 11 16:52:49 2019	(r495365)
@@ -270,7 +270,6 @@ include/pkcs11/eddsa.h
 include/pkcs11/pkcs11.h
 include/pkcs11/pkcs11f.h
 include/pkcs11/pkcs11t.h
-lib/filter-aaaa.so
 lib/libbind9.a
 lib/libdns.a
 lib/libirs.a
@@ -278,6 +277,7 @@ lib/libisc.a
 lib/libisccc.a
 lib/libisccfg.a
 lib/libns.a
+lib/named/filter-aaaa.so
 man/man1/arpaname.1.gz
 man/man1/bind9-config.1.gz
 man/man1/delv.1.gz


More information about the svn-ports-all mailing list