diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-17 19:44:28 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-17 19:44:28 +0000 |
commit | 165df10438b7f0e02ceabc7a809357d777e22e60 (patch) | |
tree | 2ee0d7a47e51e18b66d9d2d105e76034acebd16b | |
parent | QA: whitespace. (diff) | |
download | gentoo-2-165df10438b7f0e02ceabc7a809357d777e22e60.tar.gz gentoo-2-165df10438b7f0e02ceabc7a809357d777e22e60.tar.bz2 gentoo-2-165df10438b7f0e02ceabc7a809357d777e22e60.zip |
Delete older ebuild.
-rw-r--r-- | dev-python/gmpy/gmpy-1.10.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/dev-python/gmpy/gmpy-1.10.ebuild b/dev-python/gmpy/gmpy-1.10.ebuild deleted file mode 100644 index 829ea3763154..000000000000 --- a/dev-python/gmpy/gmpy-1.10.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gmpy/gmpy-1.10.ebuild,v 1.3 2009/12/31 16:24:19 fauli Exp $ - -EAPI="2" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils - -DESCRIPTION="Python bindings for dev-libs/gmp" -HOMEPAGE="http://www.aleax.it/gmpy.html http://code.google.com/p/gmpy/" -SRC_URI="http://${PN}.googlecode.com/files/${P}.zip" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~ia64 x86" -IUSE="" - -RDEPEND="dev-libs/gmp" -DEPEND="${RDEPEND} - app-arch/unzip" - -src_prepare() { - # HACK: distutils only support 'setup.py', so - # we symlink what we need to 'setup.py' later - mv setup.py setmp.py -} - -src_compile() { - local i - for i in mp es; do - ln -snf "set${i}.py" "setup.py" && distutils_src_compile - done -} - -src_test() { - testing() { - if [[ "${PYTHON_ABI}" == 3.* ]]; then - pushd test3 > /dev/null - else - pushd test > /dev/null - fi - PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" gmpy_test.py || return 1 - popd > /dev/null - } - python_execute_function testing -} - -src_install() { - local i - for i in mp es; do - ln -snf "set${i}.py" "setup.py" && distutils_src_install - done - dohtml doc/index.html - dodoc doc/gmpydoc.txt -} |