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 39C2A1388C3 for ; Mon, 9 Nov 2015 13:27:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BCD621C027; Mon, 9 Nov 2015 13:27:43 +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 13C66E0806 for ; Mon, 9 Nov 2015 13:27:41 +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 0374733FA71 for ; Mon, 9 Nov 2015 13:27:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01D9023BA for ; Mon, 9 Nov 2015 11:49:58 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1447069781.0e64d72c10c2abf8a850b25d3a18ec2e7d901e28.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-xprocess/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-xprocess/Manifest dev-python/pytest-xprocess/metadata.xml dev-python/pytest-xprocess/pytest-xprocess-0.9.1.ebuild X-VCS-Directories: dev-python/pytest-xprocess/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 0e64d72c10c2abf8a850b25d3a18ec2e7d901e28 X-VCS-Branch: master Date: Mon, 9 Nov 2015 11:49:58 +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: 3cc2dce2-3947-4098-8e97-5a362ace1c61 X-Archives-Hash: 89adbc76e0db4e5dfa50bcd6b7a7b63c commit: 0e64d72c10c2abf8a850b25d3a18ec2e7d901e28 Author: Justin Lecher gentoo org> AuthorDate: Mon Nov 9 08:27:45 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Nov 9 11:49:41 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e64d72c dev-python/pytest-xprocess: New package written by me Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/pytest-xprocess/Manifest | 1 + dev-python/pytest-xprocess/metadata.xml | 5 ++++ .../pytest-xprocess/pytest-xprocess-0.9.1.ebuild | 30 ++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-python/pytest-xprocess/Manifest b/dev-python/pytest-xprocess/Manifest new file mode 100644 index 0000000..b54ce76 --- /dev/null +++ b/dev-python/pytest-xprocess/Manifest @@ -0,0 +1 @@ +DIST pytest-xprocess-0.9.1.tar.gz 7214 SHA256 f70e60cadb5ca1ac9500158ab0144dc9533586e1152fce1fe37e70dc03c5f49f SHA512 1c77112793d7be892746da3b303421d50be9406c9fc0eb3ad85f9cc6120275bad8994a0b9d2fff61172e67ed68631c9a42c9616d3d3e965cb6d053ccb77b54dd WHIRLPOOL ff85be4228b67247bc35371f9daf7372511df6cc3a95807d79a1f9cd658045a2e56c7c635559f3e5d6d393f232574901bc8cd3470f1ade3b59bbef361f184f80 diff --git a/dev-python/pytest-xprocess/metadata.xml b/dev-python/pytest-xprocess/metadata.xml new file mode 100644 index 0000000..ee7e8b2 --- /dev/null +++ b/dev-python/pytest-xprocess/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/pytest-xprocess/pytest-xprocess-0.9.1.ebuild b/dev-python/pytest-xprocess/pytest-xprocess-0.9.1.ebuild new file mode 100644 index 0000000..537acf1 --- /dev/null +++ b/dev-python/pytest-xprocess/pytest-xprocess-0.9.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 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 ) + +inherit distutils-r1 + +DESCRIPTION="Manage external processes across test runs" +HOMEPAGE="https://pypi.python.org/pypi/pytest-xprocess/ https://bitbucket.org/pytest-dev/pytest-xprocess" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + dev-python/pytest-cache[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( >=dev-python/pytest-2.3.5[${PYTHON_USEDEP}] ) +" + +python_test() { + PYTEST_PLUGINS="pytest_xprocess" py.test -v -v || die +}