diff options
author | Yasuhiro Kimura <yasu@FreeBSD.org> | 2023-02-08 07:27:06 +0000 |
---|---|---|
committer | Yasuhiro Kimura <yasu@FreeBSD.org> | 2023-02-10 05:50:33 +0000 |
commit | 736a5a1a787c9d75c168736ea2801c09fff7f7db (patch) | |
tree | df29ddb621657e16506e37188cd1087e17eb0335 | |
parent | 5a379d6a5115ed5927758c8919233aad0917530f (diff) | |
download | ports-736a5a1a787c9d75c168736ea2801c09fff7f7db.tar.gz ports-736a5a1a787c9d75c168736ea2801c09fff7f7db.zip |
devel/py-asciimatics: 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: 269400
Approved by: maintainer
-rw-r--r-- | devel/py-asciimatics/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/py-asciimatics/Makefile b/devel/py-asciimatics/Makefile index 09507276b813..051d5083c3b4 100644 --- a/devel/py-asciimatics/Makefile +++ b/devel/py-asciimatics/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR} \ - ${PY_PILLOW} \ + ${PYTHON_PKGNAMEPREFIX}pillow>=7.0.0:graphics/py-pillow@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyfiglet>=0.7.2:misc/py-pyfiglet@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wcwidth>0:devel/py-wcwidth@${PY_FLAVOR} |