summaryrefslogtreecommitdiff
blob: 4e51ded6d3a3203df60b5aacdf3bbb0da13277ab (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
37
38
39
40
41
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=2
SUPPORT_PYTHON_ABIS="1"

inherit distutils

DESCRIPTION="A networking library that achieves high scalability by using non-blocking io"
HOMEPAGE="http://wiki.secondlife.com/wiki/Eventlet"
SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="examples test"

RDEPEND="dev-python/greenlet
	<dev-lang/python-2.6? ( dev-python/pyopenssl )"

DEPEND="${RDEPEND}
	dev-python/setuptools
	test? (
		|| ( dev-lang/python[sqlite] dev-python/pysqlite )
		dev-python/nose )"

RESTRICT_PYTHON_ABIS="3*"

DOCS="README README.twisted NEWS"

src_test() {
	nosetests || die "Tests failed"
}

src_install() {
	distutils_src_install
	if use examples ; then
		dodoc examples/* || die "Install failed"
	fi
}