blob: 69c20570d5abda5d7743c68bd5391cc54a74964d (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/BitVector/BitVector-3.0-r1.ebuild,v 1.2 2011/09/05 20:39:05 djc Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS=1
RESTRICT_PYTHON_ABIS="2.4 2.5"
inherit distutils
DESCRIPTION="A pure-Python memory-efficient packed representation for bit arrays"
HOMEPAGE="http://cobweb.ecn.purdue.edu/~kak/dist/ http://pypi.python.org/pypi/BitVector"
SRC_URI="http://cobweb.ecn.purdue.edu/~kak/dist/${P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
PYTHON_MODULES="BitVector.py"
src_prepare() {
distutils_src_prepare
# Don't install test.py.
rm -f test.py
}
src_test() {
cd Test${PN}
testing() {
PYTHONPATH="../build-${PYTHON_ABI}/lib" "$(PYTHON)" Test.py
}
python_execute_function testing
}
|