Received: by mail.netbsd.org (Postfix, from userid 605) id DEF7784F11; Thu, 18 Jan 2024 18:14:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1C6AC84F0D for ; Thu, 18 Jan 2024 18:14:11 +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 rg1l7jzjFKmR for ; Thu, 18 Jan 2024 18:14:10 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1988784F08 for ; Thu, 18 Jan 2024 18:14:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0F92DFA42; Thu, 18 Jan 2024 18:14:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1705601650202800" MIME-Version: 1.0 Date: Thu, 18 Jan 2024 18:14:10 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-inflection To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240118181410.0F92DFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1705601650202800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Jan 18 18:14:09 UTC 2024 Modified Files: pkgsrc/textproc/py-inflection: Makefile PLIST distinfo Log Message: py-inflection: updated to 0.5.1 0.5.1 Bug Fixes Fix type hints not working 0.5.0 Features Add type hints To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/py-inflection/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/py-inflection/PLIST cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/py-inflection/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1705601650202800 Content-Disposition: inline Content-Length: 3172 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-inflection/Makefile diff -u pkgsrc/textproc/py-inflection/Makefile:1.2 pkgsrc/textproc/py-inflection/Makefile:1.3 --- pkgsrc/textproc/py-inflection/Makefile:1.2 Tue Jan 4 20:54:56 2022 +++ pkgsrc/textproc/py-inflection/Makefile Thu Jan 18 18:14:09 2024 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2022/01/04 20:54:56 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2024/01/18 18:14:09 adam Exp $ -DISTNAME= inflection-0.3.1 +DISTNAME= inflection-0.5.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=i/inflection/} @@ -11,7 +10,12 @@ HOMEPAGE= https://github.com/jpvanhal/in COMMENT= Port of Ruby on Rails inflector to Python LICENSE= mit -USE_LANGUAGES= # none +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel -.include "../../lang/python/egg.mk" +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-inflection/PLIST diff -u pkgsrc/textproc/py-inflection/PLIST:1.1 pkgsrc/textproc/py-inflection/PLIST:1.2 --- pkgsrc/textproc/py-inflection/PLIST:1.1 Sun Jul 9 10:33:20 2017 +++ pkgsrc/textproc/py-inflection/PLIST Thu Jan 18 18:14:09 2024 @@ -1,9 +1,10 @@ -@comment $NetBSD: PLIST,v 1.1 2017/07/09 10:33:20 adam Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/not-zip-safe -${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/inflection.py -${PYSITELIB}/inflection.pyc -${PYSITELIB}/inflection.pyo +@comment $NetBSD: PLIST,v 1.2 2024/01/18 18:14:09 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt +${PYSITELIB}/inflection/__init__.py +${PYSITELIB}/inflection/__init__.pyc +${PYSITELIB}/inflection/__init__.pyo +${PYSITELIB}/inflection/py.typed Index: pkgsrc/textproc/py-inflection/distinfo diff -u pkgsrc/textproc/py-inflection/distinfo:1.3 pkgsrc/textproc/py-inflection/distinfo:1.4 --- pkgsrc/textproc/py-inflection/distinfo:1.3 Tue Oct 26 11:23:04 2021 +++ pkgsrc/textproc/py-inflection/distinfo Thu Jan 18 18:14:09 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2021/10/26 11:23:04 nia Exp $ +$NetBSD: distinfo,v 1.4 2024/01/18 18:14:09 adam Exp $ -BLAKE2s (inflection-0.3.1.tar.gz) = de646325400597a6bcf43902d6d26db3a17fe7cfa285a6f14d3bebaafa2e7764 -SHA512 (inflection-0.3.1.tar.gz) = d1499ccbba2537914a738de8b6b24d69bd459d9b22bad1e838a8f7adc9b94054631bdb0557ac283cbfccae83a33a969dd44612df22b78f92eb27ae4ea999f560 -Size (inflection-0.3.1.tar.gz) = 8715 bytes +BLAKE2s (inflection-0.5.1.tar.gz) = e90d1cb2f7a392f3fe7d141fee03b506c3da6193d4534b7b085432154fc9ff1d +SHA512 (inflection-0.5.1.tar.gz) = 82f70e2b81fb166260191a464383f6674e3b21504a35ee605ac6ce4bb163c8f3bbe6d06379575178d7196701459506dd541f32e48f24b32f42d5cfb717158d50 +Size (inflection-0.5.1.tar.gz) = 15091 bytes --_----------=_1705601650202800--