Received: by mail.netbsd.org (Postfix, from userid 605) id DFDF084D4C; Tue, 26 Apr 2022 10:35:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 26F6A84D2F for ; Tue, 26 Apr 2022 10:35:45 +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 UbS_ZaOgRu8E for ; Tue, 26 Apr 2022 10:35:44 +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 7B08B84CFE for ; Tue, 26 Apr 2022 10:35:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 72F30FB1A; Tue, 26 Apr 2022 10:35:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1650969344222480" MIME-Version: 1.0 Date: Tue, 26 Apr 2022 10:35:44 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/net/py-tldextract To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220426103544.72F30FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1650969344222480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Apr 26 10:35:44 UTC 2022 Modified Files: pkgsrc/net/py-tldextract: Makefile PLIST distinfo Log Message: py-tldextract: updated to 3.2.1 3.2.1 (2022-04-11) * Bugfixes * Fix incorrect namespace used for caching function returns * Remove redundant encode * Remove redundant lowercase * Remove unused `try`/`except` path * Add types to the private API (disallow untyped calls and defs) * Rely on `python_requires` instead of runtime check * Docs * Fix docs with updated types * Fix link in Travis CI badge * Rewrite documentation intro * Remove unnecessary subheading * Unify case 3.2.0 (2022-02-20) * Features * Add types to the public API * Bugfixes * Add support for Python 3.10 * Drop support for EOL Python 3.6 * Remove py2 tag from wheel * Remove extra backtick in README To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/net/py-tldextract/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/py-tldextract/PLIST cvs rdiff -u -r1.11 -r1.12 pkgsrc/net/py-tldextract/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1650969344222480 Content-Disposition: inline Content-Length: 2842 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/py-tldextract/Makefile diff -u pkgsrc/net/py-tldextract/Makefile:1.13 pkgsrc/net/py-tldextract/Makefile:1.14 --- pkgsrc/net/py-tldextract/Makefile:1.13 Wed Jan 5 15:41:18 2022 +++ pkgsrc/net/py-tldextract/Makefile Tue Apr 26 10:35:44 2022 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.13 2022/01/05 15:41:18 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2022/04/26 10:35:44 adam Exp $ -DISTNAME= tldextract-3.1.2 +DISTNAME= tldextract-3.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 2 CATEGORIES= net python MASTER_SITES= ${MASTER_SITE_PYPI:=t/tldextract/} @@ -17,6 +16,7 @@ DEPENDS+= ${PYPKGPREFIX}-idna-[0-9]*:../ DEPENDS+= ${PYPKGPREFIX}-requests>=2.1.0:../../devel/py-requests DEPENDS+= ${PYPKGPREFIX}-requests-file>=1.4:../../devel/py-requests-file TEST_DEPENDS+= ${PYPKGPREFIX}-responses-[0-9]*:../../net/py-responses +TEST_DEPENDS+= ${PYPKGPREFIX}-test-mock-[0-9]*:../../devel/py-test-mock TEST_DEPENDS+= ${PYPKGPREFIX}-test-pylint-[0-9]*:../../devel/py-test-pylint USE_LANGUAGES= # none Index: pkgsrc/net/py-tldextract/PLIST diff -u pkgsrc/net/py-tldextract/PLIST:1.5 pkgsrc/net/py-tldextract/PLIST:1.6 --- pkgsrc/net/py-tldextract/PLIST:1.5 Fri Nov 27 19:36:27 2020 +++ pkgsrc/net/py-tldextract/PLIST Tue Apr 26 10:35:44 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2020/11/27 19:36:27 adam Exp $ +@comment $NetBSD: PLIST,v 1.6 2022/04/26 10:35:44 adam Exp $ bin/tldextract-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -22,6 +22,7 @@ ${PYSITELIB}/tldextract/cache.pyo ${PYSITELIB}/tldextract/cli.py ${PYSITELIB}/tldextract/cli.pyc ${PYSITELIB}/tldextract/cli.pyo +${PYSITELIB}/tldextract/py.typed ${PYSITELIB}/tldextract/remote.py ${PYSITELIB}/tldextract/remote.pyc ${PYSITELIB}/tldextract/remote.pyo Index: pkgsrc/net/py-tldextract/distinfo diff -u pkgsrc/net/py-tldextract/distinfo:1.11 pkgsrc/net/py-tldextract/distinfo:1.12 --- pkgsrc/net/py-tldextract/distinfo:1.11 Tue Oct 26 11:06:45 2021 +++ pkgsrc/net/py-tldextract/distinfo Tue Apr 26 10:35:44 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.11 2021/10/26 11:06:45 nia Exp $ +$NetBSD: distinfo,v 1.12 2022/04/26 10:35:44 adam Exp $ -BLAKE2s (tldextract-3.1.2.tar.gz) = ee8fbaac0e603da7b4e33d3737cbcd8d863337be8594a6f5e3702006ac922c3b -SHA512 (tldextract-3.1.2.tar.gz) = 2c2340a9142d49aa7c0db71b5a7fb1a63e19354a5da8edd7de923e55c8ec03d8a8551f4710c66d6d1aece1d0d78701229ef5ed2ed49bcce44972b7b96747bd77 -Size (tldextract-3.1.2.tar.gz) = 103248 bytes +BLAKE2s (tldextract-3.2.1.tar.gz) = 912731a4c9e7edbdb34782c6f89a2b061bab7d7c9ab67d478c2312c01f51a970 +SHA512 (tldextract-3.2.1.tar.gz) = 545013f5f25ea2e207e8dc65caeef3999f0f3a5abdaad09f5a599dc25a9344c9fde9a816785a20df8a137c082e37329f3984fdf6a80789d5976c0bef244d9095 +Size (tldextract-3.2.1.tar.gz) = 104364 bytes --_----------=_1650969344222480--