From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2FD81138224 for ; Thu, 5 May 2016 08:06:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1D7621C0A6; Thu, 5 May 2016 08:06:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 572D721C0B9 for ; Thu, 5 May 2016 08:06:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 31832340862 for ; Thu, 5 May 2016 08:06:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1DE72339 for ; Thu, 5 May 2016 08:06:46 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1462435593.4cdb0496de89130cc7f4229a5977dcfe5a7bb7e8.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-xdist/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-xdist/pytest-xdist-1.14-r1.ebuild X-VCS-Directories: dev-python/pytest-xdist/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 4cdb0496de89130cc7f4229a5977dcfe5a7bb7e8 X-VCS-Branch: master Date: Thu, 5 May 2016 08:06:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 21924496-4c04-4d8c-958b-726bf14df275 X-Archives-Hash: 37042b0ac29ff4a6ff3a6471e97c25e2 commit: 4cdb0496de89130cc7f4229a5977dcfe5a7bb7e8 Author: tharvik users noreply github com> AuthorDate: Wed May 4 08:20:18 2016 +0000 Commit: Ian Delaney gentoo org> CommitDate: Thu May 5 08:06:33 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cdb0496 dev-python/pytest-xdist: revbump to vn. 1.14-r1 add missed dep setuptools_scm in DEPEND Package-Manager: portage-2.2.26 Closes: https://github.com/gentoo/gentoo/pull/1398 Signed-off-by: Ian Delaney gentoo.org> .../pytest-xdist/pytest-xdist-1.14-r1.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/pytest-xdist/pytest-xdist-1.14-r1.ebuild b/dev-python/pytest-xdist/pytest-xdist-1.14-r1.ebuild new file mode 100644 index 0000000..b2e5a96 --- /dev/null +++ b/dev-python/pytest-xdist/pytest-xdist-1.14-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Distributed testing and loop-on-failing modes" +HOMEPAGE="https://pypi.python.org/pypi/pytest-xdist https://github.com/pytest-dev/pytest-xdist2" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + >=dev-python/execnet-1.1[${PYTHON_USEDEP}] + >=dev-python/pytest-2.4.2[${PYTHON_USEDEP}] + >=dev-python/py-1.4.22[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/setuptools_scm[${PYTHON_USEDEP}] +" + +python_test() { + find -name __pycache__ -exec rm -r '{}' + || die + py.test -vv -x || die +}