summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mpl/package.py
blob: 612049bad2c8e54cc91130adad8f6c75ff7f4298 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2023 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.package 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.3.0.tar.gz"
    maintainers("rabauke")

    version("develop", branch="master")
    version("0.3.0", tag="v0.3.0")
    version("0.2.1", tag="v0.2.1")
    version("0.2.0", tag="v0.2.0")
    version("0.1", tag="v0.1")

    depends_on("mpi")