spack/var/spack/repos/builtin/packages/stdexec/package.py
Auriane R 39fe4371fa
Rename p2300 to stdexec (#33099)
* Rename p2300 package after renaming PR merged in stdexec

https://github.com/NVIDIA/stdexec/pull/622

* Adapt pika to depend on stdexec
2022-10-07 14:54:05 +02:00

22 lines
620 B
Python

# 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 Stdexec(CMakePackage):
"""The proposed C++ framework for asynchronous and parallel programming."""
homepage = "https://github.com/NVIDIA/stdexec"
git = "https://github.com/NVIDIA/stdexec.git"
maintainers = ["msimberg", "aurianer"]
version("main", branch="main")
depends_on("cmake@3.22.1:", type="build")
conflicts("%gcc@:10")
conflicts("%clang@:13")