Received: by mail.netbsd.org (Postfix, from userid 605) id 4036584E27; Sat, 16 May 2020 09:16:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BC0BA84D53 for ; Sat, 16 May 2020 09:16:58 +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 VWsJ6J4Qc6JO for ; Sat, 16 May 2020 09:16:58 +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 36E0A84CCD for ; Sat, 16 May 2020 09:16:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2B8C8FB27; Sat, 16 May 2020 09:16:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589620618229500" MIME-Version: 1.0 Date: Sat, 16 May 2020 09:16:58 +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: <20200516091658.2B8C8FB27@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. --_----------=_1589620618229500 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:16:58 UTC 2020 Modified Files: pkgsrc/devel/py-test-shutil: Makefile pkgsrc/devel/py-test-sugar: Makefile Log Message: pytest from versioned depends To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-test-shutil/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/py-test-sugar/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589620618229500 Content-Disposition: inline Content-Length: 1867 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-shutil/Makefile diff -u pkgsrc/devel/py-test-shutil/Makefile:1.4 pkgsrc/devel/py-test-shutil/Makefile:1.5 --- pkgsrc/devel/py-test-shutil/Makefile:1.4 Wed Sep 4 07:57:08 2019 +++ pkgsrc/devel/py-test-shutil/Makefile Sat May 16 09:16:57 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2019/09/04 07:57:08 adam Exp $ +# $NetBSD: Makefile,v 1.5 2020/05/16 09:16:57 adam Exp $ DISTNAME= pytest-shutil-1.7.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -16,9 +16,11 @@ DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../ DEPENDS+= ${PYPKGPREFIX}-path.py-[0-9]*:../../devel/py-path.py DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six DEPENDS+= ${PYPKGPREFIX}-termcolor-[0-9]*:../../devel/py-termcolor -DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../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-sugar/Makefile diff -u pkgsrc/devel/py-test-sugar/Makefile:1.5 pkgsrc/devel/py-test-sugar/Makefile:1.6 --- pkgsrc/devel/py-test-sugar/Makefile:1.5 Mon Apr 27 08:18:04 2020 +++ pkgsrc/devel/py-test-sugar/Makefile Sat May 16 09:16:57 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2020/04/27 08:18:04 adam Exp $ +# $NetBSD: Makefile,v 1.6 2020/05/16 09:16:57 adam Exp $ DISTNAME= pytest-sugar-0.9.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -11,9 +11,11 @@ COMMENT= Py.test plugin that changes the LICENSE= modified-bsd DEPENDS+= ${PYPKGPREFIX}-termcolor>=1.1.0:../../devel/py-termcolor -DEPENDS+= ${PYPKGPREFIX}-test>=2.9:../../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" --_----------=_1589620618229500--