You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/gmpy/gmpy-1.17.ebuild

39 lines
931 B

# 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
}