Date: Mon, 24 Apr 2017 10:26:55 +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: r439274 - in head/dns/bind9-devel: . files Message-ID: <201704241026.v3OAQtFR005957@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Mon Apr 24 10:26:55 2017 New Revision: 439274 URL: https://svnweb.freebsd.org/changeset/ports/439274 Log: Update to latest snapshot. Sponsored by: Absolight 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 Apr 24 10:26:50 2017 (r439273) +++ head/dns/bind9-devel/Makefile Mon Apr 24 10:26:55 2017 (r439274) @@ -8,7 +8,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b PORTREVISION= 0 .else # dns/bind9xx here -PORTREVISION= 2 +PORTREVISION= 0 .endif CATEGORIES= dns net ipv6 MASTER_SITES= LOCAL/mat/bind @@ -31,8 +31,8 @@ LICENSE= MPL LICENSE_FILE= ${WRKSRC}/COPYRIGHT # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.12.0a.2017.04.20 -HASH= 706c6ac5 +ISCVERSION= 9.12.0a.2017.04.24 +HASH= 8296b23 USES= cpe libedit @@ -278,8 +278,8 @@ post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/arm ${INSTALL_DATA} ${WRKSRC}/doc/arm/*.html ${STAGEDIR}${DOCSDIR}/arm ${INSTALL_DATA} ${WRKSRC}/doc/arm/Bv9ARM.pdf ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/CHANGES ${WRKSRC}/FAQ \ - ${WRKSRC}/HISTORY ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/CHANGES* ${WRKSRC}/HISTORY.md \ + ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .endif # BIND_TOOLS_SLAVE # Can't use USE_PYTHON=autoplist Modified: head/dns/bind9-devel/distinfo ============================================================================== --- head/dns/bind9-devel/distinfo Mon Apr 24 10:26:50 2017 (r439273) +++ head/dns/bind9-devel/distinfo Mon Apr 24 10:26:55 2017 (r439274) @@ -1,3 +1,3 @@ -TIMESTAMP = 1492693611 -SHA256 (bind9-706c6ac5.tar.gz) = ea2efadf91f26b97fbd4e79a6ce22dfd680440c3f76e2d8219a7208e989b087d -SIZE (bind9-706c6ac5.tar.gz) = 11874695 +TIMESTAMP = 1493027992 +SHA256 (bind9-8296b23.tar.gz) = 300afe34be44410f1ed459bfe160d6ce4162dde9fc27bee56b2ed4c9bf495475 +SIZE (bind9-8296b23.tar.gz) = 11861757 Modified: head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl ============================================================================== --- head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Apr 24 10:26:50 2017 (r439273) +++ head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Apr 24 10:26:55 2017 (r439274) @@ -1,6 +1,6 @@ ---- bin/named/config.c.orig 2017-04-20 07:59:45 UTC +--- bin/named/config.c.orig 2017-04-24 07:26:47 UTC +++ bin/named/config.c -@@ -158,6 +158,8 @@ options {\n\ +@@ -155,6 +155,8 @@ options {\n\ lame-ttl 600;\n\ servfail-ttl 1;\n\ max-ncache-ttl 10800; /* 3 hours */\n\ @@ -9,9 +9,9 @@ max-cache-ttl 604800; /* 1 week */\n\ transfer-format many-answers;\n\ max-cache-size 90%;\n\ ---- bin/named/server.c.orig 2017-04-20 07:59:45 UTC +--- bin/named/server.c.orig 2017-04-24 07:26:47 UTC +++ bin/named/server.c -@@ -3751,6 +3751,16 @@ configure_view(dns_view_t *view, dns_vie +@@ -3702,6 +3702,16 @@ configure_view(dns_view_t *view, dns_vie } obj = NULL; @@ -28,9 +28,9 @@ result = ns_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 2017-04-20 07:59:45 UTC +--- lib/dns/include/dns/view.h.orig 2017-04-24 07:26:47 UTC +++ lib/dns/include/dns/view.h -@@ -146,6 +146,8 @@ struct dns_view { +@@ -143,6 +143,8 @@ struct dns_view { isc_boolean_t requestnsid; isc_boolean_t sendcookie; dns_ttl_t maxcachettl; @@ -39,7 +39,7 @@ dns_ttl_t maxncachettl; isc_uint32_t nta_lifetime; isc_uint32_t nta_recheck; ---- lib/dns/resolver.c.orig 2017-04-20 07:59:45 UTC +--- lib/dns/resolver.c.orig 2017-04-24 07:26:47 UTC +++ lib/dns/resolver.c @@ -5468,6 +5468,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } @@ -60,11 +60,11 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) ---- lib/isccfg/namedconf.c.orig 2017-04-20 07:59:45 UTC +--- lib/isccfg/namedconf.c.orig 2017-04-24 07:26:47 UTC +++ lib/isccfg/namedconf.c -@@ -1882,6 +1882,8 @@ view_clauses[] = { - { "nosit-udp-size", &cfg_type_uint32, CFG_CLAUSEFLAG_OBSOLETE }, - { "max-acache-size", &cfg_type_sizenodefault, 0 }, +@@ -1887,6 +1887,8 @@ view_clauses[] = { + { "max-acache-size", &cfg_type_sizenodefault, + CFG_CLAUSEFLAG_OBSOLETE }, { "max-cache-size", &cfg_type_sizeorpercent, 0 }, + { "override-cache-ttl", &cfg_type_uint32, 0 }, + { "min-cache-ttl", &cfg_type_uint32, 0 }, Modified: head/dns/bind9-devel/files/patch-configure ============================================================================== --- head/dns/bind9-devel/files/patch-configure Mon Apr 24 10:26:50 2017 (r439273) +++ head/dns/bind9-devel/files/patch-configure Mon Apr 24 10:26:55 2017 (r439274) @@ -1,6 +1,6 @@ ---- configure.orig 2017-04-13 01:05:08 UTC +--- configure.orig 2017-04-24 07:26:47 UTC +++ configure -@@ -14401,27 +14401,9 @@ done +@@ -14402,27 +14402,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 -@@ -14464,47 +14446,7 @@ $as_echo "no" >&6; } ;; +@@ -14465,47 +14447,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 -@@ -22666,7 +22608,7 @@ $as_echo "" >&6; } +@@ -22742,7 +22684,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 Apr 24 10:26:50 2017 (r439273) +++ head/dns/bind9-devel/pkg-plist Mon Apr 24 10:26:55 2017 (r439274) @@ -12,7 +12,6 @@ bin/nsupdate include/bind9/check.h include/bind9/getaddresses.h include/bind9/version.h -include/dns/acache.h include/dns/acl.h include/dns/adb.h include/dns/badcache.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704241026.v3OAQtFR005957>