summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAuriane R <48684432+aurianer@users.noreply.github.com>2022-09-12 11:04:04 +0200
committerGitHub <noreply@github.com>2022-09-12 09:04:04 +0000
commita2396c30b282bb79ab2c6d17310021260a3983d6 (patch)
treea23d12885eed24aadf071e8d42db923efe3326db
parentdea1e12c888da87fc613110e8e86545772a42d04 (diff)
downloadspack-a2396c30b282bb79ab2c6d17310021260a3983d6.tar.gz
spack-a2396c30b282bb79ab2c6d17310021260a3983d6.tar.bz2
spack-a2396c30b282bb79ab2c6d17310021260a3983d6.tar.xz
spack-a2396c30b282bb79ab2c6d17310021260a3983d6.zip
p2300: add wg21 p2300 std_execution as a package (#32531)
-rw-r--r--var/spack/repos/builtin/packages/p2300/package.py21
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")