Received: by mail.netbsd.org (Postfix, from userid 605) id CE16284E29; Sat, 16 May 2020 09:10:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 574DA84E28 for ; Sat, 16 May 2020 09:10:43 +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 gTcQCYp-79pc for ; Sat, 16 May 2020 09:10:42 +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 9DA4E84CCD for ; Sat, 16 May 2020 09:10:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9BEECFB27; Sat, 16 May 2020 09:10:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589620242130510" MIME-Version: 1.0 Date: Sat, 16 May 2020 09:10:42 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-distro To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200516091042.9BEECFB27@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. --_----------=_1589620242130510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat May 16 09:10:42 UTC 2020 Modified Files: pkgsrc/devel/py-distro: Makefile Log Message: pytest from versioned depends To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-distro/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589620242130510 Content-Disposition: inline Content-Length: 1056 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-distro/Makefile diff -u pkgsrc/devel/py-distro/Makefile:1.3 pkgsrc/devel/py-distro/Makefile:1.4 --- pkgsrc/devel/py-distro/Makefile:1.3 Mon Apr 6 09:14:03 2020 +++ pkgsrc/devel/py-distro/Makefile Sat May 16 09:10:42 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2020/04/06 09:14:03 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2020/05/16 09:10:42 adam Exp $ DISTNAME= distro-1.5.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -10,7 +10,7 @@ HOMEPAGE= https://github.com/nir0s/distr COMMENT= OS platform information API LICENSE= apache-2.0 -TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +PYTHON_VERSIONED_DEPENDENCIES= test:test USE_LANGUAGES= # none @@ -19,7 +19,8 @@ post-install: ${MV} distro distro-${PYVERSSUFFIX} || ${TRUE} do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} py.test-${PYVERSSUFFIX} + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} .include "../../lang/python/egg.mk" +.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1589620242130510--