Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Feb 2023 03:21:44 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: db54325ab180 - main - comms/apitran: Replace reference to PY_PILLOW with its value
Message-ID:  <202302250321.31P3Lis9024333@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=db54325ab180efb8c8315969343602789106a1a8

commit db54325ab180efb8c8315969343602789106a1a8
Author:     Yasuhiro Kimura <yasu@FreeBSD.org>
AuthorDate: 2023-02-08 04:00:07 +0000
Commit:     Yasuhiro Kimura <yasu@FreeBSD.org>
CommitDate: 2023-02-25 03:21:07 +0000

    comms/apitran: Replace reference to PY_PILLOW with its value
    
    Since this port works with Python 3.6 and later, the value of
    PY_PILLOW doesn't change. So replace reference to it with its value.
    
    PR:             269398
    Approved by:    maintainer timeout
---
 comms/apitran/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/comms/apitran/Makefile b/comms/apitran/Makefile
index b150bc655c90..eb00260566e8 100644
--- a/comms/apitran/Makefile
+++ b/comms/apitran/Makefile
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \
 		${PYNUMPY} \
-		${PY_PILLOW} \
+		${PYTHON_PKGNAMEPREFIX}pillow>=7.0.0:graphics/py-pillow@${PY_FLAVOR} \
 		sox:audio/sox
 
 USES=		magick:6,run python:3.6+,run shebangfix



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302250321.31P3Lis9024333>