git: 465fb67e4c97 - 2022Q1 - Mk/Uses: remove the default deprecation date.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 30 Jan 2022 11:50:52 UTC
The branch 2022Q1 has been updated by rene:
URL: https://cgit.FreeBSD.org/ports/commit/?id=465fb67e4c9710caed58f3729b852c24b996f58e
commit 465fb67e4c9710caed58f3729b852c24b996f58e
Author: Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2022-01-18 10:53:52 +0000
Commit: Rene Ladan <rene@FreeBSD.org>
CommitDate: 2022-01-30 11:43:39 +0000
Mk/Uses: remove the default deprecation date.
Obviously the world did not manage to get rid of Python 2.7
by 2020-12-31, so remove that target and just advise users
to move on to Python 3.
This is the commit 1/9 of review D33922
Differential Revision: https://reviews.freebsd.org/D33922
(cherry picked from commit fcb5bf842e0424b9fb70f3e489d9cc39f3c857be)
---
Mk/Uses/python.mk | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Mk/Uses/python.mk b/Mk/Uses/python.mk
index 6c5d11dc9d08..d0097162a142 100644
--- a/Mk/Uses/python.mk
+++ b/Mk/Uses/python.mk
@@ -323,7 +323,7 @@ WARNING+= "PYTHON_DEFAULT must be a version present in PYTHON2_DEFAULT or PYTHON
.endif
.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"
+DEV_WARNING+= "lang/python27 reached End of Life and will be removed somewhere in the future, please convert 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
@@ -479,7 +479,6 @@ PYTHON_EXT_SUFFIX= # empty
.if ${PYTHON_MAJOR_VER} == 2
DEPRECATED?= Uses Python 2.7 which is EOLed upstream
-EXPIRATION_DATE?= 2020-12-31
.endif
.if !defined(PYTHONBASE)