pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-tox



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Oct 14 17:12:35 UTC 2024

Modified Files:
        pkgsrc/devel/py-tox: Makefile PLIST distinfo

Log Message:
py-tox: updated to 4.21.2

v4.21.2 (2024-10-03)
Bugfixes - 4.21.2
Include tox.toml in sdist archives to fix test failures resulting from its lack.

v4.21.1 (2024-10-02)
Bugfixes - 4.21.1
Fix error when using requires within a TOML configuration file
Fix error when using deps within a TOML configuration file
Multiple fixes for the TOML configuration by @gaborbernat.:
Do not fail when there is an empty command within commands.
Allow references for set_env by accepting list of dictionaries for it.
Do not try to be smart about reference unrolling, instead allow the user to control it via the extend flag, available both for posargs and ref replacements.
The ref replacements raw key has been renamed to of.

v4.21.0 (2024-09-30)
Features - 4.21.0
Native TOML configuration support
Improved Documentation - 4.21.0
Update Loader docs


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 pkgsrc/devel/py-tox/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/py-tox/PLIST
cvs rdiff -u -r1.41 -r1.42 pkgsrc/devel/py-tox/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-tox/Makefile
diff -u pkgsrc/devel/py-tox/Makefile:1.52 pkgsrc/devel/py-tox/Makefile:1.53
--- pkgsrc/devel/py-tox/Makefile:1.52   Tue Sep 10 07:43:20 2024
+++ pkgsrc/devel/py-tox/Makefile        Mon Oct 14 17:12:34 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.52 2024/09/10 07:43:20 adam Exp $
+# $NetBSD: Makefile,v 1.53 2024/10/14 17:12:34 adam Exp $
 
-DISTNAME=      tox-4.18.1
+DISTNAME=      tox-4.21.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=t/tox/}
@@ -10,43 +10,42 @@ HOMEPAGE=   https://tox.wiki/
 COMMENT=       Virtualenv-based automation of test activities
 LICENSE=       mit
 
-TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling>=1.25:../../devel/py-hatchling
 TOOL_DEPENDS+= ${PYPKGPREFIX}-hatch-vcs>=0.4:../../devel/py-hatch-vcs
-DEPENDS+=      ${PYPKGPREFIX}-cachetools>=5.3.3:../../devel/py-cachetools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling>=1.25:../../devel/py-hatchling
+DEPENDS+=      ${PYPKGPREFIX}-cachetools>=5.5:../../devel/py-cachetools
 DEPENDS+=      ${PYPKGPREFIX}-chardet>=5.2:../../converters/py-chardet
 DEPENDS+=      ${PYPKGPREFIX}-colorama>=0.4.6:../../comms/py-colorama
-DEPENDS+=      ${PYPKGPREFIX}-filelock>=3.15.4:../../devel/py-filelock
+DEPENDS+=      ${PYPKGPREFIX}-filelock>=3.16.1:../../devel/py-filelock
 DEPENDS+=      ${PYPKGPREFIX}-packaging>=24.1:../../devel/py-packaging
-DEPENDS+=      ${PYPKGPREFIX}-platformdirs>=4.2.2:../../misc/py-platformdirs
+DEPENDS+=      ${PYPKGPREFIX}-platformdirs>=4.3.6:../../misc/py-platformdirs
 DEPENDS+=      ${PYPKGPREFIX}-pluggy>=1.5:../../devel/py-pluggy
-DEPENDS+=      ${PYPKGPREFIX}-project-api>=1.7.1:../../devel/py-project-api
-DEPENDS+=      ${PYPKGPREFIX}-virtualenv>=20.26.3:../../devel/py-virtualenv
+DEPENDS+=      ${PYPKGPREFIX}-project-api>=1.8:../../devel/py-project-api
+DEPENDS+=      ${PYPKGPREFIX}-virtualenv>=20.26.6:../../devel/py-virtualenv
 
 # more unpackaged TEST_DEPENDS from pyproject.toml
