summaryrefslogtreecommitdiff
blob: eb3f7174399cb1e90b2bfcaff591d0057eaf5990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenvwrapper/virtualenvwrapper-3.0.ebuild,v 1.2 2012/02/16 04:21:35 mr_bones_ Exp $

EAPI=4

PYTHON_DEPEND="*"
SUPPORT_PYTHON_ABIS="1"

inherit distutils
inherit python

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"

RDEPEND="dev-python/virtualenv"
DEPEND="${DEPEND}
	dev-python/setuptools
	test? ( dev-python/tox )"

#src_test() {
#	testing() {
#		PYTHON_MAJOR="$(python_get_version --major)"
#		PYTHON_MINOR="$(python_get_version --minor)"
#		cp ${FILESDIR}/tox.ini .
#		export TMPDIR=${T}
#		tox -e py${PYTHON_MAJOR}${PYTHON_MINOR} tests/test_cp.sh
#	}
#	python_execute_function testing
#}