Date: Mon, 14 Jan 2019 08:54:09 +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: r490231 - in head/dns/bind9-devel: . files Message-ID: <201901140854.x0E8s96I012077@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Mon Jan 14 08:54:09 2019 New Revision: 490231 URL: https://svnweb.freebsd.org/changeset/ports/490231 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 Jan 14 08:54:02 2019 (r490230) +++ head/dns/bind9-devel/Makefile Mon Jan 14 08:54:09 2019 (r490231) @@ -9,7 +9,7 @@ PORTREVISION= 0 .else # XXX: correct version # dns/bind9xx here -PORTREVISION= 1 +PORTREVISION= 0 .endif CATEGORIES= dns net ipv6 # XXX: put the ISC master_site @@ -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.13.4a0.2019.01.06 +ISCVERSION= 9.13.4a0.2019.01.13 # XXX: Remove gitlab USE_GITLAB= yes GL_SITE= https://gitlab.isc.org GL_ACCOUNT= isc-projects GL_PROJECT= bind9 -GL_COMMIT= a38b31ccf92daab8e359ef51a1f046177796b53e +GL_COMMIT= 3b1a914395f32ae31f08379e95d174a7d14cd8df CPE_VENDOR= isc CPE_VERSION= ${ISCVERSION:C/-.*//} Modified: head/dns/bind9-devel/distinfo ============================================================================== --- head/dns/bind9-devel/distinfo Mon Jan 14 08:54:02 2019 (r490230) +++ head/dns/bind9-devel/distinfo Mon Jan 14 08:54:09 2019 (r490231) @@ -1,3 +1,3 @@ -TIMESTAMP = 1546869195 -SHA256 (isc-projects-bind9-a38b31ccf92daab8e359ef51a1f046177796b53e_GL0.tar.gz) = e9d897f2fc6ad94d2a4f28778930746239a829b161802b74391a935ebd3fad35 -SIZE (isc-projects-bind9-a38b31ccf92daab8e359ef51a1f046177796b53e_GL0.tar.gz) = 6344877 +TIMESTAMP = 1547453851 +SHA256 (isc-projects-bind9-3b1a914395f32ae31f08379e95d174a7d14cd8df_GL0.tar.gz) = 73129078c2643226643f1ffdfbf4fcd9670a273f9203541a83c52f60102ddd59 +SIZE (isc-projects-bind9-3b1a914395f32ae31f08379e95d174a7d14cd8df_GL0.tar.gz) = 6334993 Modified: head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl ============================================================================== --- head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Jan 14 08:54:02 2019 (r490230) +++ head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Jan 14 08:54:09 2019 (r490231) @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2018-12-20 23:38:02 UTC +--- bin/named/config.c.orig 2019-01-14 02:09:02 UTC +++ bin/named/config.c @@ -179,6 +179,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 2018-12-20 23:38:02 UTC +--- bin/named/server.c.orig 2019-01-14 02:09:02 UTC +++ bin/named/server.c @@ -4153,6 +4153,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 2018-12-20 23:38:02 UTC +--- lib/dns/include/dns/view.h.orig 2019-01-14 02:09:02 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 2018-12-20 23:38:02 UTC +--- lib/dns/resolver.c.orig 2019-01-14 02:09:02 UTC +++ lib/dns/resolver.c -@@ -5967,6 +5967,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb +@@ -5986,6 +5986,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 2018-12-20 23:38:02 UTC +--- lib/isccfg/namedconf.c.orig 2019-01-14 02:09:02 UTC +++ lib/isccfg/namedconf.c @@ -1900,6 +1900,7 @@ view_clauses[] = { { "max-acache-size", &cfg_type_sizenodefault, Modified: head/dns/bind9-devel/files/patch-configure ============================================================================== --- head/dns/bind9-devel/files/patch-configure Mon Jan 14 08:54:02 2019 (r490230) +++ head/dns/bind9-devel/files/patch-configure Mon Jan 14 08:54:09 2019 (r490231) @@ -1,4 +1,4 @@ ---- configure.orig 2018-12-20 23:38:02 UTC +--- configure.orig 2019-01-14 02:09:02 UTC +++ configure @@ -16302,27 +16302,9 @@ done # problems start to show up. @@ -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 -@@ -20939,7 +20881,7 @@ $as_echo "" >&6; } +@@ -20924,7 +20866,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 Jan 14 08:54:02 2019 (r490230) +++ head/dns/bind9-devel/pkg-plist Mon Jan 14 08:54:09 2019 (r490231) @@ -124,7 +124,6 @@ include/dns/zoneverify.h include/dns/zt.h include/dst/dst.h include/dst/gssapi.h -include/dst/lib.h include/dst/result.h include/irs/context.h include/irs/dnsconf.h @@ -177,8 +176,6 @@ include/isc/magic.h include/isc/md.h include/isc/mem.h include/isc/meminfo.h -include/isc/msgcat.h -include/isc/msgs.h include/isc/mutex.h include/isc/mutexblock.h include/isc/net.h @@ -234,7 +231,6 @@ include/isccc/base64.h include/isccc/cc.h include/isccc/ccmsg.h include/isccc/events.h -include/isccc/lib.h include/isccc/result.h include/isccc/sexpr.h include/isccc/symtab.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901140854.x0E8s96I012077>