git: 4b5bd7f34d5f - main - benchmarks/py-locust: Fix RUN_DEPENDS
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 10 Sep 2025 04:46:52 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=4b5bd7f34d5f53b490643f481d361012eb6fdb4c commit 4b5bd7f34d5f53b490643f481d361012eb6fdb4c Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2025-09-10 04:37:51 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2025-09-10 04:37:51 +0000 benchmarks/py-locust: Fix RUN_DEPENDS - Use PY_TOMLI - Bump PORTREVISION for dependency change from pyproject.toml: "tomli>=1.1.0; python_version < '3.11'", Reference: https://github.com/locustio/locust/blob/2.37.10/pyproject.toml#L44 Approved by: portmgr (blanket) With hat: python --- benchmarks/py-locust/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/benchmarks/py-locust/Makefile b/benchmarks/py-locust/Makefile index 02004755443e..66e57de038ed 100644 --- a/benchmarks/py-locust/Makefile +++ b/benchmarks/py-locust/Makefile @@ -1,5 +1,6 @@ PORTNAME= locust DISTVERSION= 2.37.10 +PORTREVISION= 1 CATEGORIES= benchmarks www python MASTER_SITES= PYPI \ https://github.com/locustio/locust/archive/refs/tags/:EXTRA @@ -31,7 +32,7 @@ RUN_DEPENDS= ${PY_SETUPTOOLS} \ ${PYTHON_PKGNAMEPREFIX}psutil>=0:sysutils/py-psutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyzmq>=0:net/py-pyzmq@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tomli>=0:textproc/py-tomli@${PY_FLAVOR} \ + ${PY_TOMLI} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=0:devel/py-typing-extensions@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}werkzeug>=0:www/py-werkzeug@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \