Nalu: updating Trilinos recipe a bit (#43471)
* Nalu: updating Trilinos recipe a bit Basic changes to build/install nalu properly using Spack. Some more changes would be nice for instance adding an option to build against Trilinos master or develop. Adding a dependency on googletest to avoid the annoying build failures in the unit-tests. * Nalu: adding release 1.6.0 Nalu v1.6.0 can build cleanly against Trilinos 14.0.0 with the proposed changes. The only other combo is master / master but than one is "floating" as these branch evolve over time. When a new Nalu comes out we might want to add another fixed version to keep this recipes up to date!
This commit is contained in:
		@@ -15,9 +15,14 @@ class Nalu(CMakePackage):
 | 
				
			|||||||
    """
 | 
					    """
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    homepage = "https://github.com/NaluCFD/Nalu"
 | 
					    homepage = "https://github.com/NaluCFD/Nalu"
 | 
				
			||||||
 | 
					    url = "https://github.com/NaluCFD/Nalu/archive/refs/tags/v1.6.0.tar.gz"
 | 
				
			||||||
    git = "https://github.com/NaluCFD/Nalu.git"
 | 
					    git = "https://github.com/NaluCFD/Nalu.git"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    version("master", branch="master")
 | 
					    version("master", branch="master")
 | 
				
			||||||
 | 
					    version("1.6.0", sha256="2eafafe25ed44a7bc1429881f8f944b9794ca51b1e1b29c28a45b91520c7cf97")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    depends_on("trilinos@master", when="@master")
 | 
				
			||||||
 | 
					    depends_on("trilinos@=14.0.0", when="@1.6.0")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # Options
 | 
					    # Options
 | 
				
			||||||
    variant(
 | 
					    variant(
 | 
				
			||||||
@@ -31,16 +36,15 @@ class Nalu(CMakePackage):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    # Required dependencies
 | 
					    # Required dependencies
 | 
				
			||||||
    depends_on("mpi")
 | 
					    depends_on("mpi")
 | 
				
			||||||
    depends_on("yaml-cpp@0.5.3:", when="+shared")
 | 
					    depends_on("yaml-cpp@0.5.3:0.6.2", when="+shared")
 | 
				
			||||||
    depends_on("yaml-cpp~shared@0.5.3:", when="~shared")
 | 
					    depends_on("yaml-cpp~shared@0.5.3:0.6.2", when="~shared")
 | 
				
			||||||
    # Cannot build Trilinos as a shared library with STK on Darwin
 | 
					    # Cannot build Trilinos as a shared library with STK on Darwin
 | 
				
			||||||
    # which is why we have a 'shared' variant for Nalu
 | 
					    # which is why we have a 'shared' variant for Nalu
 | 
				
			||||||
    # https://github.com/trilinos/Trilinos/issues/2994
 | 
					    # https://github.com/trilinos/Trilinos/issues/2994
 | 
				
			||||||
    depends_on(
 | 
					    depends_on(
 | 
				
			||||||
        "trilinos"
 | 
					        "trilinos"
 | 
				
			||||||
        "+mpi+exodus+tpetra+muelu+belos+ifpack2+amesos2+zoltan+stk+boost"
 | 
					        "+mpi+exodus+tpetra+muelu+belos+ifpack2+amesos2+zoltan+stk+boost+gtest"
 | 
				
			||||||
        "~superlu-dist+superlu+hdf5+shards~hypre"
 | 
					        "~superlu-dist+superlu+hdf5+shards~hypre gotype=long"
 | 
				
			||||||
        "@master"
 | 
					 | 
				
			||||||
    )
 | 
					    )
 | 
				
			||||||
    depends_on("trilinos~shared", when="~shared")
 | 
					    depends_on("trilinos~shared", when="~shared")
 | 
				
			||||||
    # Optional dependencies
 | 
					    # Optional dependencies
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user