Received: by mail.netbsd.org (Postfix, from userid 605) id CC12784E2C; Sat, 16 May 2020 09:15:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 22C8084E27 for ; Sat, 16 May 2020 09:15:11 +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 DkkZkeHiccsP for ; Sat, 16 May 2020 09:15:10 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 19CE684CCD for ; Sat, 16 May 2020 09:15:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1403FFB27; Sat, 16 May 2020 09:15:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589620510215150" MIME-Version: 1.0 Date: Sat, 16 May 2020 09:15:10 +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: <20200516091510.1403FFB27@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. --_----------=_1589620510215150 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:15:09 UTC 2020 Modified Files: pkgsrc/devel/py-test-assume: Makefile pkgsrc/devel/py-test-cache: Makefile pkgsrc/devel/py-test-fixture-config: Makefile pkgsrc/devel/py-test-forked: Makefile Log Message: pytest from versioned depends To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-test-assume/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-test-cache/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-test-fixture-config/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-test-forked/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589620510215150 Content-Disposition: inline Content-Length: 3692 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-assume/Makefile diff -u pkgsrc/devel/py-test-assume/Makefile:1.5 pkgsrc/devel/py-test-assume/Makefile:1.6 --- pkgsrc/devel/py-test-assume/Makefile:1.5 Sun Apr 12 11:49:40 2020 +++ pkgsrc/devel/py-test-assume/Makefile Sat May 16 09:15:09 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2020/04/12 11:49:40 adam Exp $ +# $NetBSD: Makefile,v 1.6 2020/05/16 09:15:09 adam Exp $ DISTNAME= pytest-assume-2.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -10,9 +10,10 @@ HOMEPAGE= https://github.com/astraw38/py COMMENT= Py.test plugin that allows multiple failures per test LICENSE= mit -DEPENDS+= ${PYPKGPREFIX}-test>=2.7:../../devel/py-test +PYTHON_VERSIONED_DEPENDENCIES= test USE_LANGUAGES= # none .include "../../lang/python/egg.mk" +.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-test-cache/Makefile diff -u pkgsrc/devel/py-test-cache/Makefile:1.2 pkgsrc/devel/py-test-cache/Makefile:1.3 --- pkgsrc/devel/py-test-cache/Makefile:1.2 Mon Sep 4 18:08:22 2017 +++ pkgsrc/devel/py-test-cache/Makefile Sat May 16 09:15:09 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2017/09/04 18:08:22 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2020/05/16 09:15:09 adam Exp $ DISTNAME= pytest-cache-1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -11,9 +11,11 @@ COMMENT= Pytest plugin with mechanisms f LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-execnet>=1.2:../../devel/py-execnet -DEPENDS+= ${PYPKGPREFIX}-test>=2.2:../../devel/py-test -USE_LANGUAGES= # none +PYTHON_VERSIONED_DEPENDENCIES= test + +USE_LANGUAGES= # none .include "../../lang/python/egg.mk" +.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-test-fixture-config/Makefile diff -u pkgsrc/devel/py-test-fixture-config/Makefile:1.4 pkgsrc/devel/py-test-fixture-config/Makefile:1.5 --- pkgsrc/devel/py-test-fixture-config/Makefile:1.4 Fri Jun 14 07:49:36 2019 +++ pkgsrc/devel/py-test-fixture-config/Makefile Sat May 16 09:15:09 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2019/06/14 07:49:36 adam Exp $ +# $NetBSD: Makefile,v 1.5 2020/05/16 09:15:09 adam Exp $ DISTNAME= pytest-fixture-config-1.7.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -10,10 +10,12 @@ HOMEPAGE= https://github.com/manahl/pyte COMMENT= Fixture configuration utils for py.test LICENSE= mit -DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six +PYTHON_VERSIONED_DEPENDENCIES= test + USE_LANGUAGES= # none .include "../../lang/python/egg.mk" +.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-test-forked/Makefile diff -u pkgsrc/devel/py-test-forked/Makefile:1.5 pkgsrc/devel/py-test-forked/Makefile:1.6 --- pkgsrc/devel/py-test-forked/Makefile:1.5 Thu Oct 24 12:48:54 2019 +++ pkgsrc/devel/py-test-forked/Makefile Sat May 16 09:15:09 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2019/10/24 12:48:54 adam Exp $ +# $NetBSD: Makefile,v 1.6 2020/05/16 09:15:09 adam Exp $ DISTNAME= pytest-forked-1.1.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -11,7 +11,8 @@ COMMENT= Run tests in isolated forked su LICENSE= mit BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm -DEPENDS+= ${PYPKGPREFIX}-test>=3.1.0:../../devel/py-test + +PYTHON_VERSIONED_DEPENDENCIES= test USE_LANGUAGES= # none @@ -19,4 +20,5 @@ do-test: cd ${WRKSRC} && pytest-${PYVERSSUFFIX} testing .include "../../lang/python/egg.mk" +.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1589620510215150--