Received: by mail.netbsd.org (Postfix, from userid 605) id 2C13D84F27; Sun, 6 Nov 2022 18:24:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5BD2D84F09 for ; Sun, 6 Nov 2022 18:24:46 +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 w967LL79M9Px for ; Sun, 6 Nov 2022 18:24:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AAC4784CE3 for ; Sun, 6 Nov 2022 18:24:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A464BFA90; Sun, 6 Nov 2022 18:24:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1667759085201640" MIME-Version: 1.0 Date: Sun, 6 Nov 2022 18:24:45 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221106182445.A464BFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1667759085201640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Nov 6 18:24:45 UTC 2022 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/py-jaraco.collections: DESCR Makefile PLIST distinfo Log Message: py-jaraco.collections: added version 3.7.0 Models and classes to supplement the stdlib 'collections' module. To generate a diff of this commit: cvs rdiff -u -r1.3817 -r1.3818 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-jaraco.collections/DESCR \ pkgsrc/devel/py-jaraco.collections/Makefile \ pkgsrc/devel/py-jaraco.collections/PLIST \ pkgsrc/devel/py-jaraco.collections/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1667759085201640 Content-Disposition: inline Content-Length: 3640 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3817 pkgsrc/devel/Makefile:1.3818 --- pkgsrc/devel/Makefile:1.3817 Sun Nov 6 18:12:59 2022 +++ pkgsrc/devel/Makefile Sun Nov 6 18:24:45 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3817 2022/11/06 18:12:59 adam Exp $ +# $NetBSD: Makefile,v 1.3818 2022/11/06 18:24:45 adam Exp $ # COMMENT= Development utilities @@ -2545,6 +2545,7 @@ SUBDIR+= py-isort SUBDIR+= py-isort4 SUBDIR+= py-itanium_demangler SUBDIR+= py-jaraco.classes +SUBDIR+= py-jaraco.collections SUBDIR+= py-jaraco.context SUBDIR+= py-jaraco.envs SUBDIR+= py-jaraco.functools Added files: Index: pkgsrc/devel/py-jaraco.collections/DESCR diff -u /dev/null pkgsrc/devel/py-jaraco.collections/DESCR:1.1 --- /dev/null Sun Nov 6 18:24:45 2022 +++ pkgsrc/devel/py-jaraco.collections/DESCR Sun Nov 6 18:24:45 2022 @@ -0,0 +1 @@ +Models and classes to supplement the stdlib 'collections' module. Index: pkgsrc/devel/py-jaraco.collections/Makefile diff -u /dev/null pkgsrc/devel/py-jaraco.collections/Makefile:1.1 --- /dev/null Sun Nov 6 18:24:45 2022 +++ pkgsrc/devel/py-jaraco.collections/Makefile Sun Nov 6 18:24:45 2022 @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1 2022/11/06 18:24:45 adam Exp $ + +DISTNAME= jaraco.collections-3.7.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=j/jaraco.collections/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/jaraco/jaraco.collections +COMMENT= Collection objects similar to those in stdlib +LICENSE= mit + +BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=3.4.1:../../devel/py-setuptools_scm +BUILD_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel +DEPENDS+= ${PYPKGPREFIX}-jaraco.classes-[0-9]*:../../devel/py-jaraco.classes +DEPENDS+= ${PYPKGPREFIX}-jaraco.text-[0-9]*:../../textproc/py-jaraco.text +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../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 + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} + +.include "../../lang/python/wheel.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-jaraco.collections/PLIST diff -u /dev/null pkgsrc/devel/py-jaraco.collections/PLIST:1.1 --- /dev/null Sun Nov 6 18:24:45 2022 +++ pkgsrc/devel/py-jaraco.collections/PLIST Sun Nov 6 18:24:45 2022 @@ -0,0 +1,11 @@ +@comment $NetBSD: PLIST,v 1.1 2022/11/06 18:24:45 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt +${PYSITELIB}/jaraco/collections.py +${PYSITELIB}/jaraco/collections.pyc Index: pkgsrc/devel/py-jaraco.collections/distinfo diff -u /dev/null pkgsrc/devel/py-jaraco.collections/distinfo:1.1 --- /dev/null Sun Nov 6 18:24:45 2022 +++ pkgsrc/devel/py-jaraco.collections/distinfo Sun Nov 6 18:24:45 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/11/06 18:24:45 adam Exp $ + +BLAKE2s (jaraco.collections-3.7.0.tar.gz) = 26418555df3b667f6f27088ee2219981106bf5f8dce09ab325289adcd5cf2447 +SHA512 (jaraco.collections-3.7.0.tar.gz) = 6ebf276b662bdd78622c345d64be8b919de8e10e248c78a6107e65a58f4b158ba788685f518d1590028c2bc9a13b1a48c30d5e30f964696a87330dba3b1432d7 +Size (jaraco.collections-3.7.0.tar.gz) = 16874 bytes --_----------=_1667759085201640--