aboutsummaryrefslogtreecommitdiff
path: root/dns/bind9-devel
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2020-09-14 15:11:41 +0000
committerMathieu Arnold <mat@FreeBSD.org>2020-09-14 15:11:41 +0000
commitb56b73af91e9f21ed7161b81bc5f75eee36a904a (patch)
tree5242a5ed6823fd4beaa7e884b72656272e2d8d40 /dns/bind9-devel
parentd736353cea4e7d7ad0809ca94e29ee911d4984d9 (diff)
downloadports-b56b73af91e9f21ed7161b81bc5f75eee36a904a.tar.gz
ports-b56b73af91e9f21ed7161b81bc5f75eee36a904a.zip
Update to latest commit.
Notes
Notes: svn path=/head/; revision=548619
Diffstat (limited to 'dns/bind9-devel')
-rw-r--r--dns/bind9-devel/Makefile4
-rw-r--r--dns/bind9-devel/distinfo6
-rw-r--r--dns/bind9-devel/files/extrapatch-bind-min-override-ttl12
3 files changed, 11 insertions, 11 deletions
diff --git a/dns/bind9-devel/Makefile b/dns/bind9-devel/Makefile
index 81b8bd4e8011..9ec116ca62e4 100644
--- a/dns/bind9-devel/Makefile
+++ b/dns/bind9-devel/Makefile
@@ -48,13 +48,13 @@ RUN_DEPENDS= bind-tools>0:dns/bind-tools
# XXX: remove tar:bz2
USES= autoreconf compiler:c11 cpe libedit libtool pkgconfig ssl tar:bz2
# ISC releases things like 9.8.0-P1, which our versioning doesn't like
-ISCVERSION= 9.17.4a0.2020.09.04
+ISCVERSION= 9.17.4a0.2020.09.14
# XXX: Remove gitlab
USE_GITLAB= yes
GL_SITE= https://gitlab.isc.org
GL_ACCOUNT= isc-projects
GL_PROJECT= bind9
-GL_COMMIT= 4ed3238eace80c3701c6bbf6457e09201d5a9262
+GL_COMMIT= 00c3533a7046cda366151da68fb70ff4d0134fd8
CPE_VENDOR= isc
CPE_VERSION= ${ISCVERSION:C/-.*//}
diff --git a/dns/bind9-devel/distinfo b/dns/bind9-devel/distinfo
index 0b710f6cac4a..77bce4aa43fe 100644
--- a/dns/bind9-devel/distinfo
+++ b/dns/bind9-devel/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1599490624
-SHA256 (isc-projects-bind9-4ed3238eace80c3701c6bbf6457e09201d5a9262_GL0.tar.gz) = 6640ace40e2386cbe3a86e183cc2d092c8ac52f096baa56a4dfd2c6e9a2f03dc
-SIZE (isc-projects-bind9-4ed3238eace80c3701c6bbf6457e09201d5a9262_GL0.tar.gz) = 4342623
+TIMESTAMP = 1600079727
+SHA256 (isc-projects-bind9-00c3533a7046cda366151da68fb70ff4d0134fd8_GL0.tar.gz) = ff50248443ce46d9a05848dbb51c445d48fe905e3a706376040ec7ba80630119
+SIZE (isc-projects-bind9-00c3533a7046cda366151da68fb70ff4d0134fd8_GL0.tar.gz) = 4343905
diff --git a/dns/bind9-devel/files/extrapatch-bind-min-override-ttl b/dns/bind9-devel/files/extrapatch-bind-min-override-ttl
index ecfab0464c5f..1c91dd54f27c 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 @@
Add the override-cache-ttl feature.
---- bin/named/config.c.orig 2020-09-04 21:22:20 UTC
+--- bin/named/config.c.orig 2020-09-14 05:28:47 UTC
+++ bin/named/config.c
@@ -180,6 +180,7 @@ options {\n\
notify-source *;\n\
@@ -10,7 +10,7 @@ Add the override-cache-ttl feature.
provide-ixfr true;\n\
qname-minimization relaxed;\n\
query-source address *;\n\
---- bin/named/server.c.orig 2020-09-04 21:22:20 UTC
+--- bin/named/server.c.orig 2020-09-14 05:28:47 UTC
+++ bin/named/server.c
@@ -4343,6 +4343,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
}
@@ -24,7 +24,7 @@ Add the override-cache-ttl feature.
result = named_config_get(maps, "max-cache-ttl", &obj);
INSIST(result == ISC_R_SUCCESS);
view->maxcachettl = cfg_obj_asduration(obj);
---- lib/dns/include/dns/view.h.orig 2020-09-04 21:22:20 UTC
+--- lib/dns/include/dns/view.h.orig 2020-09-14 05:28:47 UTC
+++ lib/dns/include/dns/view.h
@@ -152,6 +152,7 @@ struct dns_view {
bool requestnsid;
@@ -34,9 +34,9 @@ Add the override-cache-ttl feature.
dns_ttl_t maxncachettl;
dns_ttl_t mincachettl;
dns_ttl_t minncachettl;
---- lib/dns/resolver.c.orig 2020-09-04 21:22:20 UTC
+--- lib/dns/resolver.c.orig 2020-09-14 05:28:47 UTC
+++ lib/dns/resolver.c
-@@ -6263,6 +6263,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb
+@@ -6265,6 +6265,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb
}
/*
@@ -49,7 +49,7 @@ Add the override-cache-ttl feature.
* Enforce the configure maximum cache TTL.
*/
if (rdataset->ttl > res->view->maxcachettl) {
---- lib/isccfg/namedconf.c.orig 2020-09-04 21:22:20 UTC
+--- lib/isccfg/namedconf.c.orig 2020-09-14 05:28:47 UTC
+++ lib/isccfg/namedconf.c
@@ -1993,6 +1993,7 @@ static cfg_clausedef_t view_clauses[] = {
#endif /* ifdef HAVE_LMDB */