git: 77ed799b56 - main - porters-handbook: note that Python 2.7 needs to be requested explicitly
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 26 Jun 2023 20:21:45 UTC
The branch main has been updated by rene: URL: https://cgit.FreeBSD.org/doc/commit/?id=77ed799b56108f236d5c2605adb72cf69dc4575d commit 77ed799b56108f236d5c2605adb72cf69dc4575d Author: Rene Ladan <rene@FreeBSD.org> AuthorDate: 2023-06-26 20:17:11 +0000 Commit: Rene Ladan <rene@FreeBSD.org> CommitDate: 2023-06-26 20:19:29 +0000 porters-handbook: note that Python 2.7 needs to be requested explicitly --- documentation/content/en/books/porters-handbook/special/_index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/content/en/books/porters-handbook/special/_index.adoc b/documentation/content/en/books/porters-handbook/special/_index.adoc index 941274d55a..ef2778f0a5 100644 --- a/documentation/content/en/books/porters-handbook/special/_index.adoc +++ b/documentation/content/en/books/porters-handbook/special/_index.adoc @@ -3526,7 +3526,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} [cols="1,1", frame="none"] |=== |`USES=python` -|The port needs Python. The minimal required version can be specified with values such as `2.7+`. Version ranges can also be specified by separating two version numbers with a dash: `USES=python:3.2-3.3` +|The port needs Python. The minimal required version can be specified with values such as `3.10+`. Version ranges can also be specified by separating two version numbers with a dash: `USES=python:3.8-3.9`. Note that `USES=python` does _not_ cover Python 2.7, it needs to be requested explicitly with `USES=python:2.7+`. |`USE_PYTHON=distutils` |Use Python distutils for configuring, compiling, and installing. This is required when the port comes with [.filename]#setup.py#. This overrides the `do-build` and `do-install` targets and may also override `do-configure` if `GNU_CONFIGURE` is not defined. Additionally, it implies `USE_PYTHON=flavors`.