Add Caliper v2.11 (#43802)

This commit is contained in:
David Boehme 2024-04-24 12:21:56 -07:00 committed by GitHub
parent 9e5fdc6614
commit abbd09b4b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,7 +18,7 @@ class Caliper(CMakePackage, CudaPackage, ROCmPackage):
homepage = "https://github.com/LLNL/Caliper" homepage = "https://github.com/LLNL/Caliper"
git = "https://github.com/LLNL/Caliper.git" git = "https://github.com/LLNL/Caliper.git"
url = "https://github.com/LLNL/Caliper/archive/v2.10.0.tar.gz" url = "https://github.com/LLNL/Caliper/archive/v2.11.0.tar.gz"
tags = ["e4s", "radiuss"] tags = ["e4s", "radiuss"]
maintainers("daboehme") maintainers("daboehme")
@ -28,6 +28,7 @@ class Caliper(CMakePackage, CudaPackage, ROCmPackage):
license("BSD-3-Clause") license("BSD-3-Clause")
version("master", branch="master") version("master", branch="master")
version("2.11.0", sha256="b86b733cbb73495d5f3fe06e6a9885ec77365c8aa9195e7654581180adc2217c")
version("2.10.0", sha256="14c4fb5edd5e67808d581523b4f8f05ace8549698c0e90d84b53171a77f58565") version("2.10.0", sha256="14c4fb5edd5e67808d581523b4f8f05ace8549698c0e90d84b53171a77f58565")
version("2.9.1", sha256="4771d630de505eff9227e0ec498d0da33ae6f9c34df23cb201b56181b8759e9e") version("2.9.1", sha256="4771d630de505eff9227e0ec498d0da33ae6f9c34df23cb201b56181b8759e9e")
version("2.9.0", sha256="507ea74be64a2dfd111b292c24c4f55f459257528ba51a5242313fa50978371f") version("2.9.0", sha256="507ea74be64a2dfd111b292c24c4f55f459257528ba51a5242313fa50978371f")
@ -96,7 +97,8 @@ class Caliper(CMakePackage, CudaPackage, ROCmPackage):
variant("kokkos", default=True, when="@2.3.0:", description="Enable Kokkos profiling support") variant("kokkos", default=True, when="@2.3.0:", description="Enable Kokkos profiling support")
variant("tests", default=False, description="Enable tests") variant("tests", default=False, description="Enable tests")
depends_on("adiak@0.1:0", when="@2.2: +adiak") depends_on("adiak@0.1:0", when="@2.2:2.10 +adiak")
depends_on("adiak@0.4:0", when="@2.11: +adiak")
depends_on("papi@5.3:5", when="@:2.2 +papi") depends_on("papi@5.3:5", when="@:2.2 +papi")
depends_on("papi@5.3:", when="@2.3: +papi") depends_on("papi@5.3:", when="@2.3: +papi")
@ -114,7 +116,7 @@ class Caliper(CMakePackage, CudaPackage, ROCmPackage):
depends_on("python", type="build") depends_on("python", type="build")
# sosflow support not yet in 2.0 # sosflow support not yet in 2.0
conflicts("+sosflow", "@2.0.0:2.9") conflicts("+sosflow", "@2.0.0:2.11")
conflicts("+adiak", "@:2.1") conflicts("+adiak", "@:2.1")
conflicts("+libdw", "@:2.4") conflicts("+libdw", "@:2.4")
conflicts("+rocm", "@:2.7") conflicts("+rocm", "@:2.7")