-# "detect-test-pollution>=1.1.1",
-# "devpi-process>=0.3.1",
-# "diff-cover>=7.6",
+# "detect-test-pollution>=1.2",
+# "devpi-process>=1.0.2",
+# "diff-cover>=9.2",
 # "re-assert>=1.1",
 
-TEST_DEPENDS+= ${PYPKGPREFIX}-build>=1.2.1:../../devel/py-build
+TEST_DEPENDS+= ${PYPKGPREFIX}-build>=1.2.2:../../devel/py-build
 TEST_DEPENDS+= ${PYPKGPREFIX}-covdefaults>=2.3:../../devel/py-covdefaults
 TEST_DEPENDS+= ${PYPKGPREFIX}-distlib>=0.3.8:../../devel/py-distlib
 TEST_DEPENDS+= ${PYPKGPREFIX}-flaky>=3.8.1:../../devel/py-flaky
 TEST_DEPENDS+= ${PYPKGPREFIX}-psutil>=6:../../sysutils/py-psutil
-TEST_DEPENDS+= ${PYPKGPREFIX}-setuptools>=70.2:../../devel/py-setuptools
+TEST_DEPENDS+= ${PYPKGPREFIX}-setuptools>=75.1:../../devel/py-setuptools
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=5:../../devel/py-test-cov
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-mock>=3.14:../../devel/py-test-mock
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=3.6.1:../../devel/py-test-xdist
-TEST_DEPENDS+= ${PYPKGPREFIX}-time-machine>=2.14.2:../../time/py-time-machine
-TEST_DEPENDS+= ${PYPKGPREFIX}-wheel>=0.43:../../devel/py-wheel
+TEST_DEPENDS+= ${PYPKGPREFIX}-time-machine>=2.15:../../time/py-time-machine
+TEST_DEPENDS+= ${PYPKGPREFIX}-wheel>=0.44:../../devel/py-wheel
 
 USE_LANGUAGES= # none
 
-PYTHON_VERSIONS_INCOMPATIBLE=  27
-
 .include "../../lang/python/pyversion.mk"
 .if ${PYTHON_VERSION} < 311
 DEPENDS+=      ${PYPKGPREFIX}-tomli>=2.0.1:../../textproc/py-tomli
+DEPENDS+=      ${PYPKGPREFIX}-typing-extensions>=4.12.2:../../devel/py-typing-extensions
 .endif
 
 post-install:

Index: pkgsrc/devel/py-tox/PLIST
diff -u pkgsrc/devel/py-tox/PLIST:1.12 pkgsrc/devel/py-tox/PLIST:1.13
--- pkgsrc/devel/py-tox/PLIST:1.12      Sat Oct 28 19:57:08 2023
+++ pkgsrc/devel/py-tox/PLIST   Mon Oct 14 17:12:34 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.12 2023/10/28 19:57:08 wiz Exp $
+@comment $NetBSD: PLIST,v 1.13 2024/10/14 17:12:34 adam Exp $
 bin/tox-${PYVERSSUFFIX}
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
 ${PYSITELIB}/${WHEEL_INFODIR}/RECORD
@@ -50,6 +50,9 @@ ${PYSITELIB}/tox/config/loader/ini/repla
 ${PYSITELIB}/tox/config/loader/memory.py
 ${PYSITELIB}/tox/config/loader/memory.pyc
 ${PYSITELIB}/tox/config/loader/memory.pyo
+${PYSITELIB}/tox/config/loader/replacer.py
+${PYSITELIB}/tox/config/loader/replacer.pyc
+${PYSITELIB}/tox/config/loader/replacer.pyo
 ${PYSITELIB}/tox/config/loader/section.py
 ${PYSITELIB}/tox/config/loader/section.pyc
 ${PYSITELIB}/tox/config/loader/section.pyo
