summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2008-01-04 14:36:30 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2008-01-04 14:36:30 +0000
commita5209725d160a1fdd8c90817712e339b7a369c01 (patch)
tree5135539719408a12ec86afd8242c4785549af931 /dev-python/scientificpython
parentRemove last version depending on howl. (diff)
downloadhistorical-a5209725d160a1fdd8c90817712e339b7a369c01.tar.gz
historical-a5209725d160a1fdd8c90817712e339b7a369c01.tar.bz2
historical-a5209725d160a1fdd8c90817712e339b7a369c01.zip
Removed obsolete version
Package-Manager: portage-2.1.4_rc14
Diffstat (limited to 'dev-python/scientificpython')
-rw-r--r--dev-python/scientificpython/ChangeLog8
-rw-r--r--dev-python/scientificpython/files/digest-scientificpython-2.63
-rw-r--r--dev-python/scientificpython/scientificpython-2.6.ebuild59
3 files changed, 6 insertions, 64 deletions
diff --git a/dev-python/scientificpython/ChangeLog b/dev-python/scientificpython/ChangeLog
index c69bcf46c390..e1ce6a0e430a 100644
--- a/dev-python/scientificpython/ChangeLog
+++ b/dev-python/scientificpython/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/scientificpython
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/ChangeLog,v 1.15 2007/10/17 11:27:51 bicatali Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/ChangeLog,v 1.16 2008/01/04 14:36:29 bicatali Exp $
+
+ 04 Jan 2008; SĂ©bastien Fabbro <bicatali@gentoo.org>
+ -scientificpython-2.6.ebuild:
+ Removed obsolete version
*scientificpython-2.6.1 (17 Oct 2007)
diff --git a/dev-python/scientificpython/files/digest-scientificpython-2.6 b/dev-python/scientificpython/files/digest-scientificpython-2.6
deleted file mode 100644
index c2d96684c744..000000000000
--- a/dev-python/scientificpython/files/digest-scientificpython-2.6
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 6ebd96fc8a4e015adab2c57826d52e9f ScientificPython-2.6.tar.gz 514044
-RMD160 5c9e8cba2373d722854cfe57e270803d7ed2bf2a ScientificPython-2.6.tar.gz 514044
-SHA256 cfa06b0e5bdadfdc79328bfd01843f9e7b0a08f7c19d1f32a7ecec498be72cc0 ScientificPython-2.6.tar.gz 514044
diff --git a/dev-python/scientificpython/scientificpython-2.6.ebuild b/dev-python/scientificpython/scientificpython-2.6.ebuild
deleted file mode 100644
index 21158f67eadf..000000000000
--- a/dev-python/scientificpython/scientificpython-2.6.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.6.ebuild,v 1.3 2007/09/15 10:48:01 bicatali Exp $
-
-MY_P=${P/scientificpython/ScientificPython}
-DV=1034 # hardcoded download version
-
-inherit eutils distutils
-
-DESCRIPTION="Scientific Module for Python"
-SRC_URI="http://sourcesup.cru.fr/frs/download.php/${DV}/${MY_P}.tar.gz"
-HOMEPAGE="http://dirac.cnrs-orleans.fr/ScientificPython/"
-SLOT="0"
-LICENSE="CeCILL-2"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
-
-IUSE="mpi doc"
-
-DEPEND=">=dev-python/numeric-23.8
- >=sci-libs/netcdf-3.0
- mpi? ( virtual/mpi )"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-mpi.patch
-}
-
-src_compile() {
- distutils_src_compile
- if use mpi; then
- cd Src/MPI
- "${python}" compile.py || die "compile mpi failed"
- fi
-}
-
-src_test() {
- cd "${S}"/build/lib*
- for t in "${S}"/Tests/*tests.py; do
- PYTHONPATH=. "${python}" ${t} || die "test $(basename ${t}) failed"
- done
-}
-
-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
- dobin Src/MPI/mpipython || die "dobin failed"
- doins Examples/mpi.py || die "doins mpi example failed failed"
- fi
- if use doc; then
- dohtml Doc/Reference/* || die "dohtml failed"
- fi
-}