Received: by mail.netbsd.org (Postfix, from userid 605) id 021BC84D27; Sun, 30 Apr 2023 15:40:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3257384CFD for ; Sun, 30 Apr 2023 15:40:21 +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 V06JWDHfyrYg for ; Sun, 30 Apr 2023 15:40:20 +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 AB31584CC9 for ; Sun, 30 Apr 2023 15:40:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9C4B9FA87; Sun, 30 Apr 2023 15:40:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168286922060850" MIME-Version: 1.0 Date: Sun, 30 Apr 2023 15:40:20 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/py-jsonpickle To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230430154020.9C4B9FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168286922060850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Apr 30 15:40:20 UTC 2023 Modified Files: pkgsrc/textproc/py-jsonpickle: Makefile Log Message: py-jsonpickle: not for python 2 To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/textproc/py-jsonpickle/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168286922060850 Content-Disposition: inline Content-Length: 1528 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-jsonpickle/Makefile diff -u pkgsrc/textproc/py-jsonpickle/Makefile:1.14 pkgsrc/textproc/py-jsonpickle/Makefile:1.15 --- pkgsrc/textproc/py-jsonpickle/Makefile:1.14 Wed Mar 29 09:34:13 2023 +++ pkgsrc/textproc/py-jsonpickle/Makefile Sun Apr 30 15:40:20 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2023/03/29 09:34:13 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2023/04/30 15:40:20 wiz Exp $ DISTNAME= jsonpickle-2.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,21 +11,23 @@ HOMEPAGE= https://jsonpickle.github.io/ COMMENT= Python library for serializing any arbitrary object graph into JSON LICENSE= modified-bsd +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm +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 +PYTHON_VERSIONS_INCOMPATIBLE= 27 + .include "../../lang/python/pyversion.mk" .if ${PYTHON_VERSION} < 308 -PYTHON_VERSIONED_DEPENDENCIES+= importlib-metadata +DEPENDS+= ${PYPKGPREFIX}-importlib-metadata-[0-9]*:../../devel/py-importlib-metadata .endif USE_LANGUAGES= # none -PYTHON_VERSIONED_DEPENDENCIES+= setuptools_scm:build test:test test-cov:test - do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_168286922060850--