diff options
Diffstat (limited to 'guide/_sources/distutils-legacy.rst.txt')
-rw-r--r-- | guide/_sources/distutils-legacy.rst.txt | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/guide/_sources/distutils-legacy.rst.txt b/guide/_sources/distutils-legacy.rst.txt index ad5f2dd..7d8491a 100644 --- a/guide/_sources/distutils-legacy.rst.txt +++ b/guide/_sources/distutils-legacy.rst.txt @@ -72,7 +72,7 @@ The value needs to be set before inheriting the eclass: EAPI=7 - PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) + PYTHON_COMPAT=( python3_{10..13} pypy3 ) DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -269,21 +269,24 @@ steps inside that copy. As a result, any changes done to the source files are contained within the copy used for the current interpreter. .. code-block:: bash - :emphasize-lines: 20 + :emphasize-lines: 23 # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 + DISTUTILS_USE_SETUPTOOLS=no - PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) + PYTHON_COMPAT=( python3_{10..13} pypy3 ) PYTHON_REQ_USE="xml(+)" - inherit distutils-r1 + inherit distutils-r1 pypi DESCRIPTION="Collection of extensions to Distutils" - HOMEPAGE="https://github.com/pypa/setuptools https://pypi.org/project/setuptools/" - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + HOMEPAGE=" + https://github.com/pypa/setuptools + https://pypi.org/project/setuptools/ + " LICENSE="MIT" SLOT="0" |