
* Rename p2300 package after renaming PR merged in stdexec https://github.com/NVIDIA/stdexec/pull/622 * Adapt pika to depend on stdexec
22 lines
620 B
Python
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")
|