blob: c1527494d28c3a2fbba1b0402c8f8cd8d365599a (
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
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psyco/psyco-1.6.ebuild,v 1.4 2010/11/01 12:30:46 phajdan.jr Exp $
EAPI="3"
PYTHON_DEPEND="2::2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.7 3.*"
inherit distutils
DESCRIPTION="Python extension module which can massively speed up the execution of any Python code."
HOMEPAGE="http://psyco.sourceforge.net/"
SRC_URI="mirror://sourceforge/psyco/${P}-src.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="x86 ~x86-linux"
IUSE="examples"
DEPEND=""
RDEPEND=""
src_prepare() {
distutils_src_prepare
# whrandom is deprecated in python-2.4
# and removed in 2.5
sed -i \
-e "s/whrandom/random/g" \
test/life.py test/life-psyco.py || die "sed failed"
}
src_test() {
cd test
testing() {
PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" test_base.py
}
python_execute_function testing
}
src_install() {
distutils_src_install
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins test/bpnn.py test/life.py test/life-psyco.py test/pystone.py || die "doins failed"
fi
}
|