summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorHeiko Bauke <heiko.bauke@mail.de>2021-10-05 09:59:14 +0200
committerGitHub <noreply@github.com>2021-10-05 09:59:14 +0200
commitf6a4f6bda7fc47521178dfc45b2cf2ff06ee0bd7 (patch)
tree9ac051288205006ed25118965e1220ea2fe5704a /var
parent95846ad443cdf4b5ec2a2f98e034ad93f8eb701e (diff)
downloadspack-f6a4f6bda7fc47521178dfc45b2cf2ff06ee0bd7.tar.gz
spack-f6a4f6bda7fc47521178dfc45b2cf2ff06ee0bd7.tar.bz2
spack-f6a4f6bda7fc47521178dfc45b2cf2ff06ee0bd7.tar.xz
spack-f6a4f6bda7fc47521178dfc45b2cf2ff06ee0bd7.zip
mpl: add new package (#26522)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mpl/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mpl/package.py b/var/spack/repos/builtin/packages/mpl/package.py
new file mode 100644
index 0000000000..71c814de59
--- /dev/null
+++ b/var/spack/repos/builtin/packages/mpl/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack import *
+
+
+class Mpl(CMakePackage):
+ """A C++17 message passing library based on MPI."""
+
+ homepage = "https://rabauke.github.io/mpl/html/"
+ git = "https://github.com/rabauke/mpl.git"
+ url = "https://github.com/rabauke/mpl/archive/refs/tags/v0.1.tar.gz"
+ maintainers = ['rabauke']
+
+ version('develop', branch='master')
+ version('0.1', tag='v0.1')
+
+ depends_on('mpi')