add new release versions (#42362)

This commit is contained in:
Chris White 2024-01-31 10:58:07 -08:00 committed by GitHub
parent 2bcfb72d38
commit 5034919d23
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7 additions and 3 deletions

View file

@ -25,6 +25,8 @@ class Blt(Package):
# if you export targets this could cause problems in downstream
# projects if not handled properly. More info here:
# https://llnl-blt.readthedocs.io/en/develop/tutorial/exporting_targets.html
version("0.6.1", sha256="205540b704b8da5a967475be9e8f2d1a5e77009b950e7fbf01c0edabc4315906")
version("0.6.0", sha256="ede355e85f7b11d7c8442b51e4f7871c152093818606e00b1e1cf30f67ebdb23")
version("0.5.3", sha256="75d17caac98e78432ce25371c50d45ad3e7053820976bc5ed210bbef998f1732")
version("0.5.2", sha256="95b924cfbb2bddd9b1a92e96603b2fd485a19721d59ddf8ff50baefc1714d7ea")
version("0.5.1", sha256="ff7e87eefc48704a0721b66174612b945955adaa0a56aa69dd0473074fa4badf")

View file

@ -56,6 +56,7 @@ class Camp(CMakePackage, CudaPackage, ROCmPackage):
depends_on("cub", when="+cuda")
depends_on("blt", type="build")
depends_on("blt@0.5.0:0.5.3", type="build", when="@2022.03.0:")
patch("gcc-13-missing-header.patch", when="@:2022.10 %gcc@13:")

View file

@ -132,7 +132,7 @@ class Raja(CachedCMakePackage, CudaPackage, ROCmPackage):
variant("tests", default=False, description="Build tests")
depends_on("blt", type="build")
depends_on("blt@0.5.0:", type="build", when="@0.14.1:")
depends_on("blt@0.5.0:0.5.3", type="build", when="@0.14.1:2022.10.4")
depends_on("blt@0.4.1", type="build", when="@0.14.0")
depends_on("blt@0.4.0:", type="build", when="@0.13.0")
depends_on("blt@0.3.6:", type="build", when="@:0.12.0")

View file

@ -179,8 +179,9 @@ class Umpire(CachedCMakePackage, CudaPackage, ROCmPackage):
depends_on("cmake@3.9:", when="+cuda", type="build")
depends_on("cmake@3.14:", when="@2022.03.0:", type="build")
depends_on("blt@0.5.2:", type="build", when="@2022.10.0:")
depends_on("blt@0.5.0:", type="build", when="@2022.03.0:")
depends_on("blt", type="build")
depends_on("blt@0.5.2:0.5.3", type="build", when="@2022.10.0")
depends_on("blt@0.5.0:0.5.3", type="build", when="@2022.03.0:2022.03.1")
depends_on("blt@0.4.1", type="build", when="@6.0.0")
depends_on("blt@0.4.0:", type="build", when="@4.1.3:5.0.1")
depends_on("blt@0.3.6:", type="build", when="@:4.1.2")