Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 699251A9239 for ; Sun, 23 Jan 2022 19:45:33 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 9EF1884D66; Sun, 23 Jan 2022 19:45:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DA13B84D3A for ; Sun, 23 Jan 2022 19:45:31 +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 fvc2l6QlY8du for ; Sun, 23 Jan 2022 19:45:31 +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 38C6084D21 for ; Sun, 23 Jan 2022 19:45:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 36471FB24; Sun, 23 Jan 2022 19:45:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164296713153310" MIME-Version: 1.0 Date: Sun, 23 Jan 2022 19:45:31 +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: <20220123194531.36471FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164296713153310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Jan 23 19:45:31 UTC 2022 Modified Files: pkgsrc/devel: Makefile Added Files: pkgsrc/devel/py-typeguard: DESCR Makefile PLIST distinfo Log Message: py-typeguard: added version 2.13.3 This library provides run-time type checking for functions defined with PEP 484 argument (and return) type annotations. To generate a diff of this commit: cvs rdiff -u -r1.3562 -r1.3563 pkgsrc/devel/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-typeguard/DESCR \ pkgsrc/devel/py-typeguard/Makefile pkgsrc/devel/py-typeguard/PLIST \ pkgsrc/devel/py-typeguard/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164296713153310 Content-Disposition: inline Content-Length: 3480 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/Makefile diff -u pkgsrc/devel/Makefile:1.3562 pkgsrc/devel/Makefile:1.3563 --- pkgsrc/devel/Makefile:1.3562 Thu Jan 20 23:23:02 2022 +++ pkgsrc/devel/Makefile Sun Jan 23 19:45:30 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3562 2022/01/20 23:23:02 leot Exp $ +# $NetBSD: Makefile,v 1.3563 2022/01/23 19:45:30 adam Exp $ # COMMENT= Development utilities @@ -2701,6 +2701,7 @@ SUBDIR+= py-txaio SUBDIR+= py-txgithub SUBDIR+= py-txrequests SUBDIR+= py-typed-ast +SUBDIR+= py-typeguard SUBDIR+= py-types-setuptools SUBDIR+= py-types-toml SUBDIR+= py-typing Added files: Index: pkgsrc/devel/py-typeguard/DESCR diff -u /dev/null pkgsrc/devel/py-typeguard/DESCR:1.1 --- /dev/null Sun Jan 23 19:45:31 2022 +++ pkgsrc/devel/py-typeguard/DESCR Sun Jan 23 19:45:31 2022 @@ -0,0 +1,2 @@ +This library provides run-time type checking for functions defined with PEP 484 +argument (and return) type annotations. Index: pkgsrc/devel/py-typeguard/Makefile diff -u /dev/null pkgsrc/devel/py-typeguard/Makefile:1.1 --- /dev/null Sun Jan 23 19:45:31 2022 +++ pkgsrc/devel/py-typeguard/Makefile Sun Jan 23 19:45:31 2022 @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1 2022/01/23 19:45:31 adam Exp $ + +DISTNAME= typeguard-2.13.3 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=t/typeguard/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/agronholm/typeguard +COMMENT= Python run-time type checking library +LICENSE= mit + +TEST_DEPENDS+= ${PYPKGPREFIX}-mypy>0:../../lang/py-mypy +TEST_DEPENDS+= ${PYPKGPREFIX}-test>0:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-typing-extensions>0:../../devel/py-typing-extensions + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-typeguard/PLIST diff -u /dev/null pkgsrc/devel/py-typeguard/PLIST:1.1 --- /dev/null Sun Jan 23 19:45:31 2022 +++ pkgsrc/devel/py-typeguard/PLIST Sun Jan 23 19:45:31 2022 @@ -0,0 +1,18 @@ +@comment $NetBSD: PLIST,v 1.1 2022/01/23 19:45:31 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/typeguard/__init__.py +${PYSITELIB}/typeguard/__init__.pyc +${PYSITELIB}/typeguard/__init__.pyo +${PYSITELIB}/typeguard/importhook.py +${PYSITELIB}/typeguard/importhook.pyc +${PYSITELIB}/typeguard/importhook.pyo +${PYSITELIB}/typeguard/py.typed +${PYSITELIB}/typeguard/pytest_plugin.py +${PYSITELIB}/typeguard/pytest_plugin.pyc +${PYSITELIB}/typeguard/pytest_plugin.pyo Index: pkgsrc/devel/py-typeguard/distinfo diff -u /dev/null pkgsrc/devel/py-typeguard/distinfo:1.1 --- /dev/null Sun Jan 23 19:45:31 2022 +++ pkgsrc/devel/py-typeguard/distinfo Sun Jan 23 19:45:31 2022 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2022/01/23 19:45:31 adam Exp $ + +BLAKE2s (typeguard-2.13.3.tar.gz) = c9f5519a55133aba5a963b9d5d005ad8d55ac3be4d210fb1ce1700888ca3f6ab +SHA512 (typeguard-2.13.3.tar.gz) = d0facef3bfa8b1489c4a011e4ee9b019410fc82bf7d9630d3384013960d06f018f905b1930a1c483876d1e093748dc44e6891420cc618b34a452e8637c9aee56 +Size (typeguard-2.13.3.tar.gz) = 40604 bytes --_----------=_164296713153310--