diff options
author | Auriane R <48684432+aurianer@users.noreply.github.com> | 2022-09-12 11:04:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 09:04:04 +0000 |
commit | a2396c30b282bb79ab2c6d17310021260a3983d6 (patch) | |
tree | a23d12885eed24aadf071e8d42db923efe3326db /var | |
parent | dea1e12c888da87fc613110e8e86545772a42d04 (diff) | |
download | spack-a2396c30b282bb79ab2c6d17310021260a3983d6.tar.gz spack-a2396c30b282bb79ab2c6d17310021260a3983d6.tar.bz2 spack-a2396c30b282bb79ab2c6d17310021260a3983d6.tar.xz spack-a2396c30b282bb79ab2c6d17310021260a3983d6.zip |
p2300: add wg21 p2300 std_execution as a package (#32531)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/p2300/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/p2300/package.py b/var/spack/repos/builtin/packages/p2300/package.py new file mode 100644 index 0000000000..48a4d82b1f --- /dev/null +++ b/var/spack/repos/builtin/packages/p2300/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2022 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 P2300(CMakePackage): + """The proposed C++ framework for asynchronous and parallel programming.""" + + homepage = "https://github.com/brycelelbach/wg21_p2300_std_execution" + git = "https://github.com/brycelelbach/wg21_p2300_std_execution.git" + maintainers = ["msimberg", "aurianer"] + + version("main", branch="main") + + depends_on("cmake@3.22.1:", type="build") + + conflicts("%gcc@:10") + conflicts("%clang@:13") |