summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2025-09-10 12:37:57 +0800
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2025-09-10 12:37:57 +0800
commit5bb62c67192559f9968e7ae12d34df21b71c6605 (patch)
tree56008da099f2dc00db203c75b6bdf3256b7ef347
parentbenchmarks/py-locust: Fix RUN_DEPENDS (diff)
devel/py-cyclopts: Fix RUN_DEPENDS
- Use PY_TOMLI - While I'm here, add NO_ARCH - Bump PORTREVISION for dependency change from pyproject.toml: tomli = {version = ">=2.0.0", python = "<3.11", optional = true} Reference: https://github.com/BrianPugh/cyclopts/blob/v3.23.1/pyproject.toml#L37 Approved by: portmgr (blanket) With hat: python
-rw-r--r--devel/py-cyclopts/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/devel/py-cyclopts/Makefile b/devel/py-cyclopts/Makefile
index a410b7d123ec..67244d1ec516 100644
--- a/devel/py-cyclopts/Makefile
+++ b/devel/py-cyclopts/Makefile
@@ -1,5 +1,6 @@
PORTNAME= cyclopts
DISTVERSION= 3.23.1
+PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= PYPI # no tests
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -19,11 +20,13 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>=23.1.0:devel/py-attrs@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pyyaml>=6.0.1:devel/py-pyyaml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}rich-rst>=1.3.1:textproc/py-rich-rst@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}rich>=13.6.0:textproc/py-rich@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}tomli>=2.0:textproc/py-tomli@${PY_FLAVOR} \
+ ${PY_TOMLI} \
${PYTHON_PKGNAMEPREFIX}trio>=0.10.0:net/py-trio@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.8.0:devel/py-typing-extensions@${PY_FLAVOR}
USES= python
USE_PYTHON= pep517 autoplist pytest
+NO_ARCH= yes
+
.include <bsd.port.mk>