summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-mpi4py/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-mpi4py/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-mpi4py/package.py43
1 files changed, 22 insertions, 21 deletions
diff --git a/var/spack/repos/builtin/packages/py-mpi4py/package.py b/var/spack/repos/builtin/packages/py-mpi4py/package.py
index 966d6dc461..f0133d2af4 100644
--- a/var/spack/repos/builtin/packages/py-mpi4py/package.py
+++ b/var/spack/repos/builtin/packages/py-mpi4py/package.py
@@ -8,30 +8,31 @@ from spack.package import *
class PyMpi4py(PythonPackage):
"""This package provides Python bindings for the Message Passing
- Interface (MPI) standard. It is implemented on top of the
- MPI-1/MPI-2 specification and exposes an API which grounds on the
- standard MPI-2 C++ bindings.
+ Interface (MPI) standard. It is implemented on top of the
+ MPI-1/MPI-2 specification and exposes an API which grounds on the
+ standard MPI-2 C++ bindings.
"""
+
pypi = "mpi4py/mpi4py-3.0.3.tar.gz"
- git = "https://github.com/mpi4py/mpi4py.git"
+ git = "https://github.com/mpi4py/mpi4py.git"
- version('master', branch='master')
- version('3.1.2', sha256='40dd546bece8f63e1131c3ceaa7c18f8e8e93191a762cd446a8cfcf7f9cce770')
- version('3.1.1', sha256='e11f8587a3b93bb24c8526addec664b586b965d83c0882b884c14dc3fd6b9f5c')
- version('3.1.0', sha256='134fa2b2fe6d8f91bcfcc2824cfd74b55ca3dcbff4d185b1bda009beea9232ec')
- version('3.0.3', sha256='012d716c8b9ed1e513fcc4b18e5af16a8791f51e6d1716baccf988ad355c5a1f')
- version('3.0.1', sha256='6549a5b81931303baf6600fa2e3bc04d8bd1d5c82f3c21379d0d64a9abcca851')
- version('3.0.0', sha256='b457b02d85bdd9a4775a097fac5234a20397b43e073f14d9e29b6cd78c68efd7')
- version('2.0.0', sha256='6543a05851a7aa1e6d165e673d422ba24e45c41e4221f0993fe1e5924a00cb81')
- version('1.3.1', sha256='e7bd2044aaac5a6ea87a87b2ecc73b310bb6efe5026031e33067ea3c2efc3507')
+ version("master", branch="master")
+ version("3.1.2", sha256="40dd546bece8f63e1131c3ceaa7c18f8e8e93191a762cd446a8cfcf7f9cce770")
+ version("3.1.1", sha256="e11f8587a3b93bb24c8526addec664b586b965d83c0882b884c14dc3fd6b9f5c")
+ version("3.1.0", sha256="134fa2b2fe6d8f91bcfcc2824cfd74b55ca3dcbff4d185b1bda009beea9232ec")
+ version("3.0.3", sha256="012d716c8b9ed1e513fcc4b18e5af16a8791f51e6d1716baccf988ad355c5a1f")
+ version("3.0.1", sha256="6549a5b81931303baf6600fa2e3bc04d8bd1d5c82f3c21379d0d64a9abcca851")
+ version("3.0.0", sha256="b457b02d85bdd9a4775a097fac5234a20397b43e073f14d9e29b6cd78c68efd7")
+ version("2.0.0", sha256="6543a05851a7aa1e6d165e673d422ba24e45c41e4221f0993fe1e5924a00cb81")
+ version("1.3.1", sha256="e7bd2044aaac5a6ea87a87b2ecc73b310bb6efe5026031e33067ea3c2efc3507")
- depends_on('python@2.6:2.7,3.2:')
- depends_on('python@2.7:2.8,3.5:', when='@3.1:')
- depends_on('py-setuptools', type='build')
- depends_on('mpi')
- depends_on('py-cython@0.27.0:', when='@master', type='build')
- depends_on('py-3to2', when='@3.1: ^python@:2', type='build')
+ depends_on("python@2.6:2.7,3.2:")
+ depends_on("python@2.7:2.8,3.5:", when="@3.1:")
+ depends_on("py-setuptools", type="build")
+ depends_on("mpi")
+ depends_on("py-cython@0.27.0:", when="@master", type="build")
+ depends_on("py-3to2", when="@3.1: ^python@:2", type="build")
- @when('@3.1:')
+ @when("@3.1:")
def install_options(self, spec, prefix):
- return ['--mpicc=%s -shared' % spec['mpi'].mpicc]
+ return ["--mpicc=%s -shared" % spec["mpi"].mpicc]