Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 01D4184FEA for ; Wed, 8 Nov 2023 17:34:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id uAN5ldMW4HOO for ; Wed, 8 Nov 2023 17:34:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 57B8984E7B for ; Wed, 8 Nov 2023 17:34:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4B60CFA2F; Wed, 8 Nov 2023 17:34:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699464874202910" MIME-Version: 1.0 Date: Wed, 8 Nov 2023 17:34:34 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/py-lexicon To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231108173434.4B60CFA2F@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699464874202910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Nov 8 17:34:34 UTC 2023 Modified Files: pkgsrc/net/py-lexicon: Makefile distinfo Log Message: py-lexicon: updated to 3.17.0 3.17.0 Added New method to determine the actual zone name for a given FQDN. Historically it was an extraction of the second-level domain given well-known TLDs (eg., domain.net for www.domain.net) using tldextract, and usage of --delegated option to enforce a specific zone name that is useful for third-level domains hosted on a specific zone (eg., sub-zone sub.domain.net delegated from zone domain.net). It is now possible to use the --resolve-zone-name flag on Lexicon client to trigger an actual resolution of the zone name from a given FQDN using live DNS servers by leveraging dnspython utilities. Most of the time this makes --delegated useless, since Lexicon will be able to guess the correct zone name. To generate a diff of this commit: cvs rdiff -u -r1.91 -r1.92 pkgsrc/net/py-lexicon/Makefile cvs rdiff -u -r1.87 -r1.88 pkgsrc/net/py-lexicon/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699464874202910 Content-Disposition: inline Content-Length: 1611 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/py-lexicon/Makefile diff -u pkgsrc/net/py-lexicon/Makefile:1.91 pkgsrc/net/py-lexicon/Makefile:1.92 --- pkgsrc/net/py-lexicon/Makefile:1.91 Sat Oct 28 19:57:13 2023 +++ pkgsrc/net/py-lexicon/Makefile Wed Nov 8 17:34:34 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.91 2023/10/28 19:57:13 wiz Exp $ +# $NetBSD: Makefile,v 1.92 2023/11/08 17:34:34 adam Exp $ -DISTNAME= dns_lexicon-3.16.1 +DISTNAME= dns_lexicon-3.17.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/dns_//} -PKGREVISION= 1 CATEGORIES= net python MASTER_SITES= ${MASTER_SITE_PYPI:=d/dns-lexicon/} Index: pkgsrc/net/py-lexicon/distinfo diff -u pkgsrc/net/py-lexicon/distinfo:1.87 pkgsrc/net/py-lexicon/distinfo:1.88 --- pkgsrc/net/py-lexicon/distinfo:1.87 Sat Oct 21 17:53:18 2023 +++ pkgsrc/net/py-lexicon/distinfo Wed Nov 8 17:34:34 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.87 2023/10/21 17:53:18 adam Exp $ +$NetBSD: distinfo,v 1.88 2023/11/08 17:34:34 adam Exp $ -BLAKE2s (dns_lexicon-3.16.1.tar.gz) = 321cec55b2a6b73a09b2a544ca7afdb1a023ba3cb4b53e9b6cd0fbd882f9069b -SHA512 (dns_lexicon-3.16.1.tar.gz) = 0dfc805e075c43fe017d39f8bcefe794e65c7075d2c2da15b5dd388b56c1d840651cd8fcbaaf4c3434e476fa34cb7f04643b268985eb6a7f82bf242f0e0ab014 -Size (dns_lexicon-3.16.1.tar.gz) = 154437 bytes +BLAKE2s (dns_lexicon-3.17.0.tar.gz) = 61f4559dc5100aa9cbca34bc2c4239d281bb114fe056fede3a01d51d71c591be +SHA512 (dns_lexicon-3.17.0.tar.gz) = 45d67af916ed409d84f93736ab38ec507a458d75f03c7e3ea900bfadd96c5a372f8e77128b92a3a9c0a47d09b23acd84c21a4d0f1766f6af310a06a4c1e305ac +Size (dns_lexicon-3.17.0.tar.gz) = 154694 bytes --_----------=_1699464874202910--