diff options
author | Rene Ladan <rene@FreeBSD.org> | 2021-01-05 20:53:59 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2021-01-05 20:53:59 +0000 |
commit | 89b454230dad06609c3f85b162cd997d3afe9080 (patch) | |
tree | d9a43613845dff0728211c9305ab411e41d692bb /misc | |
parent | a402038101e3a2a0b530637ca223dd738c15d6cc (diff) | |
download | freebsd-ports-89b454230dad06609c3f85b162cd997d3afe9080.zip |
Follow up on graphics/py-pillow6 port removal in r559976
The graphics/py-pillow6 port was removed in r559976 as it was for
Python 2.7 only and no longer referenced in the default cases.
However it was still defined in Mk/Uses/python.mk in PY_PILLOW,
leaving a dangling reference.
Remove it from Mk/Uses/python.mk, leaving only the Python 3
version of that port, graphics/py-pillow, defined and bump the
minimal verion of Python to 3.6 for affected ports.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/cs/Makefile | 2 | ||||
-rw-r--r-- | misc/mmdnn/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/misc/cs/Makefile b/misc/cs/Makefile index 0f81a0c752eb..9ec57434725a 100644 --- a/misc/cs/Makefile +++ b/misc/cs/Makefile @@ -16,7 +16,7 @@ RUN_DEPENDS= ${PY_PILLOW} NO_BUILD= yes -USES= python:run shebangfix tar:tgz +USES= python:run,3.6+ shebangfix tar:tgz SHEBANG_FILES= xs.py PLIST_FILES= bin/xs diff --git a/misc/mmdnn/Makefile b/misc/mmdnn/Makefile index 0f750524ec05..084feeea9400 100644 --- a/misc/mmdnn/Makefile +++ b/misc/mmdnn/Makefile @@ -15,7 +15,7 @@ RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}protobuf>=3.6.0:devel/py-protobuf@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} -USES= python +USES= python:3.6+ USE_GITHUB= yes GH_ACCOUNT= microsoft GH_PROJECT= MMdnn |