git: fc69f28be2bf - main - devel/py-trimesh: Replace reference to PY_PILLOW with its value
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 25 Feb 2023 03:21:45 UTC
The branch main has been updated by yasu: URL: https://cgit.FreeBSD.org/ports/commit/?id=fc69f28be2bfa1f93715d8857643a0b277fd9607 commit fc69f28be2bfa1f93715d8857643a0b277fd9607 Author: Yasuhiro Kimura <yasu@FreeBSD.org> AuthorDate: 2023-02-08 07:40:23 +0000 Commit: Yasuhiro Kimura <yasu@FreeBSD.org> CommitDate: 2023-02-25 03:21:12 +0000 devel/py-trimesh: Replace reference to PY_PILLOW with its value Since this port doesn't work with Python 2.7, the value of PY_PILLOW doesn't change. So replace reference to it with its value. PR: 269402 Approved by: maintainer timeout --- devel/py-trimesh/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devel/py-trimesh/Makefile b/devel/py-trimesh/Makefile index f3997228ccf5..7d525e0ba4a7 100644 --- a/devel/py-trimesh/Makefile +++ b/devel/py-trimesh/Makefile @@ -22,7 +22,7 @@ NEEDED_DEPENDS= ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}svg_path>0:graphics/py-svg.path@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sympy>0:math/py-sympy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}msgpack>0:devel/py-msgpack@${PY_FLAVOR} \ - ${PY_PILLOW} \ + ${PYTHON_PKGNAMEPREFIX}pillow>=7.0.0:graphics/py-pillow@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}xxhash>0:devel/py-xxhash@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pycollada>0:graphics/py-pycollada@${PY_FLAVOR} \