Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0FB8084F28 for ; Wed, 4 Oct 2023 21:17:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bB7YGqpjwb0J for ; Wed, 4 Oct 2023 21:17:43 +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 62A4484D59 for ; Wed, 4 Oct 2023 21:17:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 567D1FBDB; Wed, 4 Oct 2023 21:17:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16964542634710" MIME-Version: 1.0 Date: Wed, 4 Oct 2023 21:17:43 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/py-inflect To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231004211743.567D1FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_16964542634710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Oct 4 21:17:43 UTC 2023 Modified Files: pkgsrc/lang/py-inflect: Makefile PLIST distinfo Log Message: py-inflect: updated to 7.0.0 v7.0.0 Features - Refine type hint for ``singular_noun`` to indicate a literal return type for ``False``. Deprecations and Removals - Removed methods renamed in 0.2.0. v6.2.0 Features - Project now supports Pydantic 2 while retaining support for Pydantic 1. Bugfixes - Added validation of user-defined words and amended the type declarations to match, allowing for null values but not empty strings. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/lang/py-inflect/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/py-inflect/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/py-inflect/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16964542634710 Content-Disposition: inline Content-Length: 3120 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/py-inflect/Makefile diff -u pkgsrc/lang/py-inflect/Makefile:1.7 pkgsrc/lang/py-inflect/Makefile:1.8 --- pkgsrc/lang/py-inflect/Makefile:1.7 Mon May 15 20:52:47 2023 +++ pkgsrc/lang/py-inflect/Makefile Wed Oct 4 21:17:43 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2023/05/15 20:52:47 adam Exp $ +# $NetBSD: Makefile,v 1.8 2023/10/04 21:17:43 adam Exp $ -DISTNAME= inflect-6.0.4 +DISTNAME= inflect-7.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= lang python MASTER_SITES= ${MASTER_SITE_PYPI:=i/inflect/} @@ -13,9 +13,9 @@ LICENSE= mit TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=7.0.0:../../devel/py-setuptools_scm TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-pydantic>=1.9.1:../../devel/py-pydantic +DEPENDS+= ${PYPKGPREFIX}-typing-extensions-[0-9]*:../../devel/py-typing-extensions TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov -TEST_DEPENDS+= ${PYPKGPREFIX}-test-flake8-[0-9]*:../../devel/py-test-flake8 TEST_DEPENDS+= ${PYPKGPREFIX}-pygments-[0-9]*:../../textproc/py-pygments USE_LANGUAGES= # none Index: pkgsrc/lang/py-inflect/PLIST diff -u pkgsrc/lang/py-inflect/PLIST:1.2 pkgsrc/lang/py-inflect/PLIST:1.3 --- pkgsrc/lang/py-inflect/PLIST:1.2 Sun Nov 6 18:08:15 2022 +++ pkgsrc/lang/py-inflect/PLIST Wed Oct 4 21:17:43 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2022/11/06 18:08:15 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2023/10/04 21:17:43 adam Exp $ ${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE ${PYSITELIB}/${WHEEL_INFODIR}/METADATA @@ -9,4 +9,10 @@ ${PYSITELIB}/${WHEEL_INFODIR}/direct_url ${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt ${PYSITELIB}/inflect/__init__.py ${PYSITELIB}/inflect/__init__.pyc +${PYSITELIB}/inflect/compat/__init__.py +${PYSITELIB}/inflect/compat/__init__.pyc +${PYSITELIB}/inflect/compat/pydantic.py +${PYSITELIB}/inflect/compat/pydantic.pyc +${PYSITELIB}/inflect/compat/pydantic1.py +${PYSITELIB}/inflect/compat/pydantic1.pyc ${PYSITELIB}/inflect/py.typed Index: pkgsrc/lang/py-inflect/distinfo diff -u pkgsrc/lang/py-inflect/distinfo:1.5 pkgsrc/lang/py-inflect/distinfo:1.6 --- pkgsrc/lang/py-inflect/distinfo:1.5 Mon May 15 20:52:47 2023 +++ pkgsrc/lang/py-inflect/distinfo Wed Oct 4 21:17:43 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2023/05/15 20:52:47 adam Exp $ +$NetBSD: distinfo,v 1.6 2023/10/04 21:17:43 adam Exp $ -BLAKE2s (inflect-6.0.4.tar.gz) = cf64608e47e1318dd35550c17a24b0e0af723b1c45dcef0ebf983ffe72f99456 -SHA512 (inflect-6.0.4.tar.gz) = 96aaa74b3e8c5dcc91d81af336af73535826f3cedaa556d6baf540ca54db1a7c1f17a372c240446c0d81697520eab154bad4f0aad6195c6ab8e131ae443d3811 -Size (inflect-6.0.4.tar.gz) = 71131 bytes +BLAKE2s (inflect-7.0.0.tar.gz) = 0924c7ccf60d1e4133408d6cada8b16f6a149bd78f7dc76eb8a9d1a3324e2c0e +SHA512 (inflect-7.0.0.tar.gz) = b2ca39d0e36cda8c8c42d208443d3b84b10d659dcd0d368273503d6e76df19c61ac3c623d526ea918ca8b347d6db8bdfb691609e480eaa33dd4f1c37e008473b +Size (inflect-7.0.0.tar.gz) = 70963 bytes --_----------=_16964542634710--