From owner-svn-ports-all@freebsd.org Thu Apr 25 10:50:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58A391592F8D; Thu, 25 Apr 2019 10:50:20 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F2C0476A27; Thu, 25 Apr 2019 10:50:19 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C5B1A228BA; Thu, 25 Apr 2019 10:50:19 +0000 (UTC) (envelope-from tz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3PAoJuT032360; Thu, 25 Apr 2019 10:50:19 GMT (envelope-from tz@FreeBSD.org) Received: (from tz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3PAoJvf032357; Thu, 25 Apr 2019 10:50:19 GMT (envelope-from tz@FreeBSD.org) Message-Id: <201904251050.x3PAoJvf032357@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tz set sender to tz@FreeBSD.org using -f From: Torsten Zuehlsdorff Date: Thu, 25 Apr 2019 10:50:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r499984 - head/dns/knot2 X-SVN-Group: ports-head X-SVN-Commit-Author: tz X-SVN-Commit-Paths: head/dns/knot2 X-SVN-Commit-Revision: 499984 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F2C0476A27 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Apr 2019 10:50:20 -0000 Author: tz Date: Thu Apr 25 10:50:18 2019 New Revision: 499984 URL: https://svnweb.freebsd.org/changeset/ports/499984 Log: dns/knot2: Update from 2.7.6 to 2.8.1 Changelog: Improvements: - Possible zone transaction is aborted by zone events to avoid inconsistency - Added log message if no persistent config DB is available during 'conf-begin' - New environment setting 'KNOT_VERSION_FORMAT=release' for extended version suppression - Various improvements in the documentation Bugfixes: - Broken NSEC3-wildcard-nonexistence proof after NSEC3 re-salt - Glue records under delegation are sometimes signed - RRL doesn't work correctly on big-endian architectures - NSEC3 not re-salted during AXFR refresh - Failed to sign new zone contents if added dynamically #641 - NSEC3 opt-out signing doesn't work in some cases - Broken NSEC3 chain after adding new sub-delegations - Redundant SOA RRSIG on slave if RRSIG TTL changed on master - Sometimes confusing log error message for NOTIFY event - Improper include for LMDB #638 PR: 237371 Submitted by: Leo Vandewoestijne Approved by: Leo Vandewoestijne (maintainer) Modified: head/dns/knot2/Makefile head/dns/knot2/distinfo head/dns/knot2/pkg-plist Modified: head/dns/knot2/Makefile ============================================================================== --- head/dns/knot2/Makefile Thu Apr 25 10:34:57 2019 (r499983) +++ head/dns/knot2/Makefile Thu Apr 25 10:50:18 2019 (r499984) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= knot -DISTVERSION= 2.7.6 -PORTREVISION= 1 +DISTVERSION= 2.8.1 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ https://dns.company/downloads/knot-dns/ @@ -32,17 +31,17 @@ CONFIGURE_ARGS= --enable-recvmmsg=no \ .if !defined(UTILS_ONLY) && !defined(LIB_ONLY) CONFIGURE_ARGS+= --with-rundir=/var/run/knot \ --with-storage=/var/db/knot -USE_RC_SUBR= ${PORTNAME} -SUB_FILES= pkg-message +USE_RC_SUBR= ${PORTNAME} +SUB_FILES= pkg-message .endif .if defined(UTILS_ONLY) || defined(LIB_ONLY) -CONFIGURE_ARGS+= --disable-daemon \ - --disable-modules +CONFIGURE_ARGS+= --disable-daemon \ + --disable-modules .endif .if defined(LIB_ONLY) -CONFIGURE_ARGS+= --disable-utilities +CONFIGURE_ARGS+= --disable-utilities .endif USE_LDCONFIG= yes Modified: head/dns/knot2/distinfo ============================================================================== --- head/dns/knot2/distinfo Thu Apr 25 10:34:57 2019 (r499983) +++ head/dns/knot2/distinfo Thu Apr 25 10:50:18 2019 (r499984) @@ -1,3 +1,3 @@ -TIMESTAMP = 1548284523 -SHA256 (knot-2.7.6.tar.xz) = a1cb1877f04f7c2549c977c2658cfafd07c7e0e924f8e8aa8d4ae4b707f697a2 -SIZE (knot-2.7.6.tar.xz) = 1151068 +TIMESTAMP = 1555627942 +SHA256 (knot-2.8.1.tar.xz) = b21bf03e5cb6804df4e0e8b3898446349e86ddae5bf110edaf240d0ad1e2a2c6 +SIZE (knot-2.8.1.tar.xz) = 1169260 Modified: head/dns/knot2/pkg-plist ============================================================================== --- head/dns/knot2/pkg-plist Thu Apr 25 10:34:57 2019 (r499983) +++ head/dns/knot2/pkg-plist Thu Apr 25 10:50:18 2019 (r499984) @@ -14,8 +14,8 @@ include/libdnssec/key.h include/libdnssec/keyid.h include/libdnssec/keystore.h include/libdnssec/keytag.h -include/libdnssec/list.h include/libdnssec/nsec.h +include/libdnssec/pem.h include/libdnssec/random.h include/libdnssec/sign.h include/libdnssec/tsig.h @@ -68,16 +68,16 @@ include/libzscanner/scanner.h include/libzscanner/version.h lib/libdnssec.a lib/libdnssec.so -lib/libdnssec.so.6 -lib/libdnssec.so.6.0.0 +lib/libdnssec.so.7 +lib/libdnssec.so.7.0.0 lib/libknot.a lib/libknot.so -lib/libknot.so.8 -lib/libknot.so.8.0.0 +lib/libknot.so.9 +lib/libknot.so.9.0.0 lib/libzscanner.a lib/libzscanner.so -lib/libzscanner.so.2 -lib/libzscanner.so.2.0.0 +lib/libzscanner.so.3 +lib/libzscanner.so.3.0.0 libdata/pkgconfig/knotd.pc libdata/pkgconfig/libdnssec.pc libdata/pkgconfig/libknot.pc