diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2020-02-23 21:49:41 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2020-02-23 21:49:41 +0000 |
commit | abd81a62faf64cffdf335afbeda279143a00485f (patch) | |
tree | 6188d84c3bb62624e65143589cf77304697ef058 /Mk | |
parent | b0117ef7b455b0fdf5e1d5169c1892cf6093ff1f (diff) | |
download | ports-abd81a62faf64cffdf335afbeda279143a00485f.tar.gz ports-abd81a62faf64cffdf335afbeda279143a00485f.zip |
Notes
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Uses/python.mk | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Mk/Uses/python.mk b/Mk/Uses/python.mk index fbe91076ac64..c406ce562fa1 100644 --- a/Mk/Uses/python.mk +++ b/Mk/Uses/python.mk @@ -324,11 +324,13 @@ _PYTHON_TEST_DEP= yes WARNING+= "PYTHON_DEFAULT must be a version present in PYTHON2_DEFAULT or PYTHON3_DEFAULT, if you want more Python flavors, set BUILD_ALL_PYTHON_FLAVORS in your make.conf" .endif -.if ${_PYTHON_ARGS} == "2" +.if ${_PYTHON_ARGS} == 2.7 +DEV_WARNING+= "lang/python27 reached End of Life and will be removed on 2020-12-31, consider converting to a modern version of python" +.elif ${_PYTHON_ARGS} == 2 DEV_ERROR+= "USES=python:2 is no longer supported, use USES=python:2.7" -.elif ${_PYTHON_ARGS} == "3" +.elif ${_PYTHON_ARGS} == 3 DEV_ERROR+= "USES=python:3 is no longer supported, use USES=python:3.5+ or an appropriate version range" -.endif # ${_PYTHON_ARGS} == "2" +.endif # ${_PYTHON_ARGS} == 2.7 _PYTHON_VERSION:= ${PYTHON_DEFAULT} |