diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/nalu-wind/package.py | 4 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/trilinos/package.py | 11 |
2 files changed, 2 insertions, 13 deletions
diff --git a/var/spack/repos/builtin/packages/nalu-wind/package.py b/var/spack/repos/builtin/packages/nalu-wind/package.py index f60fd8ddbf..7d77c431d1 100644 --- a/var/spack/repos/builtin/packages/nalu-wind/package.py +++ b/var/spack/repos/builtin/packages/nalu-wind/package.py @@ -52,9 +52,7 @@ class NaluWind(CMakePackage, CudaPackage): depends_on("mpi") depends_on("yaml-cpp@0.5.3:") depends_on( - "trilinos@13:" - "+exodus+tpetra+zoltan+stk+boost" - "~superlu-dist~superlu+hdf5+shards~hypre+gtest" + "trilinos@13:+exodus+tpetra+zoltan+stk~superlu-dist~superlu+hdf5+shards~hypre+gtest" ) depends_on("trilinos~cuda~wrapper", when="~cuda") # Cannot build Trilinos as a shared library with STK on Darwin diff --git a/var/spack/repos/builtin/packages/trilinos/package.py b/var/spack/repos/builtin/packages/trilinos/package.py index 12d44872b8..ee016318b6 100644 --- a/var/spack/repos/builtin/packages/trilinos/package.py +++ b/var/spack/repos/builtin/packages/trilinos/package.py @@ -328,12 +328,6 @@ class Trilinos(CMakePackage, CudaPackage, ROCmPackage): # see https://trilinos.org/pipermail/trilinos-users/2015-March/004731.html # and https://trilinos.org/pipermail/trilinos-users/2015-March/004802.html conflicts("+superlu-dist", when="+complex+amesos2") - # https://github.com/trilinos/Trilinos/issues/2994 - conflicts( - "+shared", - when="+stk platform=darwin", - msg="Cannot build Trilinos with STK as a shared library on Darwin.", - ) conflicts("+adios2", when="@:12.14.1") conflicts("cxxstd=11", when="@13.2:") conflicts("cxxstd=14", when="@14:") @@ -406,10 +400,7 @@ class Trilinos(CMakePackage, CudaPackage, ROCmPackage): depends_on("binder@1.3:", when="@15: +python", type="build") depends_on("blas") depends_on("boost+graph+math+exception+stacktrace", when="+boost") - # Need to revisit the requirement of STK - depends_on("boost+graph+math+exception+stacktrace", when="+stk") - - # + depends_on("boost+graph+math+exception+stacktrace", when="@:14.0.0 +stk") depends_on("cgns", when="+exodus") depends_on("cmake@3.23:", type="build", when="@14.0.0:") depends_on("hdf5+hl", when="+hdf5") |