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