pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel
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.
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"
Home |
Main Index |
Thread Index |
Old Index