As upstream say... "We expect that this will be the final version of the 9.15 experimental development branch released before that branch is designated as stable and transitions to become BIND 9.16 (at which point we will begin a new 9.17 experimental development branch.) If you are one of the operators who has been helping by testing the 9.15 experimental development branch we especially encourage feedback on the branch *before* we release BIND 9.16.0."
Here's a port update diff if anyone is running this and would like to test. Index: Makefile =================================================================== RCS file: /cvs/ports/net/isc-bind/Makefile,v retrieving revision 1.109 diff -u -p -r1.109 Makefile --- Makefile 23 Jan 2020 22:08:08 -0000 1.109 +++ Makefile 23 Jan 2020 22:11:17 -0000 @@ -5,9 +5,9 @@ COMMENT= Berkeley Internet Name Daemon: # 9.11 is an ESV. After 9.11 the format changes: odd numbers are devel, # even numbers are stable (and for stable branches, point releases are # bug fixes only). The next ESV will be 9.16. -V= 9.14.10 +V= 9.15.8 +EXTRACT_SUFX= .tar.xz EPOCH= 0 -REVISION= 0 DISTNAME= bind-$V PKGNAME= isc-bind-${V:S/-P/pl/} @@ -30,18 +30,20 @@ MAINTAINER= Stuart Henderson <sthen@open # MPL 2.0 PERMIT_PACKAGE= Yes -WANTLIB += c crypto iconv idn2 json-c lzma m pthread unistring xml2 z +WANTLIB += c crypto iconv idn2 json-c lzma m pthread unistring uv xml2 z MASTER_SITES= ${MASTER_SITE_ISC:=bind9/$V/} MODULES= lang/python +MODPY_VERSION= ${MODPY_DEFAULT_VERSION_3} # used for dnssec-checkds/dnssec-coverage, but don't want to force the run dep. # XXX subpackage? MODPY_RUNDEP= No -BUILD_DEPENDS= devel/py-ply +BUILD_DEPENDS= devel/py-ply${MODPY_FLAVOR} LIB_DEPENDS= converters/libiconv \ devel/json-c \ devel/libidn2 \ + devel/libuv \ textproc/libxml # /usr/obj/ports/isc-bind-9.14.9/bind-9.14.9/lib/dns/gen.c:29:10: fatal error: 'isc/platform.h' file not found @@ -75,17 +77,21 @@ FAKE_FLAGS= sysconfdir=${PREFIX}/share/e FLAVORS= geoip FLAVOR?= .if ${FLAVOR:Mgeoip} -CONFIGURE_ARGS+= --with-geoip2 LIB_DEPENDS+= net/libmaxminddb WANTLIB+= maxminddb +.else +CONFIGURE_ARGS+= --disable-geoip .endif # not strictly speaking interactive, but it configures temporary addresses on # lo0 as root, so let's try and avoid running it unintentionally TEST_IS_INTERACTIVE= Yes +TEST_DEPENDS= sysutils/coreutils pre-test: + @echo '*** tests still need more work in the port - server processes not starting' cd ${WRKSRC}/bin/tests/system && ${SUDO} ./ifconfig.sh up + ln -fs ${LOCALBASE}/bin/gseq ${WRKDIR}/bin/seq post-test: cd ${WRKSRC}/bin/tests/system && ${SUDO} ./ifconfig.sh down Index: distinfo =================================================================== RCS file: /cvs/ports/net/isc-bind/distinfo,v retrieving revision 1.68 diff -u -p -r1.68 distinfo --- distinfo 23 Jan 2020 20:52:05 -0000 1.68 +++ distinfo 23 Jan 2020 22:11:17 -0000 @@ -1,2 +1,2 @@ -SHA256 (bind-9.14.10.tar.gz) = SrmNXOMQIDS4ohov5ZQmrrBb+gvkdSESffzPCa9gc1o= -SIZE (bind-9.14.10.tar.gz) = 6303811 +SHA256 (bind-9.15.8.tar.xz) = c5epJXXypjVJcnsit3BaMxT627sYKdSefE5ed/sT2Rk= +SIZE (bind-9.15.8.tar.xz) = 4518156 Index: patches/patch-bin_dig_dig_c =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-bin_dig_dig_c,v retrieving revision 1.15 diff -u -p -r1.15 patch-bin_dig_dig_c --- patches/patch-bin_dig_dig_c 18 Dec 2019 19:38:17 -0000 1.15 +++ patches/patch-bin_dig_dig_c 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-bin_dig_dig_c,v 1.15 201 Index: bin/dig/dig.c --- bin/dig/dig.c.orig +++ bin/dig/dig.c -@@ -18,6 +18,7 @@ +@@ -16,6 +16,7 @@ #include <stdlib.h> #include <time.h> #include <ctype.h> @@ -11,7 +11,7 @@ Index: bin/dig/dig.c #include <isc/app.h> #include <isc/netaddr.h> -@@ -2246,6 +2247,15 @@ void dig_setup(int argc, char **argv) +@@ -2486,6 +2487,15 @@ dig_setup(int argc, char **argv) { ISC_LIST_INIT(server_list); ISC_LIST_INIT(search_list); @@ -27,7 +27,7 @@ Index: bin/dig/dig.c debug("dig_setup()"); /* setup dighost callbacks */ -@@ -2274,6 +2284,16 @@ void dig_query_setup(bool is_batchfile, bool config_on +@@ -2517,6 +2527,16 @@ void dig_query_setup(bool is_batchfile, bool config_on setup_file_key(); else if (keysecret[0] != 0) setup_text_key(); Index: patches/patch-bin_dig_host_c =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-bin_dig_host_c,v retrieving revision 1.12 diff -u -p -r1.12 patch-bin_dig_host_c --- patches/patch-bin_dig_host_c 18 Dec 2019 19:38:17 -0000 1.12 +++ patches/patch-bin_dig_host_c 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-bin_dig_host_c,v 1.12 20 Index: bin/dig/host.c --- bin/dig/host.c.orig +++ bin/dig/host.c -@@ -17,6 +17,7 @@ +@@ -15,6 +15,7 @@ #include <stdbool.h> #include <stdlib.h> #include <limits.h> @@ -11,7 +11,7 @@ Index: bin/dig/host.c #ifdef HAVE_LOCALE_H #include <locale.h> -@@ -874,6 +875,15 @@ main(int argc, char **argv) { +@@ -875,6 +876,15 @@ main(int argc, char **argv) { dighost_trying = trying; dighost_shutdown = host_shutdown; @@ -27,7 +27,7 @@ Index: bin/dig/host.c debug("main()"); progname = argv[0]; pre_parse_args(argc, argv); -@@ -886,6 +896,16 @@ main(int argc, char **argv) { +@@ -887,6 +897,16 @@ main(int argc, char **argv) { setup_file_key(); else if (keysecret[0] != 0) setup_text_key(); Index: patches/patch-bin_dig_nslookup_c =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-bin_dig_nslookup_c,v retrieving revision 1.13 diff -u -p -r1.13 patch-bin_dig_nslookup_c --- patches/patch-bin_dig_nslookup_c 18 Dec 2019 19:38:17 -0000 1.13 +++ patches/patch-bin_dig_nslookup_c 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-bin_dig_nslookup_c,v 1.1 Index: bin/dig/nslookup.c --- bin/dig/nslookup.c.orig +++ bin/dig/nslookup.c -@@ -1003,6 +1003,15 @@ main(int argc, char **argv) { +@@ -1004,6 +1004,15 @@ main(int argc, char **argv) { result = isc_app_start(); check_result(result, "isc_app_start"); @@ -19,7 +19,7 @@ Index: bin/dig/nslookup.c setup_libs(); progname = argv[0]; -@@ -1012,6 +1021,15 @@ main(int argc, char **argv) { +@@ -1013,6 +1022,15 @@ main(int argc, char **argv) { setup_file_key(); else if (keysecret[0] != 0) setup_text_key(); Index: patches/patch-bin_named_include_named_globals_h =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-bin_named_include_named_globals_h,v retrieving revision 1.13 diff -u -p -r1.13 patch-bin_named_include_named_globals_h --- patches/patch-bin_named_include_named_globals_h 18 Dec 2019 15:05:43 -0000 1.13 +++ patches/patch-bin_named_include_named_globals_h 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-bin_named_include_named_ Index: bin/named/include/named/globals.h --- bin/named/include/named/globals.h.orig +++ bin/named/include/named/globals.h -@@ -135,7 +135,7 @@ EXTERN const char * named_g_defaultpidfile INIT(NAME +@@ -137,7 +137,7 @@ EXTERN const char * named_g_defaultpidfile INIT(NAME "/run/named.pid"); #endif Index: patches/patch-configure_ac =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-configure_ac,v retrieving revision 1.1 diff -u -p -r1.1 patch-configure_ac --- patches/patch-configure_ac 6 Jan 2020 14:45:40 -0000 1.1 +++ patches/patch-configure_ac 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-configure_ac,v 1.1 2020/ Index: configure.ac --- configure.ac.orig +++ configure.ac -@@ -2011,7 +2011,7 @@ AC_DEFINE(NEED_OPTARG, 1, [Defined if extern char *opt +@@ -1746,7 +1746,7 @@ AC_DEFINE(NEED_OPTARG, 1, [Defined if extern char *opt AC_MSG_CHECKING([for st_mtim.tv_nsec]) AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( Index: patches/patch-lib_dns_openssldh_link_c =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-lib_dns_openssldh_link_c,v retrieving revision 1.10 diff -u -p -r1.10 patch-lib_dns_openssldh_link_c --- patches/patch-lib_dns_openssldh_link_c 23 Jan 2020 22:08:08 -0000 1.10 +++ patches/patch-lib_dns_openssldh_link_c 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-lib_dns_openssldh_link_c Index: lib/dns/openssldh_link.c --- lib/dns/openssldh_link.c.orig +++ lib/dns/openssldh_link.c -@@ -255,7 +255,7 @@ static isc_result_t +@@ -253,7 +253,7 @@ static isc_result_t openssldh_generate(dst_key_t *key, int generator, void (*callback)(int)) { DH *dh = NULL; BN_GENCB *cb; @@ -12,7 +12,7 @@ Index: lib/dns/openssldh_link.c BN_GENCB _cb; #endif union { -@@ -296,7 +296,7 @@ openssldh_generate(dst_key_t *key, int generator, void +@@ -294,7 +294,7 @@ openssldh_generate(dst_key_t *key, int generator, void if (dh == NULL) return (dst__openssl_toresult(ISC_R_NOMEMORY)); cb = BN_GENCB_new(); Index: patches/patch-lib_dns_opensslrsa_link_c =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-lib_dns_opensslrsa_link_c,v retrieving revision 1.8 diff -u -p -r1.8 patch-lib_dns_opensslrsa_link_c --- patches/patch-lib_dns_opensslrsa_link_c 23 Jan 2020 22:08:08 -0000 1.8 +++ patches/patch-lib_dns_opensslrsa_link_c 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-lib_dns_opensslrsa_link_ Index: lib/dns/opensslrsa_link.c --- lib/dns/opensslrsa_link.c.orig +++ lib/dns/opensslrsa_link.c -@@ -443,7 +443,7 @@ opensslrsa_generate(dst_key_t *key, int exp, void (*ca +@@ -441,7 +441,7 @@ opensslrsa_generate(dst_key_t *key, int exp, void (*ca } u; RSA *rsa = RSA_new(); BIGNUM *e = BN_new(); Index: patches/patch-lib_isc_Makefile_in =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-lib_isc_Makefile_in,v retrieving revision 1.5 diff -u -p -r1.5 patch-lib_isc_Makefile_in --- patches/patch-lib_isc_Makefile_in 18 Dec 2019 15:05:43 -0000 1.5 +++ patches/patch-lib_isc_Makefile_in 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-lib_isc_Makefile_in,v 1. Index: lib/isc/Makefile.in --- lib/isc/Makefile.in.orig +++ lib/isc/Makefile.in -@@ -106,13 +106,13 @@ libisc.la: ${OBJS} ${SYMTBLOBJS} +@@ -114,13 +114,13 @@ libisc.la: ${OBJS} ${SYMTBLOBJS} ${LIBTOOL_MODE_LINK} \ ${CC} ${ALL_CFLAGS} ${LDFLAGS} -o libisc.la -rpath ${libdir} \ -version-info ${LIBINTERFACE}:${LIBREVISION}:${LIBAGE} \ Index: patches/patch-lib_isc_aes_c =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-lib_isc_aes_c,v retrieving revision 1.1 diff -u -p -r1.1 patch-lib_isc_aes_c --- patches/patch-lib_isc_aes_c 23 Jan 2020 22:08:08 -0000 1.1 +++ patches/patch-lib_isc_aes_c 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-lib_isc_aes_c,v 1.1 2020 Index: lib/isc/aes.c --- lib/isc/aes.c.orig +++ lib/isc/aes.c -@@ -24,7 +24,7 @@ +@@ -22,7 +22,7 @@ #include <openssl/opensslv.h> #include <openssl/evp.h> @@ -12,7 +12,7 @@ Index: lib/isc/aes.c #define EVP_CIPHER_CTX_new() &(_context), EVP_CIPHER_CTX_init(&_context) #define EVP_CIPHER_CTX_free(c) RUNTIME_CHECK(EVP_CIPHER_CTX_cleanup(c) == 1) #endif -@@ -33,7 +33,7 @@ void +@@ -31,7 +31,7 @@ void isc_aes128_crypt(const unsigned char *key, const unsigned char *in, unsigned char *out) { @@ -21,7 +21,7 @@ Index: lib/isc/aes.c EVP_CIPHER_CTX _context; #endif EVP_CIPHER_CTX *c; -@@ -53,7 +53,7 @@ void +@@ -51,7 +51,7 @@ void isc_aes192_crypt(const unsigned char *key, const unsigned char *in, unsigned char *out) { @@ -30,7 +30,7 @@ Index: lib/isc/aes.c EVP_CIPHER_CTX _context; #endif EVP_CIPHER_CTX *c; -@@ -73,7 +73,7 @@ void +@@ -71,7 +71,7 @@ void isc_aes256_crypt(const unsigned char *key, const unsigned char *in, unsigned char *out) { Index: patches/patch-lib_isc_unix_net_c =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-lib_isc_unix_net_c,v retrieving revision 1.9 diff -u -p -r1.9 patch-lib_isc_unix_net_c --- patches/patch-lib_isc_unix_net_c 18 Dec 2019 15:05:43 -0000 1.9 +++ patches/patch-lib_isc_unix_net_c 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-lib_isc_unix_net_c,v 1.9 Index: lib/isc/unix/net.c --- lib/isc/unix/net.c.orig +++ lib/isc/unix/net.c -@@ -221,6 +221,13 @@ isc_net_probeunix(void) { +@@ -220,6 +220,13 @@ isc_net_probeunix(void) { static void try_ipv6only(void) { @@ -17,7 +17,7 @@ Index: lib/isc/unix/net.c #ifdef IPV6_V6ONLY int s, on; char strbuf[ISC_STRERRORSIZE]; -@@ -653,7 +660,7 @@ try_dscp_v6(void) { +@@ -665,7 +672,7 @@ try_dscp_v6(void) { if (setsockopt(s, IPPROTO_IPV6, IPV6_TCLASS, &dscp, sizeof(dscp)) == 0) dscp_result |= ISC_NET_DSCPSETV6; Index: patches/patch-lib_isc_unix_socket_c =================================================================== RCS file: /cvs/ports/net/isc-bind/patches/patch-lib_isc_unix_socket_c,v retrieving revision 1.17 diff -u -p -r1.17 patch-lib_isc_unix_socket_c --- patches/patch-lib_isc_unix_socket_c 18 Dec 2019 15:05:43 -0000 1.17 +++ patches/patch-lib_isc_unix_socket_c 23 Jan 2020 22:11:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-lib_isc_unix_socket_c,v Index: lib/isc/unix/socket.c --- lib/isc/unix/socket.c.orig +++ lib/isc/unix/socket.c -@@ -2436,7 +2436,7 @@ opensocket(isc__socketmgr_t *manager, isc__socket_t *s +@@ -2398,7 +2398,7 @@ opensocket(isc__socketmgr_t *manager, isc__socket_t *s } #endif } @@ -12,7 +12,7 @@ Index: lib/isc/unix/socket.c if ((sock->pf == AF_INET6) && (setsockopt(sock->fd, IPPROTO_IPV6, IPV6_RECVTCLASS, (void *)&on, sizeof(on)) < 0)) { -@@ -5220,6 +5220,13 @@ isc_socket_gettype(isc_socket_t *sock0) { +@@ -5149,6 +5149,13 @@ isc_socket_gettype(isc_socket_t *sock0) { void isc_socket_ipv6only(isc_socket_t *sock0, bool yes) { isc__socket_t *sock = (isc__socket_t *)sock0; Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/net/isc-bind/pkg/PLIST,v retrieving revision 1.19 diff -u -p -r1.19 PLIST --- pkg/PLIST 18 Dec 2019 15:05:43 -0000 1.19 +++ pkg/PLIST 23 Jan 2020 22:11:17 -0000 @@ -6,14 +6,12 @@ @extra ${LOCALSTATEDIR}/named/etc/rndc.key @rcscript ${RCDIR}/isc_named @bin bin/arpaname -bin/bind9-config @bin bin/delv @bin bin/dig bin/edig bin/ehost bin/enslookup @bin bin/host -bin/isc-config.sh @bin bin/mdig @bin bin/named-rrchecker @bin bin/nslookup @@ -139,6 +137,7 @@ include/isc/ include/isc/aes.h include/isc/app.h include/isc/assertions.h +include/isc/astack.h include/isc/atomic.h include/isc/backtrace.h include/isc/base32.h @@ -165,11 +164,11 @@ include/isc/hash.h include/isc/heap.h include/isc/hex.h include/isc/hmac.h +include/isc/hp.h include/isc/ht.h include/isc/httpd.h include/isc/interfaceiter.h include/isc/iterated_hash.h -include/isc/json.h include/isc/lang.h include/isc/lex.h include/isc/lfsr.h @@ -231,7 +230,6 @@ include/isc/tm.h include/isc/types.h include/isc/util.h include/isc/version.h -include/isc/xml.h include/isccc/ include/isccc/alist.h include/isccc/base64.h @@ -276,11 +274,8 @@ include/pk11/pk11.h include/pk11/result.h include/pk11/site.h include/pkcs11/ -include/pkcs11/cryptoki.h include/pkcs11/eddsa.h include/pkcs11/pkcs11.h -include/pkcs11/pkcs11f.h -include/pkcs11/pkcs11t.h @static-lib lib/libbind9.a lib/libbind9.la @lib lib/libbind9.so.${LIBbind9_VERSION} @@ -309,42 +304,41 @@ lib/python${MODPY_VERSION}/site-packages lib/python${MODPY_VERSION}/site-packages/isc/ lib/python${MODPY_VERSION}/site-packages/isc-2.0-py${MODPY_VERSION}.egg-info lib/python${MODPY_VERSION}/site-packages/isc/__init__.py -lib/python${MODPY_VERSION}/site-packages/isc/__init__.pyc +${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}/ +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}checkds.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}coverage.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}dnskey.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}eventlist.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}keydict.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}keyevent.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}keymgr.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}keyseries.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}keyzone.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}parsetab.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}policy.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}rndc.${MODPY_PYC_MAGIC_TAG}pyc +lib/python${MODPY_VERSION}/site-packages/isc/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc lib/python${MODPY_VERSION}/site-packages/isc/checkds.py -lib/python${MODPY_VERSION}/site-packages/isc/checkds.pyc lib/python${MODPY_VERSION}/site-packages/isc/coverage.py -lib/python${MODPY_VERSION}/site-packages/isc/coverage.pyc lib/python${MODPY_VERSION}/site-packages/isc/dnskey.py -lib/python${MODPY_VERSION}/site-packages/isc/dnskey.pyc lib/python${MODPY_VERSION}/site-packages/isc/eventlist.py -lib/python${MODPY_VERSION}/site-packages/isc/eventlist.pyc lib/python${MODPY_VERSION}/site-packages/isc/keydict.py -lib/python${MODPY_VERSION}/site-packages/isc/keydict.pyc lib/python${MODPY_VERSION}/site-packages/isc/keyevent.py -lib/python${MODPY_VERSION}/site-packages/isc/keyevent.pyc lib/python${MODPY_VERSION}/site-packages/isc/keymgr.py -lib/python${MODPY_VERSION}/site-packages/isc/keymgr.pyc lib/python${MODPY_VERSION}/site-packages/isc/keyseries.py -lib/python${MODPY_VERSION}/site-packages/isc/keyseries.pyc lib/python${MODPY_VERSION}/site-packages/isc/keyzone.py -lib/python${MODPY_VERSION}/site-packages/isc/keyzone.pyc lib/python${MODPY_VERSION}/site-packages/isc/parsetab.py -lib/python${MODPY_VERSION}/site-packages/isc/parsetab.pyc lib/python${MODPY_VERSION}/site-packages/isc/policy.py -lib/python${MODPY_VERSION}/site-packages/isc/policy.pyc lib/python${MODPY_VERSION}/site-packages/isc/rndc.py -lib/python${MODPY_VERSION}/site-packages/isc/rndc.pyc lib/python${MODPY_VERSION}/site-packages/isc/utils.py -lib/python${MODPY_VERSION}/site-packages/isc/utils.pyc @man man/man1/arpaname.1 -@man man/man1/bind9-config.1 @man man/man1/delv.1 @man man/man1/dig.1 @man man/man1/edig.1 @man man/man1/ehost.1 @man man/man1/enslookup.1 @man man/man1/host.1 -@man man/man1/isc-config.sh.1 @man man/man1/mdig.1 @man man/man1/named-rrchecker.1 @man man/man1/nslookup.1