# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.ebuild,v 1.1 2014/06/12 08:43:54 patrick Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit distutils-r1 DESCRIPTION="virtualenvwrapper is a set of extensions to Ian Bicking's virtualenv tool" HOMEPAGE="http://www.doughellmann.com/projects/virtualenvwrapper http://pypi.python.org/pypi/virtualenvwrapper" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" RESTRICT=test RDEPEND="dev-python/virtualenv[${PYTHON_USEDEP}] dev-python/stevedore[${PYTHON_USEDEP}] dev-python/virtualenv-clone[${PYTHON_USEDEP}]" DEPEND="${DEPEND} dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/tox[${PYTHON_USEDEP}] )" src_prepare() { sed -e 's:-o shwordsplit::' -i tests/run_tests || die } python_test() { tox tests/test_cp.sh || die "Tests failed under ${EPYTHON}" }