diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2017-10-30 10:48:14 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2017-10-30 10:48:14 +0000 |
commit | cf8142cee15620daba1c8c6fe55e9cdc27d9b7a7 (patch) | |
tree | 3bda8b5b597437d800bcb85cafe39c9f2c67848f /dns | |
parent | 390974e6c14ccd4e3503d6635d6ef26b2c13a4bb (diff) | |
download | freebsd-ports-cf8142cee15620daba1c8c6fe55e9cdc27d9b7a7.zip |
Update to latest commit.
Sponsored by: Absolight
Diffstat (limited to 'dns')
-rw-r--r-- | dns/bind9-devel/Makefile | 6 | ||||
-rw-r--r-- | dns/bind9-devel/distinfo | 6 | ||||
-rw-r--r-- | dns/bind9-devel/files/extrapatch-bind-min-override-ttl | 16 | ||||
-rw-r--r-- | dns/bind9-devel/files/patch-configure | 8 | ||||
-rw-r--r-- | dns/bind9-devel/pkg-plist | 2 |
5 files changed, 18 insertions, 20 deletions
diff --git a/dns/bind9-devel/Makefile b/dns/bind9-devel/Makefile index c1b47150dede..973bf968ccad 100644 --- a/dns/bind9-devel/Makefile +++ b/dns/bind9-devel/Makefile @@ -8,7 +8,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/} PORTREVISION= 0 .else # dns/bind9xx here -PORTREVISION= 1 +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.10.22 -HASH= 2e662cf +ISCVERSION= 9.12.0b1.2017.10.30 +HASH= facf811 USES= cpe libedit diff --git a/dns/bind9-devel/distinfo b/dns/bind9-devel/distinfo index a1e03f6d3d0b..fa1248815729 100644 --- a/dns/bind9-devel/distinfo +++ b/dns/bind9-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1508765328 -SHA256 (bind9-2e662cf.tar.gz) = b646046925a9569a7b3a43c338379db0b8642d7261b299f22a529994d612a7d5 -SIZE (bind9-2e662cf.tar.gz) = 11341720 +TIMESTAMP = 1509359511 +SHA256 (bind9-facf811.tar.gz) = a74889e3820c9e719bb263aca16e509cfc1afd01d4130563c1239be459efbd42 +SIZE (bind9-facf811.tar.gz) = 11352295 diff --git a/dns/bind9-devel/files/extrapatch-bind-min-override-ttl b/dns/bind9-devel/files/extrapatch-bind-min-override-ttl index adb342d49a4a..9914e4071548 100644 --- a/dns/bind9-devel/files/extrapatch-bind-min-override-ttl +++ b/dns/bind9-devel/files/extrapatch-bind-min-override-ttl @@ -1,6 +1,6 @@ ---- bin/named/config.c.orig 2017-10-16 07:38:34 UTC +--- bin/named/config.c.orig 2017-10-30 08:41:24 UTC +++ bin/named/config.c -@@ -178,12 +178,14 @@ options {\n\ +@@ -176,12 +176,14 @@ options {\n\ max-recursion-queries 75;\n\ max-stale-ttl 604800; /* 1 week */\n\ message-compression yes;\n\ @@ -15,9 +15,9 @@ provide-ixfr true;\n\ query-source address *;\n\ query-source-v6 address *;\n\ ---- bin/named/server.c.orig 2017-10-16 07:38:34 UTC +--- bin/named/server.c.orig 2017-10-30 08:41:24 UTC +++ bin/named/server.c -@@ -4044,6 +4044,16 @@ configure_view(dns_view_t *view, dns_vie +@@ -4065,6 +4065,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 2017-10-16 07:38:34 UTC +--- lib/dns/include/dns/view.h.orig 2017-10-30 08:41:24 UTC +++ lib/dns/include/dns/view.h @@ -145,6 +145,8 @@ struct dns_view { isc_boolean_t requestnsid; @@ -45,7 +45,7 @@ dns_ttl_t maxncachettl; isc_uint32_t nta_lifetime; isc_uint32_t nta_recheck; ---- lib/dns/resolver.c.orig 2017-10-16 07:38:34 UTC +--- lib/dns/resolver.c.orig 2017-10-30 08:41:24 UTC +++ lib/dns/resolver.c @@ -5747,6 +5747,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } @@ -66,9 +66,9 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) { ---- lib/isccfg/namedconf.c.orig 2017-10-16 07:38:34 UTC +--- lib/isccfg/namedconf.c.orig 2017-10-30 08:41:24 UTC +++ lib/isccfg/namedconf.c -@@ -1918,6 +1918,8 @@ view_clauses[] = { +@@ -1909,6 +1909,8 @@ view_clauses[] = { { "max-acache-size", &cfg_type_sizenodefault, CFG_CLAUSEFLAG_OBSOLETE }, { "max-cache-size", &cfg_type_sizeorpercent, 0 }, diff --git a/dns/bind9-devel/files/patch-configure b/dns/bind9-devel/files/patch-configure index 8c48cdb111ae..7a0eb328c86a 100644 --- a/dns/bind9-devel/files/patch-configure +++ b/dns/bind9-devel/files/patch-configure @@ -1,6 +1,6 @@ ---- configure.orig 2017-10-16 07:38:34 UTC +--- configure.orig 2017-10-30 08:41:24 UTC +++ configure -@@ -14420,27 +14420,9 @@ done +@@ -14417,27 +14417,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 -@@ -14483,47 +14465,7 @@ $as_echo "no" >&6; } ;; +@@ -14480,47 +14462,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 -@@ -23113,7 +23055,7 @@ $as_echo "" >&6; } +@@ -23088,7 +23030,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). diff --git a/dns/bind9-devel/pkg-plist b/dns/bind9-devel/pkg-plist index 7956c19d6064..cdd3e74b1d14 100644 --- a/dns/bind9-devel/pkg-plist +++ b/dns/bind9-devel/pkg-plist @@ -313,7 +313,6 @@ man/man8/dnssec-settime.8.gz man/man8/dnssec-signzone.8.gz man/man8/dnssec-verify.8.gz man/man8/genrandom.8.gz -man/man8/isc-hmac-fixup.8.gz man/man8/named-checkconf.8.gz man/man8/named-checkzone.8.gz man/man8/named-compilezone.8.gz @@ -342,7 +341,6 @@ sbin/dnssec-settime sbin/dnssec-signzone sbin/dnssec-verify sbin/genrandom -sbin/isc-hmac-fixup sbin/named sbin/named-checkconf sbin/named-checkzone |