summaryrefslogtreecommitdiff
path: root/dev-python/scientificpython/scientificpython-2.9.1.ebuild
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-11-09 14:49:30 +0100
committerPacho Ramos <pacho@gentoo.org>2016-11-09 15:04:15 +0100
commit2ac8ff30dd30f93cde6e11183d9bd67c9f7b8c1f (patch)
tree8ad7583b72e96eae2e82137116dbde75993a87e2 /dev-python/scientificpython/scientificpython-2.9.1.ebuild
parent57f252ebe616b24f07824258d8a9a886b09ff32d (diff)
downloadgentoo-2ac8ff30dd30f93cde6e11183d9bd67c9f7b8c1f.tar.gz
gentoo-2ac8ff30dd30f93cde6e11183d9bd67c9f7b8c1f.tar.bz2
gentoo-2ac8ff30dd30f93cde6e11183d9bd67c9f7b8c1f.zip
dev-python/scientificpython: Drop old
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-python/scientificpython/scientificpython-2.9.1.ebuild')
-rw-r--r--dev-python/scientificpython/scientificpython-2.9.1.ebuild84
1 files changed, 0 insertions, 84 deletions
diff --git a/dev-python/scientificpython/scientificpython-2.9.1.ebuild b/dev-python/scientificpython/scientificpython-2.9.1.ebuild
deleted file mode 100644
index 90b402ad7ff1..000000000000
--- a/dev-python/scientificpython/scientificpython-2.9.1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
-
-inherit distutils eutils
-
-MY_PN="ScientificPython"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Scientific Module for Python"
-DOWNLOAD_NUMBER="3420"
-SRC_URI="http://sourcesup.cru.fr/frs/download.php/${DOWNLOAD_NUMBER}/${MY_P}.tar.gz"
-HOMEPAGE="http://sourcesup.cru.fr/projects/scientific-py/"
-
-LICENSE="CeCILL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc mpi test"
-
-RDEPEND="
- <dev-python/numpy-1.9
- dev-python/pyro:3
- sci-libs/netcdf
- mpi? ( virtual/mpi )"
-DEPEND="${RDEPEND}
- test? ( dev-python/nose )"
-
-S="${WORKDIR}/${MY_P}"
-
-PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
-
-PYTHON_MODNAME="Scientific"
-
-src_prepare() {
- distutils_src_prepare
- epatch "${FILESDIR}/${PN}-2.9-mpi.patch"
- use mpi && epatch "${FILESDIR}/${P}-mpi-netcdf.patch"
-}
-
-src_compile() {
- distutils_src_compile
-
- if use mpi; then
- cd Src/MPI
- building_of_mpipython() {
- PYTHONPATH="$(ls -d ../../build-${PYTHON_ABI}/lib*)" "$(PYTHON)" compile.py
- mv -f mpipython mpipython-${PYTHON_ABI}
- }
- python_execute_function \
- --action-message 'Building of mpipython with $(python_get_implementation) $(python_get_version)' \
- --failure-message 'Building of mpipython failed with $(python_get_implementation) $(python_get_version)' \
- building_of_mpipython
- fi
-}
-
-src_test() {
- cd Tests
- python_execute_nosetests -P '$(ls -d ../build-${PYTHON_ABI}/lib.*)'
-}
-
-src_install() {
- distutils_src_install
- # do not install bsp related stuff, since we don't compile the interface
- dodoc README README.MPI Doc/CHANGELOG || die "dodoc failed"
- insinto /usr/share/doc/${PF}
- doins Examples/{demomodule.c,netcdf_demo.py} || die "doins examples failed"
-
- if use mpi; then
- installation_of_mpipython() {
- dobin Src/MPI/mpipython-${PYTHON_ABI}
- }
- python_execute_function -q installation_of_mpipython
- python_generate_wrapper_scripts "${ED}usr/bin/mpipython"
- doins Examples/mpi.py || die "doins mpi example failed failed"
- fi
-
- if use doc; then
- dohtml Doc/Reference/* || die "dohtml failed"
- fi
-}