summaryrefslogtreecommitdiff
blob: bc35e0414761ecc3351b253414b90d83224d2913 (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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gmpy/gmpy-1.17.ebuild,v 1.1 2013/12/23 12:55:20 jlec Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )

inherit distutils-r1

DESCRIPTION="Python bindings for GMP library"
HOMEPAGE="http://www.aleax.it/gmpy.html http://code.google.com/p/gmpy/ http://pypi.python.org/pypi/gmpy"
SRC_URI="http://${PN}.googlecode.com/files/${P}.zip"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86 ~x86-linux ~ppc-macos"
IUSE=""

RDEPEND="dev-libs/gmp"
DEPEND="${RDEPEND}
	app-arch/unzip"

DOCS=( doc/gmpydoc.txt )
HTML_DOCS=(	doc/index.html )

python_test() {
	if $(python_is_python3); then
		pushd test3 > /dev/null
	else
		pushd test > /dev/null
	fi
	sed \
		-e 's:_test():_test(chat=True):g' \
		-i gmpy_test.py || die
	"${EPYTHON}" gmpy_test.py || return 1
	popd > /dev/null
}