From a2396c30b282bb79ab2c6d17310021260a3983d6 Mon Sep 17 00:00:00 2001 From: Auriane R <48684432+aurianer@users.noreply.github.com> Date: Mon, 12 Sep 2022 11:04:04 +0200 Subject: [PATCH] p2300: add wg21 p2300 std_execution as a package (#32531) --- .../repos/builtin/packages/p2300/package.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 var/spack/repos/builtin/packages/p2300/package.py 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 00000000000..48a4d82b1fc --- /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")