ascent: fix self-referential dependencies (#42457)

This commit is contained in:
Massimiliano Culpo 2024-02-02 19:25:56 +01:00 committed by GitHub
parent d227da5554
commit 494d943a24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -196,19 +196,20 @@ class Ascent(CMakePackage, CudaPackage):
####################### #######################
# VTK-m # VTK-m
####################### #######################
depends_on("vtk-m@2.0:", when="@0.9.2: +vtkh") with when("+vtkh"):
depends_on("vtk-m +doubleprecision ~64bitids")
depends_on("vtk-m@2.0:", when="@0.9.2:")
# 2.1 support needs commit e52b7bb8c9fd131f2fd49edf58037cc5ef77a166 # 2.1 support needs commit e52b7bb8c9fd131f2fd49edf58037cc5ef77a166
depends_on("vtk-m@:2.0", when="@:0.9.2 +vtkh") depends_on("vtk-m@:2.0", when="@:0.9.2")
depends_on("vtk-m@1.9", when="@0.9.0:0.9.1 +vtkh") depends_on("vtk-m@1.9", when="@0.9.0:0.9.1")
depends_on("vtk-m +doubleprecision ~64bitids", when="+vtkh ^vtk-m")
depends_on("vtk-m~tbb", when="@0.9.0: +vtkh") depends_on("vtk-m~tbb", when="@0.9.0:")
depends_on("vtk-m+openmp", when="@0.9.0: +vtkh+openmp") depends_on("vtk-m+openmp", when="@0.9.0: +openmp")
depends_on("vtk-m~openmp", when="@0.9.0: +vtkh~openmp") depends_on("vtk-m~openmp", when="@0.9.0: ~openmp")
depends_on("vtk-m~cuda", when="@0.9.0: +vtkh~cuda") depends_on("vtk-m~cuda", when="@0.9.0: ~cuda")
depends_on("vtk-m+cuda", when="@0.9.0: +vtkh+cuda") depends_on("vtk-m+cuda", when="@0.9.0: +cuda")
depends_on("vtk-m+fpic", when="@0.8.0: +vtkh") depends_on("vtk-m+fpic", when="@0.8.0:")
depends_on("vtk-m~shared+fpic", when="@0.8.0: +vtkh~shared") depends_on("vtk-m~shared+fpic", when="@0.8.0: ~shared")
# Ascent defaults to C++11 # Ascent defaults to C++11
depends_on("kokkos cxxstd=11", when="+vtkh ^vtk-m +kokkos") depends_on("kokkos cxxstd=11", when="+vtkh ^vtk-m +kokkos")
@ -217,19 +218,20 @@ class Ascent(CMakePackage, CudaPackage):
####################### #######################
# Ascent 0.9.0 includes VTK-h, prior to 0.9.0 # Ascent 0.9.0 includes VTK-h, prior to 0.9.0
# VTK-h was developed externally # VTK-h was developed externally
depends_on("vtk-h@:0.7", when="@:0.7 +vtkh") depends_on("vtk-h@:0.7", when="@:0.7")
depends_on("vtk-h@0.8.1:", when="@0.8:0.8 +vtkh") depends_on("vtk-h@0.8.1:", when="@0.8:0.8")
# propagate relevent variants to vtk-h # propagate relevant variants to vtk-h
depends_on("vtk-h+openmp", when="@:0.8.0 +vtkh+openmp") depends_on("vtk-h+openmp", when="@:0.8.0 +openmp")
depends_on("vtk-h~openmp", when="@:0.8.0 +vtkh~openmp") depends_on("vtk-h~openmp", when="@:0.8.0 ~openmp")
depends_on("vtk-h+cuda", when="@:0.8.0 +vtkh+cuda") depends_on("vtk-h+cuda", when="@:0.8.0 +cuda")
depends_on("vtk-h~cuda", when="@:0.8.0 +vtkh~cuda") depends_on("vtk-h~cuda", when="@:0.8.0 ~cuda")
propagate_cuda_arch("vtk-h", "@:0.8.0 +vtkh") depends_on("vtk-h+shared", when="@:0.8.0 +shared")
depends_on("vtk-h+shared", when="@:0.8.0 +vtkh+shared") depends_on("vtk-h~shared", when="@:0.8.0 ~shared")
depends_on("vtk-h~shared", when="@:0.8.0 +vtkh~shared")
# When using VTK-h ascent also needs VTK-m # When using VTK-h ascent also needs VTK-m
depends_on("vtk-m@:1.7", when="@:0.8.0 +vtkh") depends_on("vtk-m@:1.7", when="@:0.8.0")
depends_on("vtk-m+testlib", when="@:0.8.0 +vtkh+test^vtk-m") depends_on("vtk-m+testlib", when="@:0.8.0 +test")
propagate_cuda_arch("vtk-h", "@:0.8.0 +vtkh")
# mfem # mfem
depends_on("mfem~threadsafe~openmp+conduit", when="+mfem") depends_on("mfem~threadsafe~openmp+conduit", when="+mfem")