Received: by mail.netbsd.org (Postfix, from userid 605) id 40BF684DDA; Sat, 16 May 2020 08:37:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BD05784CE9 for ; Sat, 16 May 2020 08:37:22 +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 MdcXcinn6Ooe for ; Sat, 16 May 2020 08:37:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1D3F784CDA for ; Sat, 16 May 2020 08:37:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 17791FB27; Sat, 16 May 2020 08:37:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589618242124000" MIME-Version: 1.0 Date: Sat, 16 May 2020 08:37:22 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test-runner To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200516083722.17791FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1589618242124000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat May 16 08:37:22 UTC 2020 Modified Files: pkgsrc/devel/py-test-runner: Makefile Log Message: py-test-runner: pytest from versioned deps. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/py-test-runner/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589618242124000 Content-Disposition: inline Content-Length: 1066 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-runner/Makefile diff -u pkgsrc/devel/py-test-runner/Makefile:1.18 pkgsrc/devel/py-test-runner/Makefile:1.19 --- pkgsrc/devel/py-test-runner/Makefile:1.18 Sat Oct 26 23:05:44 2019 +++ pkgsrc/devel/py-test-runner/Makefile Sat May 16 08:37:21 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2019/10/26 23:05:44 adam Exp $ +# $NetBSD: Makefile,v 1.19 2020/05/16 08:37:21 adam Exp $ DISTNAME= pytest-runner-5.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -11,14 +11,16 @@ COMMENT= Invoke py.test as distutils com LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm -DEPENDS+= ${PYPKGPREFIX}-test>=2.8:../../devel/py-test # introduces dependency cycle #TEST_DEPENDS+= ${PYPKGPREFIX}-test-flake8-[0-9]*:../../devel/py-test-flake8 USE_LANGUAGES= # none +PYTHON_VERSIONED_DEPENDENCIES= pytest + do-test: cd ${WRKSRC} && pytest-${PYVERSSUFFIX} .include "../../lang/python/egg.mk" +.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1589618242124000--