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: Fri, 13 Jul 2018 21:07:31
Message-Id: 1531516042.1d176e40daacb5c517fb18798fd05827e851feb4.mgorny@gentoo
1 commit: 1d176e40daacb5c517fb18798fd05827e851feb4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 13 21:05:11 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 13 21:07:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d176e40
7
8 dev-python/setuptools: Bump to 40.0.0
9
10 dev-python/setuptools/Manifest | 1 +
11 dev-python/setuptools/setuptools-40.0.0.ebuild | 70 ++++++++++++++++++++++++++
12 2 files changed, 71 insertions(+)
13
14 diff --git a/dev-python/setuptools/Manifest b/dev-python/setuptools/Manifest
15 index e37de692d08..dfa1f198c7f 100644
16 --- a/dev-python/setuptools/Manifest
17 +++ b/dev-python/setuptools/Manifest
18 @@ -3,3 +3,4 @@ DIST setuptools-36.0.1.zip 711296 BLAKE2B c58a4efd8d3a2d574ff6ba5cd01a196fc7ad61
19 DIST setuptools-36.7.2.zip 726758 BLAKE2B 8821d3142f2149fbdea4d231052c3990fa7a14c57c421309683c6a65102ce4911850acd5d492087aa0f14a0026da732e47eb9bf971030443fc1b57f9f909aaaa SHA512 746dce135dbacb65565787a20a2611388605e2371c94f0f8803e7712e515e69c270751d16a21f381bf6e8ddc0a1b39494db7d0c67bb32e6230a90c5d517e78f9
20 DIST setuptools-38.5.1.zip 737995 BLAKE2B 9772d39928c6633ca529292d646c1c8e96a5a77ed06545af950cc249922837c13722d97de702c1e104581d56e1f808ec3d077041212517f5a51b23aa2e95e734 SHA512 bd04186a6e73cf24440e82aee10fff09889cab53e2e2fbf178bdb1360accf4f787abf8d8421d5e0fcb41005254c091f62d714e8b317ecf68911e2eed87b9fcc4
21 DIST setuptools-38.6.1.zip 738985 BLAKE2B 73e5258b9fe2587b5662e80267e59bbc23484815d997a808c83e030e2dffa9a499fa1bed7e9e127cf3b92cb09451e70e590dd2e71135941124fe9d3383f7dc24 SHA512 38685b97a7c4cdfb67846f910afce5faf60ef1519ccb70acdfd2da83ddbfe1a56b5b03e0b8ce5dbc80dcec14847f716d7b23777e2be0ea7e6afd6da3b645b3ef
22 +DIST setuptools-40.0.0.zip 849857 BLAKE2B 6ce687904e0c6ef6cd55557ce848583e1645b6c5cfa80b005b25c20e52fc6985be673f2a77a9f79a3a5effc8e581492429bbf73074525827f539a411c6751373 SHA512 c90d136831af822a7f42bbd7eca4c1f4dd73d14f87182aa1251e70610db877b26bcda8fd0a10f5db0fcd84f9098a35b79a130b3142ade9d0081a538778ae53b7
23
24 diff --git a/dev-python/setuptools/setuptools-40.0.0.ebuild b/dev-python/setuptools/setuptools-40.0.0.ebuild
25 new file mode 100644
26 index 00000000000..60944fe5362
27 --- /dev/null
28 +++ b/dev-python/setuptools/setuptools-40.0.0.ebuild
29 @@ -0,0 +1,70 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
35 +PYTHON_REQ_USE="xml(+)"
36 +
37 +inherit distutils-r1
38 +
39 +if [[ ${PV} == "9999" ]]; then
40 + EGIT_REPO_URI="https://github.com/pypa/setuptools.git"
41 + inherit git-r3
42 +else
43 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
44 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd"
45 +fi
46 +
47 +DESCRIPTION="Collection of extensions to Distutils"
48 +HOMEPAGE="https://github.com/pypa/setuptools https://pypi.org/project/setuptools/"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +IUSE="test"
53 +
54 +RDEPEND="
55 +"
56 +DEPEND="${RDEPEND}
57 + app-arch/unzip
58 + test? (
59 + dev-python/pip[${PYTHON_USEDEP}]
60 + >=dev-python/pytest-3.1.0[${PYTHON_USEDEP}]
61 + dev-python/pytest-fixture-config[${PYTHON_USEDEP}]
62 + dev-python/pytest-virtualenv[${PYTHON_USEDEP}]
63 + >=dev-python/backports-unittest-mock-1.2[${PYTHON_USEDEP}]
64 + dev-python/wheel[${PYTHON_USEDEP}]
65 + )
66 +"
67 +PDEPEND="
68 + >=dev-python/certifi-2016.9.26[${PYTHON_USEDEP}]"
69 +
70 +# Force in-source build because build system modifies sources.
71 +DISTUTILS_IN_SOURCE_BUILD=1
72 +
73 +DOCS=( {CHANGES,README}.rst docs/{easy_install.txt,pkg_resources.txt,setuptools.txt} )
74 +
75 +python_prepare_all() {
76 + if [[ ${PV} == "9999" ]]; then
77 + python_setup
78 + ${EPYTHON} bootstrap.py || die
79 + fi
80 +
81 + # disable tests requiring a network connection
82 + rm setuptools/tests/test_packageindex.py || die
83 +
84 + # don't run integration tests
85 + rm setuptools/tests/test_integration.py || die
86 +
87 + distutils-r1_python_prepare_all
88 +}
89 +
90 +python_test() {
91 + # test_easy_install raises a SandboxViolation due to ${HOME}/.pydistutils.cfg
92 + # It tries to sandbox the test in a tempdir
93 + HOME="${PWD}" py.test --verbose ${PN} || die "Tests failed under ${EPYTHON}"
94 +}
95 +
96 +python_install() {
97 + export DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1
98 + distutils-r1_python_install
99 +}