bicatali 08/12/08 23:01:45
Modified: metadata.xml ChangeLog
Added: scientificpython-2.8.ebuild
Log:
Version bump
(Portage version: 2.2_rc17/cvs/Linux 2.6.25-gentoo-r7 x86_64)
Revision Changes Path
1.4 dev-python/scientificpython/metadata.xml
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/metadata.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/metadata.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/metadata.xml?r1=1.3&r2=1.4
Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/scientificpython/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml 15 Sep 2007 10:48:01 -0000 1.3
+++ metadata.xml 8 Dec 2008 23:01:45 -0000 1.4
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>python</herd>
<herd>sci</herd>
+<herd>python</herd>
<longdescription lang="en">
-ScientificPython is a collection of Python modules that are useful for
-scientific computing. In this collection you will find modules that
-cover basic geometry (vectors, tensors, transformations, vector and
-tensor fields), quaternions, automatic derivatives, linear
-interpolation, polynomials, elementary statistics, nonlinear
-least-squares fits, unit calculations, Fortran-compatible text
-formatting, 3D visualization via VRML, and two Tk widgets for simple
-line plots and 3D wireframe models.
+ ScientificPython is a collection of Python modules that are useful for
+ scientific computing. In this collection you will find modules that
+ cover basic geometry (vectors, tensors, transformations, vector and
+ tensor fields), quaternions, automatic derivatives, linear
+ interpolation, polynomials, elementary statistics, nonlinear
+ least-squares fits, unit calculations, Fortran-compatible text
+ formatting, 3D visualization via VRML, and two Tk widgets for simple
+ line plots and 3D wireframe models.
</longdescription>
</pkgmetadata>
1.17 dev-python/scientificpython/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/ChangeLog?r1=1.16&r2=1.17
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/scientificpython/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog 4 Jan 2008 14:36:29 -0000 1.16
+++ ChangeLog 8 Dec 2008 23:01:45 -0000 1.17
@@ -1,6 +1,13 @@
# ChangeLog for dev-python/scientificpython
# 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 $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/ChangeLog,v 1.17 2008/12/08 23:01:45 bicatali Exp $
+
+*scientificpython-2.8 (08 Dec 2008)
+
+ 08 Dec 2008; Sébastien Fabbro <bicatali@g.o>
+ +files/scientificpython-2.8-mpi.patch, metadata.xml,
+ +scientificpython-2.8.ebuild:
+ Version bump
04 Jan 2008; Sébastien Fabbro <bicatali@g.o>
-scientificpython-2.6.ebuild:
1.1 dev-python/scientificpython/scientificpython-2.8.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/scientificpython-2.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/scientificpython/scientificpython-2.8.ebuild?rev=1.1&content-type=text/plain
Index: scientificpython-2.8.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/scientificpython/scientificpython-2.8.ebuild,v 1.1 2008/12/08 23:01:45 bicatali Exp $
MY_PN=ScientificPython
DV=2309 # hardcoded download version
inherit eutils distutils
DESCRIPTION="Scientific Module for Python"
SRC_URI="http://sourcesup.cru.fr/frs/download.php/${DV}/${MY_PN}-${PV}.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/numpy
sci-libs/netcdf
mpi? ( virtual/mpi )"
S="${WORKDIR}/${MY_PN}-${PV}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-mpi.patch
}
src_compile() {
distutils_src_compile
if use mpi; then
cd Src/MPI
PYTHONPATH=$(ls -d "${S}"/build/lib*) \
"${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
}
|