git: 736a5a1a787c - main - devel/py-asciimatics: Replace reference to PY_PILLOW with its value

From: Yasuhiro Kimura <yasu_at_FreeBSD.org>
Date: Fri, 10 Feb 2023 05:51:47 UTC
The branch main has been updated by yasu:

URL: https://cgit.FreeBSD.org/ports/commit/?id=736a5a1a787c9d75c168736ea2801c09fff7f7db

commit 736a5a1a787c9d75c168736ea2801c09fff7f7db
Author:     Yasuhiro Kimura <yasu@FreeBSD.org>
AuthorDate: 2023-02-08 07:27:06 +0000
Commit:     Yasuhiro Kimura <yasu@FreeBSD.org>
CommitDate: 2023-02-10 05:50:33 +0000

    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
---
 devel/py-asciimatics/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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}