svn commit: r529061 - head/Mk/Uses

Antoine Brodin antoine at FreeBSD.org
Tue Mar 24 20:00:44 UTC 2020


Author: antoine
Date: Tue Mar 24 19:51:44 2020
New Revision: 529061
URL: https://svnweb.freebsd.org/changeset/ports/529061

Log:
  Add a PY_PILLOW that can be used to choose between graphics/py-pillow
  and graphics/py-pillow6
  
  With hat:	portmgr

Modified:
  head/Mk/Uses/python.mk

Modified: head/Mk/Uses/python.mk
==============================================================================
--- head/Mk/Uses/python.mk	Tue Mar 24 19:49:22 2020	(r529060)
+++ head/Mk/Uses/python.mk	Tue Mar 24 19:51:44 2020	(r529061)
@@ -631,8 +631,10 @@ PYNUMPY=	${PYTHON_PKGNAMEPREFIX}numpy>=1.15,1<1.19,1:m
 
 # Common Python modules that can be needed but only for some versions of Python.
 .if ${PYTHON_REL} < 3500
+PY_PILLOW=	${PYTHON_PKGNAMEPREFIX}pillow6>=6.0.0:graphics/py-pillow6@${PY_FLAVOR}
 PY_TYPING=	${PYTHON_PKGNAMEPREFIX}typing>=3.7.4:devel/py-typing@${PY_FLAVOR}
 .else
+PY_PILLOW=	${PYTHON_PKGNAMEPREFIX}pillow>=7.0.0:graphics/py-pillow@${PY_FLAVOR}
 PY_TYPING=
 .endif
 


More information about the svn-ports-head mailing list