pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-test-runner



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Apr 30 19:50:15 UTC 2023

Modified Files:
        pkgsrc/devel/py-test-runner: Makefile PLIST distinfo

Log Message:
py-test-runner: update to 6.0.0.

v6.0.0
======

* #49: Dropped workaround for older setuptools versions.
* Require Python 3.7.

v5.3.2
======

* #58: Fixed syntax issue in changelog.

v5.3.1
======

* Refreshed package metadata.

v5.3.0
======

* Require Python 3.6 or later.
* Refreshed package metadata.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/py-test-runner/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-test-runner/PLIST
cvs rdiff -u -r1.17 -r1.18 pkgsrc/devel/py-test-runner/distinfo

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-runner/Makefile
diff -u pkgsrc/devel/py-test-runner/Makefile:1.22 pkgsrc/devel/py-test-runner/Makefile:1.23
--- pkgsrc/devel/py-test-runner/Makefile:1.22   Thu Jan 13 19:31:22 2022
+++ pkgsrc/devel/py-test-runner/Makefile        Sun Apr 30 19:50:15 2023
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.22 2022/01/13 19:31:22 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2023/04/30 19:50:15 wiz Exp $
 
-DISTNAME=      pytest-runner-5.2
+DISTNAME=      pytest-runner-6.0.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/py//}
-PKGREVISION=   1
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pytest-runner/}
 
@@ -11,16 +10,28 @@ HOMEPAGE=   https://github.com/pytest-dev/
 COMMENT=       Invoke py.test as distutils command with dependency resolution
 LICENSE=       mit
 
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
+TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
+TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6:../../devel/py-test
+# unpackaged
+#TEST_DEPENDS+=        ${PYPKGPREFIX}-test-black>=0.3.7:../../devel/py-test-black
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=0:../../devel/py-test-cov
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-mypy>=0.9.1:../../devel/py-test-mypy
+# unpackaged
+#TEST_DEPENDS+=        ${PYPKGPREFIX}-test-enabler>=1.0.1:../../devel/py-test-enabler
 # introduces dependency cycle
-#TEST_DEPENDS+=        ${PYPKGPREFIX}-test-flake8-[0-9]*:../../devel/py-test-flake8
+#TEST_DEPENDS+=        ${PYPKGPREFIX}-test-flake8>=0:../../devel/py-test-flake8
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-checkdocs>=2.4:../../devel/py-test-checkdocs
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-virtualenv-[0-9]*:../../devel/py-test-virtualenv
+TEST_DEPENDS+= ${PYPKGPREFIX}-types-setuptools-[0-9]*:../../devel/py-types-setuptools
 
 USE_LANGUAGES= # none
 
-PYTHON_VERSIONED_DEPENDENCIES= test setuptools_scm
+PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 do-test:
        cd ${WRKSRC} && pytest-${PYVERSSUFFIX}
 
-.include "../../lang/python/egg.mk"
-.include "../../lang/python/versioned_dependencies.mk"
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/py-test-runner/PLIST
diff -u pkgsrc/devel/py-test-runner/PLIST:1.4 pkgsrc/devel/py-test-runner/PLIST:1.5
--- pkgsrc/devel/py-test-runner/PLIST:1.4       Fri Oct 25 09:41:54 2019
+++ pkgsrc/devel/py-test-runner/PLIST   Sun Apr 30 19:50:15 2023
@@ -1,10 +1,12 @@
-@comment $NetBSD: PLIST,v 1.4 2019/10/25 09:41:54 adam Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
-${PYSITELIB}/ptr.py
-${PYSITELIB}/ptr.pyc
-${PYSITELIB}/ptr.pyo
+@comment $NetBSD: PLIST,v 1.5 2023/04/30 19:50:15 wiz Exp $
+${PYSITELIB}/ptr/__init__.py
+${PYSITELIB}/ptr/__init__.pyc
+${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt

Index: pkgsrc/devel/py-test-runner/distinfo
diff -u pkgsrc/devel/py-test-runner/distinfo:1.17 pkgsrc/devel/py-test-runner/distinfo:1.18
--- pkgsrc/devel/py-test-runner/distinfo:1.17   Tue Oct 26 10:19:09 2021
+++ pkgsrc/devel/py-test-runner/distinfo        Sun Apr 30 19:50:15 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.17 2021/10/26 10:19:09 nia Exp $
+$NetBSD: distinfo,v 1.18 2023/04/30 19:50:15 wiz Exp $
 
-BLAKE2s (pytest-runner-5.2.tar.gz) = ec63a2b4f1bc2d4d5655e8f659b178971d0e61083c3d7cb5b9fba4583b699811
-SHA512 (pytest-runner-5.2.tar.gz) = 5fc62a4e681cfa0ef25dc815ccbbfe1a7ca0e9e7783c2ba2db0da7d2539f11c08d6c3fad2ab3dfe7f0d50fe7bfb41127b11ec9af67ef8e32361655bc910c8245
-Size (pytest-runner-5.2.tar.gz) = 15534 bytes
+BLAKE2s (pytest-runner-6.0.0.tar.gz) = 4edd95570280d8d243fdbd20008eaa9eef43887d25c60e433c662363e96dd234
+SHA512 (pytest-runner-6.0.0.tar.gz) = a3393cc283ba13fa53c76f501d7b8e27735c45ebcd09c263c277472d89e488cf94b704affae9b810e696e8d8fdf6b5acb39193c37fca6dab16cd24a3839e0389
+Size (pytest-runner-6.0.0.tar.gz) = 15741 bytes



Home | Main Index | Thread Index | Old Index