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-2.0.0.ebuild

36 lines
796 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-2.0.0.ebuild,v 1.3 2013/08/07 13:28:52 ago Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
inherit distutils-r1
MY_PN="${PN}2"
MY_P="${MY_PN}-${PV}"
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://gmpy.googlecode.com/files/${MY_P}.zip"
LICENSE="LGPL-2.1"
SLOT="2"
KEYWORDS="amd64 ~ia64 x86 ~x86-linux ~ppc-macos"
IUSE=""
RDEPEND="
dev-libs/gmp
dev-libs/mpc
dev-libs/mpfr"
DEPEND="${RDEPEND}
app-arch/unzip"
S="${WORKDIR}"/${MY_P}
python_test() {
cd test || die
${PYTHON} runtests.py || die
}