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: Wed, 27 Nov 2019 15:14:57
Message-Id: 1574867689.5a5f50187dd0dfeb593b88fc461abaa99c1ad5b1.mgorny@gentoo
1 commit: 5a5f50187dd0dfeb593b88fc461abaa99c1ad5b1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 27 13:18:32 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 27 15:14:49 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a5f5018
7
8 dev-python/setuptools: Bump to 42.0.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/setuptools/Manifest | 1 +
13 dev-python/setuptools/setuptools-42.0.1.ebuild | 89 ++++++++++++++++++++++++++
14 2 files changed, 90 insertions(+)
15
16 diff --git a/dev-python/setuptools/Manifest b/dev-python/setuptools/Manifest
17 index 3db7d4cf2fd..9a7ba465b4f 100644
18 --- a/dev-python/setuptools/Manifest
19 +++ b/dev-python/setuptools/Manifest
20 @@ -1,3 +1,4 @@
21 DIST setuptools-40.6.3.zip 839328 BLAKE2B ddc87213439ce2ad96ba54218bd5b3e41a7c31d670bddb9e4ea058b8ee7dffbe6fcb0e5fd24baf3fb38f5e824fde36aa8dc1e09d7ac37f9375ee351406389cd6 SHA512 6c628b8fc67645bca96ddcd016ec9a685e91690bf98dff077e842cfbd0d8d24de76ac51b3ff238d31551a48819d8f694fee6e9bb422ca954e54c22b4bda0038c
22 DIST setuptools-41.5.1.zip 851097 BLAKE2B 2411db77cffb24190c1510c7fab623ae0fb2a248994eae01e1a79427d35d8bf6a2f065de0d95dc11105df0bb42962a57c914486b48dc91115ec32e4dbcbc059d SHA512 eb6e944c80448873f8970477aaf474e75879e2b81b91fdc7a308670fed231d52880c3be3452e7ed3f094f20d4afe54b1db24ec4d98845ed47ee5e71dbf66261d
23 DIST setuptools-42.0.0.zip 852125 BLAKE2B b3cbba2eb97f7d6d0bb1a1d582c927680ada8d4589c4a196886f95cddd5b8c8b14fb5f0a2397ab7bcdc4ddd5fe6d4eddfab53bf9f43e0781a666f3d88efb8117 SHA512 d430605f8da3820b8d902d339b63bc382b9ec1bb0187385f792226bdfa8c191634df69881e1c43ffa8900599307d0ba202cfcb2d30df12d061f8220b9eae854a
24 +DIST setuptools-42.0.1.zip 852264 BLAKE2B fac352a9d87245655f8183a8037552d454441ca5d18be60986d3d7883472a8be6af83614cb73896b76a251eadb09c1a67db9789ddbc5beb1dd9c3e1ddadd671a SHA512 d8eea952dc3cd925ddf3aaf059e9042dcb2684fd841446d92f309fcf8ad1869a380784d137006ca1b46ee539b4e1867e5b61eae80553295897df702966447232
25
26 diff --git a/dev-python/setuptools/setuptools-42.0.1.ebuild b/dev-python/setuptools/setuptools-42.0.1.ebuild
27 new file mode 100644
28 index 00000000000..0c293d1ea95
29 --- /dev/null
30 +++ b/dev-python/setuptools/setuptools-42.0.1.ebuild
31 @@ -0,0 +1,89 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy{,3} )
37 +PYTHON_REQ_USE="xml(+)"
38 +
39 +inherit distutils-r1
40 +
41 +if [[ ${PV} == "9999" ]]; then
42 + EGIT_REPO_URI="https://github.com/pypa/setuptools.git"
43 + inherit git-r3
44 +else
45 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
46 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
47 +fi
48 +
49 +DESCRIPTION="Collection of extensions to Distutils"
50 +HOMEPAGE="https://github.com/pypa/setuptools https://pypi.org/project/setuptools/"
51 +
52 +LICENSE="MIT"
53 +SLOT="0"
54 +IUSE="test"
55 +RESTRICT="!test? ( test )"
56 +
57 +# Temporary hack to avoid py38 keywording hell. Please remove when
58 +# the test deps all have py38. Also setuptools' test pass with py38,
59 +# so you need to hack them all in locally before bumping and test.
60 +TEST_USEDEP=$(python_gen_usedep python2_7 python3_{5,6,7} pypy{,3})
61 +BDEPEND="
62 + app-arch/unzip
63 + test? (
64 + dev-python/mock[${TEST_USEDEP}]
65 + dev-python/pip[${TEST_USEDEP}]
66 + >=dev-python/pytest-3.7.0[${TEST_USEDEP}]
67 + dev-python/pytest-fixture-config[${TEST_USEDEP}]
68 + dev-python/pytest-virtualenv[${TEST_USEDEP}]
69 + dev-python/wheel[${TEST_USEDEP}]
70 + virtual/python-futures[${PYTHON_USEDEP}]
71 + )
72 +"
73 +PDEPEND="
74 + >=dev-python/certifi-2016.9.26[${PYTHON_USEDEP}]"
75 +
76 +# Force in-source build because build system modifies sources.
77 +DISTUTILS_IN_SOURCE_BUILD=1
78 +
79 +DOCS=( {CHANGES,README}.rst docs/{easy_install.txt,pkg_resources.txt,setuptools.txt} )
80 +
81 +PATCHES=(
82 + # fix regression introduced by reinventing deprecated 'imp'
83 + # https://github.com/pypa/setuptools/pull/1905
84 + "${FILESDIR}"/setuptools-42.0.0-imp-fix.patch
85 +)
86 +
87 +python_prepare_all() {
88 + if [[ ${PV} == "9999" ]]; then
89 + python_setup
90 + ${EPYTHON} bootstrap.py || die
91 + fi
92 +
93 + # disable tests requiring a network connection
94 + rm setuptools/tests/test_packageindex.py || die
95 +
96 + # don't run integration tests
97 + rm setuptools/tests/test_integration.py || die
98 +
99 + distutils-r1_python_prepare_all
100 +}
101 +
102 +python_test() {
103 + if [[ ${EPYTHON} == python3.8 ]]; then
104 + if [[ ${PV} != 42.0.1 ]]; then
105 + eerror "Please disable py38 hacks and test locally, then update this."
106 + die "Python 3.8 support untested for ${PV}"
107 + fi
108 + einfo "Skipping testing on ${EPYTHON} due to unkeyworded deps"
109 + return
110 + fi
111 +
112 + # test_easy_install raises a SandboxViolation due to ${HOME}/.pydistutils.cfg
113 + # It tries to sandbox the test in a tempdir
114 + HOME="${PWD}" pytest -vv ${PN} || die "Tests failed under ${EPYTHON}"
115 +}
116 +
117 +python_install() {
118 + export DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1
119 + distutils-r1_python_install
120 +}