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/pytest/
Date: Fri, 15 Nov 2019 14:55:03
Message-Id: 1573829696.6d4ae7b527ff83377ac4b9d10270b3f89cb6a2c4.mgorny@gentoo
1 commit: 6d4ae7b527ff83377ac4b9d10270b3f89cb6a2c4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 15 11:25:27 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 15 14:54:56 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d4ae7b5
7
8 dev-python/pytest: Bump to 4.6.6
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest/Manifest | 1 +
13 dev-python/pytest/pytest-4.6.6.ebuild | 72 +++++++++++++++++++++++++++++++++++
14 2 files changed, 73 insertions(+)
15
16 diff --git a/dev-python/pytest/Manifest b/dev-python/pytest/Manifest
17 index c7e9d0ee56a..ae30d4377b4 100644
18 --- a/dev-python/pytest/Manifest
19 +++ b/dev-python/pytest/Manifest
20 @@ -1,3 +1,4 @@
21 DIST pytest-3.10.1.tar.gz 892420 BLAKE2B 38849ae69bf4380bc1a99aa105cac04be078da4460373dfc16fa555238b2830fa2f5ae6c19de8aa2af9ac18d87c5d2705d62f7b2e67e4a62d843f6a28bbd76fd SHA512 30ff79c0fdcbeef68e1191ff400a20428e391717f06957f554b694b94baaaa565dca01346fe989c3e443c4402f3b2bdbd5564f6303a4447f933fb54cba45628f
22 DIST pytest-4.5.0.tar.gz 943607 BLAKE2B 49a0e91fda7f4231fdd39f90eb2daa344d3034c10faff221330ea0ae7482a2a7d0fb9443a0a264db00f1d92568d5a6005cb73e07d8643b46906f7ecff831adcb SHA512 cbffc6216f83491b1de241058315c116697bfaa5206b5f558192a7f861d43dd036d30d0d689bedae7bdee4f0258dd19ef5827c356e11863dd596a5fabe8249fc
23 +DIST pytest-4.6.6.tar.gz 954899 BLAKE2B d3d76ec1fff18d343cc799f1acd0889489f303cdba72747881dfab8656599bc1865f01b5ad2754f0d05bda04aca4d7edf8c2071f2257fdf41506308d1bc0f623 SHA512 c5b6c21c352787eadce06be7529ecb6f6fd5f5eb193ec29e5a4cfff3d7e305f50c6f07aeac15bddce007d88077a35a8f59633111815321792ed3d9fa1011b684
24 DIST pytest-5.0.1.tar.gz 949744 BLAKE2B c949f0fb6bc0d1430ec7c780537f8aee8ca1ebea5f89035d882434236c6af7d431a610774dbafa93552406e38852627a9f949a6f9198a792de9371efadb4f6ff SHA512 92f5feb263a8708ef6cb8f4565688620b6bfeaef23536cfd24b9bc09515e37fdecd7fa8bcaeeb0775c0be1d8e9dcbd9a56e52f97fb13dc98116efc0056f870db
25
26 diff --git a/dev-python/pytest/pytest-4.6.6.ebuild b/dev-python/pytest/pytest-4.6.6.ebuild
27 new file mode 100644
28 index 00000000000..6afc7e19c68
29 --- /dev/null
30 +++ b/dev-python/pytest/pytest-4.6.6.ebuild
31 @@ -0,0 +1,72 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy{,3} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Simple powerful testing with Python"
42 +HOMEPAGE="http://pytest.org/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="test"
49 +RESTRICT="!test? ( test )"
50 +
51 +# When bumping, please check setup.py for the proper py version
52 +PY_VER="1.5.0"
53 +
54 +# pathlib2 has been added to stdlib before py3.6, but pytest needs __fspath__
55 +# support, which only came in py3.6.
56 +RDEPEND="
57 + >=dev-python/atomicwrites-1.0[${PYTHON_USEDEP}]
58 + >=dev-python/attrs-17.4.0[${PYTHON_USEDEP}]
59 + >=dev-python/more-itertools-4.0.0[${PYTHON_USEDEP}]
60 + $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' \
61 + -2 python3_{5,6,7} pypy3)
62 + $(python_gen_cond_dep 'dev-python/pathlib2[${PYTHON_USEDEP}]' -2 python3_5)
63 + >=dev-python/pluggy-0.12[${PYTHON_USEDEP}]
64 + <dev-python/pluggy-1
65 + >=dev-python/py-${PY_VER}[${PYTHON_USEDEP}]
66 + dev-python/packaging[${PYTHON_USEDEP}]
67 + dev-python/six[${PYTHON_USEDEP}]
68 + dev-python/wcwidth[${PYTHON_USEDEP}]
69 + virtual/python-funcsigs[${PYTHON_USEDEP}]"
70 +
71 +# flake cause a number of tests to fail
72 +DEPEND="
73 + dev-python/setuptools[${PYTHON_USEDEP}]
74 + test? (
75 + ${RDEPEND}
76 + >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}]
77 + dev-python/nose[${PYTHON_USEDEP}]
78 + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' -2)
79 + dev-python/requests[${PYTHON_USEDEP}]
80 + !!dev-python/flaky
81 + )"
82 +
83 +PATCHES=(
84 + "${FILESDIR}/${PN}-4.5.0-strip-setuptools_scm.patch"
85 +)
86 +
87 +python_prepare_all() {
88 + grep -qF "py>=${PY_VER}" setup.py || die "Incorrect dev-python/py dependency"
89 +
90 + # Something in the ebuild environment causes this to hang/error.
91 + # https://bugs.gentoo.org/598442
92 + rm testing/test_pdb.py || die
93 +
94 + distutils-r1_python_prepare_all
95 +}
96 +
97 +python_test() {
98 + # In v4.1.1, pytest started being picky about its own verbosity options.
99 + # running pytest on itself with -vv made 3 tests fail. This is why we don't
100 + # have it below.
101 + "${EPYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX \
102 + || die "tests failed with ${EPYTHON}"
103 +}