From nobody Fri Oct 15 04:57:38 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id C3D8018136F4; Fri, 15 Oct 2021 04:57:38 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HVvCQ4v7cz4f0f; Fri, 15 Oct 2021 04:57:38 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 814602090E; Fri, 15 Oct 2021 04:57:38 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19F4vcR7067962; Fri, 15 Oct 2021 04:57:38 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19F4vcV7067961; Fri, 15 Oct 2021 04:57:38 GMT (envelope-from git) Date: Fri, 15 Oct 2021 04:57:38 GMT Message-Id: <202110150457.19F4vcV7067961@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Don Lewis Subject: git: 3555695ec1b4 - main - dns/dnstable: upgrade to version 1.2.0 List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: truckman X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 3555695ec1b4768e18afd251f9e48709a06180e5 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by truckman: URL: https://cgit.FreeBSD.org/ports/commit/?id=3555695ec1b4768e18afd251f9e48709a06180e5 commit 3555695ec1b4768e18afd251f9e48709a06180e5 Author: Don Lewis AuthorDate: 2021-10-15 04:44:14 +0000 Commit: Don Lewis CommitDate: 2021-10-15 04:44:14 +0000 dns/dnstable: upgrade to version 1.2.0 dnstable 1.2.0: * Implement indexing using RRtypes for ENTRY_TYPE_RRSET_NAME_FWD and ENTRY_TYPE_RDATA_NAME_REV entries. This uses RFC6840 RRtype bitmaps as the primary data structure. * Added support for dnstable entries encoding version information and time metadata. * The version entries, time metadata, and rrtype index information are generated by an updated dnstable-convert. Files generated by the old dnstable-convert will be processed as they were with the previous dnstable versions i.e., the new entry types and rrset index information will be absent. * Add -R flag to dnstable_dump and dnstable_lookup to add raw rdata representation to outputs. * Add long options to dnstable_dump to fix bug in not accepting some options properly. * Fix dnstable_lookup usage output. * Refactor time formatters and fix compiler warnings. * Ignore entries which fail decoding for use with legacy empty data. * Miscellaneous documentation improvements. Sponsored by: Farsight Security, Inc. --- dns/dnstable/Makefile | 2 +- dns/dnstable/distinfo | 6 +++--- dns/dnstable/pkg-plist | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dns/dnstable/Makefile b/dns/dnstable/Makefile index bb4323c2203a..7d9b123a6e44 100644 --- a/dns/dnstable/Makefile +++ b/dns/dnstable/Makefile @@ -1,5 +1,5 @@ PORTNAME= dnstable -PORTVERSION= 0.11.2 +PORTVERSION= 0.12.0 CATEGORIES= dns MASTER_SITES= FARSIGHT LOCAL/truckman/farsight diff --git a/dns/dnstable/distinfo b/dns/dnstable/distinfo index 1099f277b163..c1afe9413f8b 100644 --- a/dns/dnstable/distinfo +++ b/dns/dnstable/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1562347197 -SHA256 (dnstable-0.11.2.tar.gz) = ea6bbae9bcc63b872381a40005bda6a4daa789395e3ed56216bf1ba421cd2ab2 -SIZE (dnstable-0.11.2.tar.gz) = 472984 +TIMESTAMP = 1634270236 +SHA256 (dnstable-0.12.0.tar.gz) = 521a8e7a2edf2ef650f651ae07658ca4b46a981c76a08db103e5293239dc6b1c +SIZE (dnstable-0.12.0.tar.gz) = 488991 diff --git a/dns/dnstable/pkg-plist b/dns/dnstable/pkg-plist index c5a8af850896..6b2d0eb62831 100644 --- a/dns/dnstable/pkg-plist +++ b/dns/dnstable/pkg-plist @@ -5,7 +5,7 @@ include/dnstable.h lib/libdnstable.a lib/libdnstable.so lib/libdnstable.so.0 -lib/libdnstable.so.0.1.0 +lib/libdnstable.so.0.2.0 libdata/pkgconfig/libdnstable.pc man/man1/dnstable_dump.1.gz man/man1/dnstable_lookup.1.gz