Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=CYiDu8PE; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=N9XciErm Received: by mail.netbsd.org (Postfix, from userid 605) id AABCA84E84; Wed, 15 May 2024 12:44:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715777049; bh=As7IjOJt0Xl8oqGDIxAJoAjAx3iB9l5rfYbVP5wmWGs=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=CYiDu8PEElYxY078PQxk4kQAMN6urONrwpcQIv8nNMABX23aYxwnIo3fZVIsGeN0J IS9cywKVNX0cCPGLNgmWLsB+TnsX6C/sS4/hWVO0ntbJpzT3MBJeA6Sk7PwtXBTB3M 9ECIRNifbWDd0Bb16U84GxqTC/4ZgpFlE5WEWsuU= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9C1C384D27 for ; Wed, 15 May 2024 12:44:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 tokqMayz8Ezz for ; Wed, 15 May 2024 12:44:08 +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 EDA3984CD7 for ; Wed, 15 May 2024 12:44:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715777048; bh=As7IjOJt0Xl8oqGDIxAJoAjAx3iB9l5rfYbVP5wmWGs=; h=Date:From:Subject:To:Reply-To; b=N9XciErm7hFJKHJ4aYu1rRk1aVPRPNqvyLFjJqUOODR33R6rPkCi03fo43He650KG Q1dCU2p6aWtW32/r8WI70vPnFoYZwn5CvYEZihFWJed1ylTs3T5vE1mOiLL2b35hjB R5oBbhFEYh52Jz96BhETWisO7DKrFOCo6p1T1HDY= Received: by cvs.NetBSD.org (Postfix, from userid 500) id E1180FA2C; Wed, 15 May 2024 12:44:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171577704723380" MIME-Version: 1.0 Date: Wed, 15 May 2024 12:44:07 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/py-inflect To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240515124407.E1180FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171577704723380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed May 15 12:44:07 UTC 2024 Modified Files: pkgsrc/lang/py-inflect: Makefile PLIST distinfo Log Message: py-inflect: updated to 7.2.1 v7.2.1 Bugfixes - Refactored number_to_words toward reduced complexity. v7.2.0 Features - Replace pydantic with typeguard v7.1.0 Features - Now handle 'pair of x' in pl_sb_uninflected_complete To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/lang/py-inflect/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/py-inflect/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/lang/py-inflect/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171577704723380 Content-Disposition: inline Content-Length: 3586 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.9 pkgsrc/lang/py-inflect/Makefile:1.10 --- pkgsrc/lang/py-inflect/Makefile:1.9 Sat Oct 28 19:57:10 2023 +++ pkgsrc/lang/py-inflect/Makefile Wed May 15 12:44:07 2024 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2023/10/28 19:57:10 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2024/05/15 12:44:07 adam Exp $ -DISTNAME= inflect-7.0.0 +DISTNAME= inflect-7.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= lang python MASTER_SITES= ${MASTER_SITE_PYPI:=i/inflect/} @@ -13,18 +12,15 @@ 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}-more-itertools-[0-9]*:../../devel/py-more-itertools +DEPENDS+= ${PYPKGPREFIX}-typeguard>=4.0.1:../../devel/py-typeguard 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}-pygments-[0-9]*:../../textproc/py-pygments +TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 -do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests - .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/lang/py-inflect/PLIST diff -u pkgsrc/lang/py-inflect/PLIST:1.4 pkgsrc/lang/py-inflect/PLIST:1.5 --- pkgsrc/lang/py-inflect/PLIST:1.4 Sat Oct 28 19:57:10 2023 +++ pkgsrc/lang/py-inflect/PLIST Wed May 15 12:44:07 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2023/10/28 19:57:10 wiz Exp $ +@comment $NetBSD: PLIST,v 1.5 2024/05/15 12:44:07 adam Exp $ ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE ${PYSITELIB}/${WHEEL_INFODIR}/METADATA ${PYSITELIB}/${WHEEL_INFODIR}/RECORD @@ -7,13 +7,4 @@ ${PYSITELIB}/${WHEEL_INFODIR}/top_level. ${PYSITELIB}/inflect/__init__.py ${PYSITELIB}/inflect/__init__.pyc ${PYSITELIB}/inflect/__init__.pyo -${PYSITELIB}/inflect/compat/__init__.py -${PYSITELIB}/inflect/compat/__init__.pyc -${PYSITELIB}/inflect/compat/__init__.pyo -${PYSITELIB}/inflect/compat/pydantic.py -${PYSITELIB}/inflect/compat/pydantic.pyc -${PYSITELIB}/inflect/compat/pydantic.pyo -${PYSITELIB}/inflect/compat/pydantic1.py -${PYSITELIB}/inflect/compat/pydantic1.pyc -${PYSITELIB}/inflect/compat/pydantic1.pyo ${PYSITELIB}/inflect/py.typed Index: pkgsrc/lang/py-inflect/distinfo diff -u pkgsrc/lang/py-inflect/distinfo:1.6 pkgsrc/lang/py-inflect/distinfo:1.7 --- pkgsrc/lang/py-inflect/distinfo:1.6 Wed Oct 4 21:17:43 2023 +++ pkgsrc/lang/py-inflect/distinfo Wed May 15 12:44:07 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2023/10/04 21:17:43 adam Exp $ +$NetBSD: distinfo,v 1.7 2024/05/15 12:44:07 adam Exp $ -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 +BLAKE2s (inflect-7.2.1.tar.gz) = f8482dcdb9a502dc331c6b2fbc1e31e0f72ebd8c33ca96d13e15dc915a2e38ac +SHA512 (inflect-7.2.1.tar.gz) = b994b1cb486f318f54fe73e159ffb41c637298c651e3b2ed0899659add450cd47f168e7ba242fc70dd1c177e622850409485c1671e5b89eb1f2b554d315bdf00 +Size (inflect-7.2.1.tar.gz) = 71580 bytes --_----------=_171577704723380--