From bdd1c008d4a1d76b2284eaa53156cfa5f549a002 Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Thu, 2 Sep 2021 07:56:29 +0000 Subject: [PATCH] Tools: Blacklist BIND 9.17+ for Windows --- tools/namecoin-bump-versions.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/namecoin-bump-versions.sh b/tools/namecoin-bump-versions.sh index 7d4e139..ebd548c 100755 --- a/tools/namecoin-bump-versions.sh +++ b/tools/namecoin-bump-versions.sh @@ -91,7 +91,9 @@ done # ncdns-nsis dependencies BIND_VERSION=$(./rbm/rbm showconf ncdns-nsis var/bind_version) -LATEST_BIND_VERSION=$(curl https://ftp.isc.org/isc/bind/ | grep --only-matching '"[0-9]*\.[0-9]*\.[0-9]*/"' | tail --lines=1 | grep --only-matching '[0-9]*\.[0-9]*\.[0-9]*') +# As per https://www.isc.org/download/#BIND , "9.16.x is the last branch of +# BIND with native Windows support." +LATEST_BIND_VERSION=$(curl https://ftp.isc.org/isc/bind/ | grep --only-matching '"[0-9]*\.[0-9]*\.[0-9]*/"' | grep '9\.16' | tail --lines=1 | grep --only-matching '[0-9]*\.[0-9]*\.[0-9]*') if [ "${BIND_VERSION}" != "${LATEST_BIND_VERSION}" ] then