Received: by mail.netbsd.org (Postfix, from userid 605) id E14C184DA5; Sat, 8 Oct 2022 13:19:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1E56384D80 for ; Sat, 8 Oct 2022 13:19:53 +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 L3IhBYfJwueB for ; Sat, 8 Oct 2022 13:19:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6EAAB84C13 for ; Sat, 8 Oct 2022 13:19:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6C502FA90; Sat, 8 Oct 2022 13:19:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1665235192236250" MIME-Version: 1.0 Date: Sat, 8 Oct 2022 13:19:52 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-cbor2 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221008131952.6C502FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1665235192236250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Oct 8 13:19:52 UTC 2022 Added Files: pkgsrc/devel/py-cbor2: Makefile Log Message: py-cbor2: ...and Makefile To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-cbor2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1665235192236250 Content-Disposition: inline Content-Length: 973 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-cbor2/Makefile diff -u /dev/null pkgsrc/devel/py-cbor2/Makefile:1.1 --- /dev/null Sat Oct 8 13:19:52 2022 +++ pkgsrc/devel/py-cbor2/Makefile Sat Oct 8 13:19:52 2022 @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1 2022/10/08 13:19:52 adam Exp $ + +DISTNAME= cbor2-5.4.3 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=c/cbor2/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://cbor2.readthedocs.org/ +COMMENT= CBOR (de)serializer with extensive tag support +LICENSE= mit + +BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=1.7.0:../../devel/py-setuptools_scm +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" --_----------=_1665235192236250--