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 E8BFF1385CB for ; Fri, 28 Aug 2015 01:42:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28AC0142D3; Fri, 28 Aug 2015 01:42:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE504142D3 for ; Fri, 28 Aug 2015 01:42:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 56F7F340B25 for ; Fri, 28 Aug 2015 01:42:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3268913B for ; Fri, 28 Aug 2015 01:42:08 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1440726114.728df4d2397f3e5ca325d5c90385b230afa89db2.mrueg@gentoo> Subject: [gentoo-commits] dev/mrueg:master commit in: dev-python/pytest-xdist/ X-VCS-Repository: dev/mrueg X-VCS-Files: dev-python/pytest-xdist/Manifest dev-python/pytest-xdist/metadata.xml dev-python/pytest-xdist/pytest-xdist-1.13.1.ebuild X-VCS-Directories: dev-python/pytest-xdist/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 728df4d2397f3e5ca325d5c90385b230afa89db2 X-VCS-Branch: master Date: Fri, 28 Aug 2015 01:42:08 +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: 541993fa-6547-481c-a5ac-b45eb51013fa X-Archives-Hash: bb6cf8babc6537ad6e8b708bbae4426e commit: 728df4d2397f3e5ca325d5c90385b230afa89db2 Author: Manuel Rüger gentoo org> AuthorDate: Fri Aug 28 01:41:54 2015 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Fri Aug 28 01:41:54 2015 +0000 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=728df4d2 dev-python/pytest-xdist: Initial version Package-Manager: portage-2.2.20.1 dev-python/pytest-xdist/Manifest | 1 + dev-python/pytest-xdist/metadata.xml | 8 ++++++ dev-python/pytest-xdist/pytest-xdist-1.13.1.ebuild | 33 ++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-python/pytest-xdist/Manifest b/dev-python/pytest-xdist/Manifest new file mode 100644 index 0000000..2a22275 --- /dev/null +++ b/dev-python/pytest-xdist/Manifest @@ -0,0 +1 @@ +DIST pytest-xdist-1.13.1.tar.gz 110007 SHA256 4382d7a944c1e2b1dc17fee3fd3575495fb10236a3b6e95cc6955db04984bc3c SHA512 3bb295c0afbcb0f238bdd41dfd1a395f0ba16b8151643aecc25aae13ac7c58d36d26ff4bab197673a9679d1f3436acd05b5ff50107b3128e647de892a6d04e3f WHIRLPOOL 643b23c755eb43c7b6965e588b58547c9ef63d3c225cddb97868c659ab3234bc6bc204575bc48c7f18a498cb0e595b8550928ba92ec5945a936e959f773504b3 diff --git a/dev-python/pytest-xdist/metadata.xml b/dev-python/pytest-xdist/metadata.xml new file mode 100644 index 0000000..bfcb697 --- /dev/null +++ b/dev-python/pytest-xdist/metadata.xml @@ -0,0 +1,8 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + + diff --git a/dev-python/pytest-xdist/pytest-xdist-1.13.1.ebuild b/dev-python/pytest-xdist/pytest-xdist-1.13.1.ebuild new file mode 100644 index 0000000..1ac7b6a --- /dev/null +++ b/dev-python/pytest-xdist/pytest-xdist-1.13.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=(python{2_7,3_4}) + +inherit distutils-r1 + +DESCRIPTION="py.test plugin for distributed testing and loop-on-failing modes" +HOMEPAGE="https://bitbucket.org/pytest-dev/pytest-xdist" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND=">=dev-python/execnet-1.1[${PYTHON_USEDEP}] + dev-python/py[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( ${RDEPEND} )" + +RESTRICT="test" + +src_prepare() { + rm -r testing/__pycache__ testing/*.pyc || die + distutils-r1_src_prepare +} +python_test() { + py.test testing || die +}