diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-29 21:08:44 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-29 21:08:44 +0000 |
commit | ade53c7e574deeb8499394063140315680ef1ab9 (patch) | |
tree | 3f2df33a279daa4326481a552998b6af3b694ce3 /dev-python/mpi4py | |
parent | stable x86, bug 298774 (diff) | |
download | gentoo-2-ade53c7e574deeb8499394063140315680ef1ab9.tar.gz gentoo-2-ade53c7e574deeb8499394063140315680ef1ab9.tar.bz2 gentoo-2-ade53c7e574deeb8499394063140315680ef1ab9.zip |
Version bump.
(Portage version: 15154-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/mpi4py')
-rw-r--r-- | dev-python/mpi4py/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/mpi4py/mpi4py-1.2.ebuild | 40 |
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-python/mpi4py/ChangeLog b/dev-python/mpi4py/ChangeLog index d1f621bdcda0..e258aa35ef78 100644 --- a/dev-python/mpi4py/ChangeLog +++ b/dev-python/mpi4py/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/mpi4py # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mpi4py/ChangeLog,v 1.2 2009/08/29 23:02:32 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/mpi4py/ChangeLog,v 1.3 2009/12/29 21:08:44 arfrever Exp $ + +*mpi4py-1.2 (29 Dec 2009) + + 29 Dec 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +mpi4py-1.2.ebuild: + Version bump. 29 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> mpi4py-1.1.0.ebuild: diff --git a/dev-python/mpi4py/mpi4py-1.2.ebuild b/dev-python/mpi4py/mpi4py-1.2.ebuild new file mode 100644 index 000000000000..12114e77b583 --- /dev/null +++ b/dev-python/mpi4py/mpi4py-1.2.ebuild @@ -0,0 +1,40 @@ +# 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.2.ebuild,v 1.1 2009/12/29 21:08:44 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +DESCRIPTION="Message Passing Interface for Python" +HOMEPAGE="http://code.google.com/p/mpi4py/ http://pypi.python.org/pypi/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="$(ls -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 "doins failed" + fi + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins -r demo/* || die "doins failed" + fi +} |