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: Sun, 12 Jan 2020 09:31:39
Message-Id: 1578820660.06fc9b885d8b1166e1d364897ceea6c992213fee.mgorny@gentoo
1 commit: 06fc9b885d8b1166e1d364897ceea6c992213fee
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 12 06:43:33 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 12 09:17:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06fc9b88
7
8 dev-python/setuptools: Bump to 45.0.0 (py3 only)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/setuptools/Manifest | 1 +
13 dev-python/setuptools/setuptools-45.0.0.ebuild | 66 ++++++++++++++++++++++++++
14 2 files changed, 67 insertions(+)
15
16 diff --git a/dev-python/setuptools/Manifest b/dev-python/setuptools/Manifest
17 index 2141333faca..d2679b19cfb 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-42.0.2.zip 858444 BLAKE2B 2b77dbeeb9a3b4138810a96fe7ac0a7800717b4b68d6e9db2d146ca176127d5bfd5e4ef07adfa98758f8c4d05396152ca08e1707caf3d91703c7b268bd291f28 SHA512 ab623fd69b92111d3ab19a3ad9de9c07b4316f4130f3db4068a436d3c13c971d97506f7307c9f64d9cc9ca24a5f3800b68748455e70418d0c0cd240c93ebae35
23 DIST setuptools-44.0.0.zip 858893 BLAKE2B 02ba2a838487ba9e80d9ca3b8598cecbec4d286f2734be439d2b73f3f7f0ca80e80ea71a0c2322093deb548503c82d6eb32b1585992979b053f14f49baa00baa SHA512 bb48e7763d258e654472bc416d16ec8708eefa95d1eb03cb6e81b623fd636cefc51a0bd67887084ab0214e256e2030a8f655184c3b59ad6937abab6a6178f3a1
24 +DIST setuptools-45.0.0.zip 859461 BLAKE2B 060cd64efb4ce67b931f5a5672222d2cb6e2bacb68edd50af5b14b8de95b5b9b7727b76b970084257ec9f3afdf4a7bf4acbc6223b6e355d033af3660dfe4f1aa SHA512 d912d093866dfcf7b0e22ba2df51ab0d366c52bd5796f0aedfa0b1848abc80a2e30035897b83bed08b67d9d7d0fce4b0c4981c2a80196b8637c19f34ec269645
25
26 diff --git a/dev-python/setuptools/setuptools-45.0.0.ebuild b/dev-python/setuptools/setuptools-45.0.0.ebuild
27 new file mode 100644
28 index 00000000000..b3c6db3ab76
29 --- /dev/null
30 +++ b/dev-python/setuptools/setuptools-45.0.0.ebuild
31 @@ -0,0 +1,66 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +DISTUTILS_USE_SETUPTOOLS=no
37 +PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
38 +PYTHON_REQ_USE="xml(+)"
39 +
40 +inherit distutils-r1
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}.zip"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +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"
49 +IUSE="test"
50 +RESTRICT="!test? ( test )"
51 +
52 +BDEPEND="
53 + app-arch/unzip
54 + test? (
55 + dev-python/mock[${PYTHON_USEDEP}]
56 + dev-python/pip[${PYTHON_USEDEP}]
57 + >=dev-python/pytest-3.7.0[${PYTHON_USEDEP}]
58 + dev-python/pytest-fixture-config[${PYTHON_USEDEP}]
59 + dev-python/pytest-virtualenv[${PYTHON_USEDEP}]
60 + dev-python/wheel[${PYTHON_USEDEP}]
61 + virtual/python-futures[${PYTHON_USEDEP}]
62 + )
63 +"
64 +PDEPEND="
65 + >=dev-python/certifi-2016.9.26[${PYTHON_USEDEP}]"
66 +
67 +# Force in-source build because build system modifies sources.
68 +DISTUTILS_IN_SOURCE_BUILD=1
69 +
70 +DOCS=( {CHANGES,README}.rst docs/{easy_install.txt,pkg_resources.txt,setuptools.txt} )
71 +
72 +PATCHES=(
73 + # fix regression introduced by reinventing deprecated 'imp'
74 + # https://github.com/pypa/setuptools/pull/1905
75 + "${FILESDIR}"/setuptools-42.0.0-imp-fix.patch
76 +)
77 +
78 +python_prepare_all() {
79 + # disable tests requiring a network connection
80 + rm setuptools/tests/test_packageindex.py || die
81 +
82 + # don't run integration tests
83 + rm setuptools/tests/test_integration.py || die
84 +
85 + distutils-r1_python_prepare_all
86 +}
87 +
88 +python_test() {
89 + # test_easy_install raises a SandboxViolation due to ${HOME}/.pydistutils.cfg
90 + # It tries to sandbox the test in a tempdir
91 + HOME="${PWD}" pytest -vv ${PN} || die "Tests failed under ${EPYTHON}"
92 +}
93 +
94 +python_install() {
95 + export DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1
96 + distutils-r1_python_install
97 +}