Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-xdist/
Date: Thu, 05 May 2016 08:06:54
Message-Id: 1462435593.4cdb0496de89130cc7f4229a5977dcfe5a7bb7e8.idella4@gentoo
1 commit: 4cdb0496de89130cc7f4229a5977dcfe5a7bb7e8
2 Author: tharvik <tharvik <AT> users <DOT> noreply <DOT> github <DOT> com>
3 AuthorDate: Wed May 4 08:20:18 2016 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Thu May 5 08:06:33 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cdb0496
7
8 dev-python/pytest-xdist: revbump to vn. 1.14-r1
9
10 add missed dep setuptools_scm in DEPEND
11
12 Package-Manager: portage-2.2.26
13 Closes: https://github.com/gentoo/gentoo/pull/1398
14
15 Signed-off-by: Ian Delaney <idella4 <AT> gentoo.org>
16
17 .../pytest-xdist/pytest-xdist-1.14-r1.ebuild | 33 ++++++++++++++++++++++
18 1 file changed, 33 insertions(+)
19
20 diff --git a/dev-python/pytest-xdist/pytest-xdist-1.14-r1.ebuild b/dev-python/pytest-xdist/pytest-xdist-1.14-r1.ebuild
21 new file mode 100644
22 index 0000000..b2e5a96
23 --- /dev/null
24 +++ b/dev-python/pytest-xdist/pytest-xdist-1.14-r1.ebuild
25 @@ -0,0 +1,33 @@
26 +# Copyright 1999-2016 Gentoo Foundation
27 +# Distributed under the terms of the GNU General Public License v2
28 +# $Id$
29 +
30 +EAPI=5
31 +
32 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
33 +
34 +inherit distutils-r1
35 +
36 +DESCRIPTION="Distributed testing and loop-on-failing modes"
37 +HOMEPAGE="https://pypi.python.org/pypi/pytest-xdist https://github.com/pytest-dev/pytest-xdist2"
38 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
39 +
40 +SLOT="0"
41 +LICENSE="MIT"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
43 +IUSE=""
44 +
45 +RDEPEND="
46 + >=dev-python/execnet-1.1[${PYTHON_USEDEP}]
47 + >=dev-python/pytest-2.4.2[${PYTHON_USEDEP}]
48 + >=dev-python/py-1.4.22[${PYTHON_USEDEP}]
49 +"
50 +DEPEND="${RDEPEND}
51 + dev-python/setuptools[${PYTHON_USEDEP}]
52 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
53 +"
54 +
55 +python_test() {
56 + find -name __pycache__ -exec rm -r '{}' + || die
57 + py.test -vv -x || die
58 +}