diff options
Diffstat (limited to 'dev-python/BitVector/BitVector-3.0-r1.ebuild')
-rw-r--r-- | dev-python/BitVector/BitVector-3.0-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/BitVector/BitVector-3.0-r1.ebuild b/dev-python/BitVector/BitVector-3.0-r1.ebuild new file mode 100644 index 000000000000..8aad6ad7f72d --- /dev/null +++ b/dev-python/BitVector/BitVector-3.0-r1.ebuild @@ -0,0 +1,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.1 2011/08/05 16:57:42 bicatali 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/" +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 +} |