Date: Wed, 8 Feb 2023 07:23:45 GMT From: Yasuhiro Kimura <yasu@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 2995aeb28869 - main - deskutils/griffith: Replace reference to PY_PILLOW with its value Message-ID: <202302080723.3187NjVZ095626@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by yasu: URL: https://cgit.FreeBSD.org/ports/commit/?id=2995aeb28869ef95e5b1090534b6d200b8ce517b commit 2995aeb28869ef95e5b1090534b6d200b8ce517b Author: Yasuhiro Kimura <yasu@FreeBSD.org> AuthorDate: 2023-02-08 07:19:34 +0000 Commit: Yasuhiro Kimura <yasu@FreeBSD.org> CommitDate: 2023-02-08 07:23:14 +0000 deskutils/griffith: Replace reference to PY_PILLOW with its value Since this port works with Python 3.7 and later, the value of PY_PILLOW doesn't change. So replace reference to it with its value. --- deskutils/griffith/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deskutils/griffith/Makefile b/deskutils/griffith/Makefile index 1d439120da7f..90cc89956342 100644 --- a/deskutils/griffith/Makefile +++ b/deskutils/griffith/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sqlalchemy12>=1.1:databases/py-sqlalchemy12@${PY_FLAVOR} \ - ${PY_PILLOW} \ + ${PYTHON_PKGNAMEPREFIX}pillow>=7.0.0:graphics/py-pillow@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}reportlab>=3.4:print/py-reportlab@${PY_FLAVOR} USES= gettext-runtime gmake gnome python:3.4+ shebangfix
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302080723.3187NjVZ095626>