Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools/
Date: Mon, 05 Jul 2021 05:50:39
Message-Id: 1625462787.a76f0ce6a17ca3ff3d03420f11c586267a569950.mgorny@gentoo
1 commit: a76f0ce6a17ca3ff3d03420f11c586267a569950
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 5 05:26:27 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 5 05:26:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a76f0ce6
7
8 dev-python/setuptools: Bump to 57.1.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/setuptools/Manifest | 1 +
13 dev-python/setuptools/setuptools-57.1.0.ebuild | 75 ++++++++++++++++++++++++++
14 2 files changed, 76 insertions(+)
15
16 diff --git a/dev-python/setuptools/Manifest b/dev-python/setuptools/Manifest
17 index dde946c5829..6b60439279d 100644
18 --- a/dev-python/setuptools/Manifest
19 +++ b/dev-python/setuptools/Manifest
20 @@ -1 +1,2 @@
21 DIST setuptools-57.0.0.tar.gz 2144749 BLAKE2B e1fc99503ee5de425b70bf2733b1c489693e38cd256bf95cb321671bdaf87745eaaf40c43bcd03756a4cefa408dd1414f8c30af274963e3a0ae57f7b95d3f9c0 SHA512 5277d8630367d6b16a49e36ed84d8cc6abfaedf87dac3f795b204626a8f15ca9fd80d158a465d8bcabe9c074c76b87c3378d82a4ba5feee1ac6a5f2c91db061e
22 +DIST setuptools-57.1.0.tar.gz 2144012 BLAKE2B 148eb7b5e432461f692faeb3fd4eaafb99bb9fcd2c430cbde40fb16b365ed011ce49966a8923337a860b63cdc6d8f3a26efdd138cf4c40c99e72f7d714fce57c SHA512 dfcf75584b3d7ae07e0f58ce8f596d7e9cbe3a0c178411053b066fb4362226bcf6467a79aed0853acd0b9f6a3371c47ddb07d77cbd780fe9782b8c19bce2e5fb
23
24 diff --git a/dev-python/setuptools/setuptools-57.1.0.ebuild b/dev-python/setuptools/setuptools-57.1.0.ebuild
25 new file mode 100644
26 index 00000000000..df9cd63bcbe
27 --- /dev/null
28 +++ b/dev-python/setuptools/setuptools-57.1.0.ebuild
29 @@ -0,0 +1,75 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +# Set to 'manual' to avoid triggering install QA check
36 +DISTUTILS_USE_SETUPTOOLS=manual
37 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
38 +PYTHON_REQ_USE="xml(+)"
39 +
40 +inherit distutils-r1 multiprocessing
41 +
42 +DESCRIPTION="Collection of extensions to Distutils"
43 +HOMEPAGE="https://github.com/pypa/setuptools https://pypi.org/project/setuptools/"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
49 +IUSE="test"
50 +RESTRICT="!test? ( test )"
51 +
52 +BDEPEND="
53 + test? (
54 + $(python_gen_cond_dep '
55 + dev-python/jaraco-envs[${PYTHON_USEDEP}]
56 + >=dev-python/jaraco-path-3.2.0[${PYTHON_USEDEP}]
57 + dev-python/mock[${PYTHON_USEDEP}]
58 + dev-python/pip[${PYTHON_USEDEP}]
59 + dev-python/sphinx[${PYTHON_USEDEP}]
60 + dev-python/pytest[${PYTHON_USEDEP}]
61 + dev-python/pytest-fixture-config[${PYTHON_USEDEP}]
62 + dev-python/pytest-virtualenv[${PYTHON_USEDEP}]
63 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
64 + >=dev-python/virtualenv-20[${PYTHON_USEDEP}]
65 + dev-python/wheel[${PYTHON_USEDEP}]
66 + ' python3_{7..10} pypy3)
67 + )
68 +"
69 +PDEPEND="
70 + >=dev-python/certifi-2016.9.26[${PYTHON_USEDEP}]
71 + dev-python/setuptools_scm[${PYTHON_USEDEP}]"
72 +
73 +# Force in-source build because build system modifies sources.
74 +DISTUTILS_IN_SOURCE_BUILD=1
75 +
76 +DOCS=( {CHANGES,README}.rst )
77 +
78 +python_test() {
79 + # keep in sync with python_gen_cond_dep above!
80 + has "${EPYTHON}" python3.{7..10} pypy3 || continue
81 +
82 + distutils_install_for_testing
83 + local deselect=(
84 + # network
85 + 'setuptools/tests/test_virtualenv.py::test_pip_upgrade_from_source[None]'
86 + setuptools/tests/test_distutils_adoption.py
87 + # TODO
88 + setuptools/tests/test_easy_install.py::TestSetupRequires::test_setup_requires_with_allow_hosts
89 + )
90 + [[ ${EPYTHON} == pypy3 ]] && deselect+=(
91 + setuptools/tests/test_develop.py::TestDevelop::test_2to3_user_mode
92 + )
93 +
94 + # test_easy_install raises a SandboxViolation due to ${HOME}/.pydistutils.cfg
95 + # It tries to sandbox the test in a tempdir
96 + HOME="${PWD}" epytest ${deselect[@]/#/--deselect } \
97 + -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" \
98 + setuptools
99 +}
100 +
101 +python_install() {
102 + export DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1
103 + distutils-r1_python_install
104 +}