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: Sat, 09 Feb 2019 08:48:16
Message-Id: 1549702083.0c0021e2eb8f763e69a12477ee2696a231875142.mgorny@gentoo
1 commit: 0c0021e2eb8f763e69a12477ee2696a231875142
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 9 07:39:14 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 9 08:48:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c0021e2
7
8 dev-python/setuptools: Sync the live ebuild (nobody cares about)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/setuptools/setuptools-9999.ebuild | 15 ++++++++-------
13 1 file changed, 8 insertions(+), 7 deletions(-)
14
15 diff --git a/dev-python/setuptools/setuptools-9999.ebuild b/dev-python/setuptools/setuptools-9999.ebuild
16 index ffd12471470..d67bd927712 100644
17 --- a/dev-python/setuptools/setuptools-9999.ebuild
18 +++ b/dev-python/setuptools/setuptools-9999.ebuild
19 @@ -1,7 +1,7 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2019 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=6
25 +EAPI=7
26 PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy{,3} )
27 PYTHON_REQ_USE="xml(+)"
28
29 @@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
30 inherit git-r3
31 else
32 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
33 - KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
34 + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
35 fi
36
37 DESCRIPTION="Collection of extensions to Distutils"
38 @@ -27,12 +27,13 @@ RDEPEND="
39 DEPEND="${RDEPEND}
40 app-arch/unzip
41 test? (
42 + dev-python/mock[${PYTHON_USEDEP}]
43 dev-python/pip[${PYTHON_USEDEP}]
44 - >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
45 - dev-python/pytest-fixture-config[${PYTHON_USEDEP}]
46 + >=dev-python/pytest-3.7.0[${PYTHON_USEDEP}]
47 + <dev-python/pytest-4
48 dev-python/pytest-virtualenv[${PYTHON_USEDEP}]
49 - >=dev-python/backports-unittest-mock-1.2[${PYTHON_USEDEP}]
50 dev-python/wheel[${PYTHON_USEDEP}]
51 + virtual/python-futures[${PYTHON_USEDEP}]
52 )
53 "
54 PDEPEND="
55 @@ -61,7 +62,7 @@ python_prepare_all() {
56 python_test() {
57 # test_easy_install raises a SandboxViolation due to ${HOME}/.pydistutils.cfg
58 # It tries to sandbox the test in a tempdir
59 - HOME="${PWD}" py.test --verbose ${PN} || die "Tests failed under ${EPYTHON}"
60 + HOME="${PWD}" pytest -vv ${PN} || die "Tests failed under ${EPYTHON}"
61 }
62
63 python_install() {