@@ -59,6 +62,18 @@ ${PYSITELIB}/tox/config/loader/str_conve
 ${PYSITELIB}/tox/config/loader/stringify.py
 ${PYSITELIB}/tox/config/loader/stringify.pyc
 ${PYSITELIB}/tox/config/loader/stringify.pyo
+${PYSITELIB}/tox/config/loader/toml/__init__.py
+${PYSITELIB}/tox/config/loader/toml/__init__.pyc
+${PYSITELIB}/tox/config/loader/toml/__init__.pyo
+${PYSITELIB}/tox/config/loader/toml/_api.py
+${PYSITELIB}/tox/config/loader/toml/_api.pyc
+${PYSITELIB}/tox/config/loader/toml/_api.pyo
+${PYSITELIB}/tox/config/loader/toml/_replace.py
+${PYSITELIB}/tox/config/loader/toml/_replace.pyc
+${PYSITELIB}/tox/config/loader/toml/_replace.pyo
+${PYSITELIB}/tox/config/loader/toml/_validate.py
+${PYSITELIB}/tox/config/loader/toml/_validate.pyc
+${PYSITELIB}/tox/config/loader/toml/_validate.pyo
 ${PYSITELIB}/tox/config/main.py
 ${PYSITELIB}/tox/config/main.pyc
 ${PYSITELIB}/tox/config/main.pyo
@@ -92,6 +107,12 @@ ${PYSITELIB}/tox/config/source/legacy_to
 ${PYSITELIB}/tox/config/source/setup_cfg.py
 ${PYSITELIB}/tox/config/source/setup_cfg.pyc
 ${PYSITELIB}/tox/config/source/setup_cfg.pyo
+${PYSITELIB}/tox/config/source/toml_pyproject.py
+${PYSITELIB}/tox/config/source/toml_pyproject.pyc
+${PYSITELIB}/tox/config/source/toml_pyproject.pyo
+${PYSITELIB}/tox/config/source/toml_tox.py
+${PYSITELIB}/tox/config/source/toml_tox.pyc
+${PYSITELIB}/tox/config/source/toml_tox.pyo
 ${PYSITELIB}/tox/config/source/tox_ini.py
 ${PYSITELIB}/tox/config/source/tox_ini.pyc
 ${PYSITELIB}/tox/config/source/tox_ini.pyo

Index: pkgsrc/devel/py-tox/distinfo
diff -u pkgsrc/devel/py-tox/distinfo:1.41 pkgsrc/devel/py-tox/distinfo:1.42
--- pkgsrc/devel/py-tox/distinfo:1.41   Tue Sep 10 07:43:20 2024
+++ pkgsrc/devel/py-tox/distinfo        Mon Oct 14 17:12:34 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.41 2024/09/10 07:43:20 adam Exp $
+$NetBSD: distinfo,v 1.42 2024/10/14 17:12:34 adam Exp $
 
-BLAKE2s (tox-4.18.1.tar.gz) = 5879ffffcc16fc4d18c52d472cb76e60254f802e1c5bde81abf30b6a4dc7592f
-SHA512 (tox-4.18.1.tar.gz) = 289ee3e8b7c941dbeb94adea24442169b33cfe3ae2c4d6eadd12974ee01488325d05beb92cc3b3d5aa1f795f9d3ffe65ed3da81bc62b0527edf56f5ddb9ceb32
-Size (tox-4.18.1.tar.gz) = 181159 bytes
+BLAKE2s (tox-4.21.2.tar.gz) = 911481c3d66a7f6a6b1ba4878daa2e37f9166a5f4248f8e6e810f5c569a7bd18
+SHA512 (tox-4.21.2.tar.gz) = a2a363ecaa88ac459e147471c1dca7152e21f77f38253b484a15fa908ea8b0e758761e8c2c475bb6bd374a636cb10004c7c2fb6c61fe3718b2b1c09569d0f08d
+Size (tox-4.21.2.tar.gz) = 188539 bytes



Home | Main Index | Thread Index | Old Index