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:           Wed Feb 21 12:20:56 UTC 2024

Modified Files:
        pkgsrc/devel: Makefile
Added Files:
        pkgsrc/devel/py-test-lazy-fixtures: DESCR Makefile PLIST distinfo

Log Message:
py-test-lazy-fixtures: added version 1.0.5

Use your fixtures in @pytest.mark.parametrize.

Improvements that have been made in this project:
* You can use fixtures in any data structures
* You can access the attributes of fixtures
* You can use functions in fixtures


To generate a diff of this commit:
cvs rdiff -u -r1.4181 -r1.4182 pkgsrc/devel/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-test-lazy-fixtures/DESCR \
    pkgsrc/devel/py-test-lazy-fixtures/Makefile \
    pkgsrc/devel/py-test-lazy-fixtures/PLIST \
    pkgsrc/devel/py-test-lazy-fixtures/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/Makefile
diff -u pkgsrc/devel/Makefile:1.4181 pkgsrc/devel/Makefile:1.4182
--- pkgsrc/devel/Makefile:1.4181        Mon Feb 19 20:50:45 2024
+++ pkgsrc/devel/Makefile       Wed Feb 21 12:20:55 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4181 2024/02/19 20:50:45 schmonz Exp $
+# $NetBSD: Makefile,v 1.4182 2024/02/21 12:20:55 adam Exp $
 #
 
 COMMENT=       Development utilities
@@ -3042,6 +3042,7 @@ SUBDIR+=  py-test-freezer
 SUBDIR+=       py-test-httpserver
 SUBDIR+=       py-test-isort
 SUBDIR+=       py-test-lazy-fixture
+SUBDIR+=       py-test-lazy-fixtures
 SUBDIR+=       py-test-localserver
 SUBDIR+=       py-test-mock
 SUBDIR+=       py-test-mypy

Added files:

Index: pkgsrc/devel/py-test-lazy-fixtures/DESCR
diff -u /dev/null pkgsrc/devel/py-test-lazy-fixtures/DESCR:1.1
--- /dev/null   Wed Feb 21 12:20:56 2024
+++ pkgsrc/devel/py-test-lazy-fixtures/DESCR    Wed Feb 21 12:20:55 2024
@@ -0,0 +1,6 @@
+Use your fixtures in @pytest.mark.parametrize.
+
+Improvements that have been made in this project:
+* You can use fixtures in any data structures
+* You can access the attributes of fixtures
+* You can use functions in fixtures
Index: pkgsrc/devel/py-test-lazy-fixtures/Makefile
diff -u /dev/null pkgsrc/devel/py-test-lazy-fixtures/Makefile:1.1
--- /dev/null   Wed Feb 21 12:20:56 2024
+++ pkgsrc/devel/py-test-lazy-fixtures/Makefile Wed Feb 21 12:20:55 2024
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1 2024/02/21 12:20:55 adam Exp $
+
+DISTNAME=      pytest_lazy_fixtures-1.0.5
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/py//:S/_/-/}
+CATEGORIES=    devel python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pytest-lazy-fixtures/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/dev-petrov/pytest-lazy-fixtures
+COMMENT=       Allows you to use fixtures in @pytest.mark.parametrize
+LICENSE=       mit
+
+TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry-core-[0-9]*:../../devel/py-poetry-core
+DEPENDS+=      ${PYPKGPREFIX}-test>=7:../../devel/py-test
+
+USE_LANGUAGES= # none
+
+PYTHON_VERSIONS_INCOMPATIBLE=  27
+
+.include "../../lang/python/wheel.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/py-test-lazy-fixtures/PLIST
diff -u /dev/null pkgsrc/devel/py-test-lazy-fixtures/PLIST:1.1
--- /dev/null   Wed Feb 21 12:20:56 2024
+++ pkgsrc/devel/py-test-lazy-fixtures/PLIST    Wed Feb 21 12:20:55 2024
@@ -0,0 +1,25 @@
+@comment $NetBSD: PLIST,v 1.1 2024/02/21 12:20:55 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/pytest_lazy_fixtures/__init__.py
+${PYSITELIB}/pytest_lazy_fixtures/__init__.pyc
+${PYSITELIB}/pytest_lazy_fixtures/__init__.pyo
+${PYSITELIB}/pytest_lazy_fixtures/lazy_fixture.py
+${PYSITELIB}/pytest_lazy_fixtures/lazy_fixture.pyc
+${PYSITELIB}/pytest_lazy_fixtures/lazy_fixture.pyo
+${PYSITELIB}/pytest_lazy_fixtures/lazy_fixture_callable.py
+${PYSITELIB}/pytest_lazy_fixtures/lazy_fixture_callable.pyc
+${PYSITELIB}/pytest_lazy_fixtures/lazy_fixture_callable.pyo
+${PYSITELIB}/pytest_lazy_fixtures/loader.py
+${PYSITELIB}/pytest_lazy_fixtures/loader.pyc
+${PYSITELIB}/pytest_lazy_fixtures/loader.pyo
+${PYSITELIB}/pytest_lazy_fixtures/normalizer.py
+${PYSITELIB}/pytest_lazy_fixtures/normalizer.pyc
+${PYSITELIB}/pytest_lazy_fixtures/normalizer.pyo
+${PYSITELIB}/pytest_lazy_fixtures/plugin.py
+${PYSITELIB}/pytest_lazy_fixtures/plugin.pyc
+${PYSITELIB}/pytest_lazy_fixtures/plugin.pyo
+${PYSITELIB}/pytest_lazy_fixtures/py.typed
Index: pkgsrc/devel/py-test-lazy-fixtures/distinfo
diff -u /dev/null pkgsrc/devel/py-test-lazy-fixtures/distinfo:1.1
--- /dev/null   Wed Feb 21 12:20:56 2024
+++ pkgsrc/devel/py-test-lazy-fixtures/distinfo Wed Feb 21 12:20:56 2024
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2024/02/21 12:20:56 adam Exp $
+
+BLAKE2s (pytest_lazy_fixtures-1.0.5.tar.gz) = cee49bb285f5a03b314d409e2d06ab8d43ae1ddd115e1d075c07ad5190cd9589
+SHA512 (pytest_lazy_fixtures-1.0.5.tar.gz) = 9b96b82feeaffe222a9eb733251ef8d171fee76908739965ffe47c069df9055dee30d5631a4d1913b5bf6706b83697129bbd95ea84f414a3612806d0a581a79b
+Size (pytest_lazy_fixtures-1.0.5.tar.gz) = 4989 bytes



Home | Main Index | Thread Index | Old Index