summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-03-05 18:20:54 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-03-05 18:20:54 +0000
commit699ca3aa4acfca6cf96480e66a593fa3f59a367c (patch)
tree4fb79cea6ddb447fca02750171a8ff855ca7cdce /dev-python/mpi4py
parentMove cvsweb to www-apps, bug 56967. (diff)
downloadhistorical-699ca3aa4acfca6cf96480e66a593fa3f59a367c.tar.gz
historical-699ca3aa4acfca6cf96480e66a593fa3f59a367c.tar.bz2
historical-699ca3aa4acfca6cf96480e66a593fa3f59a367c.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/mpi4py')
-rw-r--r--dev-python/mpi4py/mpi4py-1.1.0.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-python/mpi4py/mpi4py-1.1.0.ebuild b/dev-python/mpi4py/mpi4py-1.1.0.ebuild
deleted file mode 100644
index 47d3aa313b47..000000000000
--- a/dev-python/mpi4py/mpi4py-1.1.0.ebuild
+++ /dev/null
@@ -1,39 +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/mpi4py/mpi4py-1.1.0.ebuild,v 1.2 2009/08/29 23:02:32 arfrever Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-DESCRIPTION="Message Passing Interface for Python"
-HOMEPAGE="http://code.google.com/p/mpi4py/"
-SRC_URI="http://mpi4py.googlecode.com/files/${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-LICENSE="BSD"
-IUSE="doc examples"
-
-DEPEND="virtual/mpi"
-RDEPEND="${DEPEND}"
-
-src_test() {
- testing() {
- PYTHONPATH="$(dir -d build-${PYTHON_ABI}/lib*)" mpiexec -n 2 "$(PYTHON)" test/runalltest.py
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
- if use doc; then
- insinto /usr/share/doc/${PF}/html
- doins -r docs/* || die
- fi
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins -r demo/* || die
- fi
-}