dev-python/pytest-xprocess: Clean old up

This commit is contained in:
Michał Górny
2018-01-06 00:33:42 +01:00
parent 01f0c449cd
commit ced81b680b
2 changed files with 0 additions and 34 deletions

View File

@@ -1,2 +1 @@
DIST pytest-xprocess-0.12.1.tar.gz 12078 BLAKE2B 30c3c2b41e79b79c5a18911c325ff273b80c45f29d269b96c4085c0c78a6897b2064eb1d2e83f9c061c4663d2f52d88230d9e87ea2ba4d114c6e04f42aa50a5e SHA512 fda868a12a056070afd5838c4bc466b4906a7138f685d4a0e6e0adbd975e5a1a2b9b37b8de36a45fb700e02ca14ae219cfe29c467f8d03e55d2a375a7efc9927
DIST pytest-xprocess-0.9.1.tar.gz 7214 BLAKE2B 06e5bb154d0fff147468f7edc444689d949e4c17ad07288445c2a0880e3738fed4eb2bd4495b588797acdf5ce00d3cc383ef98e9c2da1c1501d6dc8c303ce82c SHA512 1c77112793d7be892746da3b303421d50be9406c9fc0eb3ad85f9cc6120275bad8994a0b9d2fff61172e67ed68631c9a42c9616d3d3e965cb6d053ccb77b54dd

View File

@@ -1,33 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
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 ~arm ~arm64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="
|| (
dev-python/pytest-cache[${PYTHON_USEDEP}]
>=dev-python/pytest-2.8.0[${PYTHON_USEDEP}]
)
dev-python/psutil[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}
test? ( >=dev-python/pytest-2.3.5[${PYTHON_USEDEP}]
dev-python/pytest-cache[${PYTHON_USEDEP}] )
"
python_test() {
PYTEST_PLUGINS="pytest_xprocess" py.test -v -v || die
}