summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrus Harrison <cyrush@llnl.gov>2021-12-24 05:46:56 -0800
committerGitHub <noreply@github.com>2021-12-24 14:46:56 +0100
commit0863148c4f6dd7712a59600ec94e2ef0d22752c9 (patch)
tree043ed273eec87a96b588991b8a269e42f5b540e5
parentd098f92c4a8bbcfffba69dacb711e936c732fe6f (diff)
downloadspack-0863148c4f6dd7712a59600ec94e2ef0d22752c9.tar.gz
spack-0863148c4f6dd7712a59600ec94e2ef0d22752c9.tar.bz2
spack-0863148c4f6dd7712a59600ec94e2ef0d22752c9.tar.xz
spack-0863148c4f6dd7712a59600ec94e2ef0d22752c9.zip
conduit: add v0.8.0 release and change def for parmetis var (#28102)
-rw-r--r--var/spack/repos/builtin/packages/ascent/package.py1
-rw-r--r--var/spack/repos/builtin/packages/conduit/package.py3
2 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/ascent/package.py b/var/spack/repos/builtin/packages/ascent/package.py
index 98e1271c4f..c57f0e3d33 100644
--- a/var/spack/repos/builtin/packages/ascent/package.py
+++ b/var/spack/repos/builtin/packages/ascent/package.py
@@ -95,6 +95,7 @@ class Ascent(CMakePackage, CudaPackage):
# Certain CMake versions have been found to break for our use cases
depends_on("cmake@3.14.1:3.14,3.18.2:", type='build')
+ depends_on("conduit@:0.7.2", when="@:0.7.1")
depends_on("conduit~python", when="~python")
depends_on("conduit+python", when="+python")
depends_on("conduit+mpi", when="+mpi")
diff --git a/var/spack/repos/builtin/packages/conduit/package.py b/var/spack/repos/builtin/packages/conduit/package.py
index 9a01161f12..9132a8aef0 100644
--- a/var/spack/repos/builtin/packages/conduit/package.py
+++ b/var/spack/repos/builtin/packages/conduit/package.py
@@ -43,6 +43,7 @@ class Conduit(CMakePackage):
# is to bridge any spack dependencies that are still using the name master
version('master', branch='develop', submodules=True)
# note: 2021-05-05 latest tagged release is now preferred instead of develop
+ version('0.8.0', sha256='0607dcf9ced44f95e0b9549f5bbf7a332afd84597c52e293d7ca8d83117b5119')
version('0.7.2', sha256='359fd176297700cdaed2c63e3b72d236ff3feec21a655c7c8292033d21d5228a')
version('0.7.1', sha256='460a480cf08fedbf5b38f707f94f20828798327adadb077f80dbab048fd0a07d')
version('0.7.0', sha256='ecaa9668ebec5d4efad19b104d654a587c0adbd5f502128f89601408cb4d7d0c')
@@ -76,7 +77,7 @@ class Conduit(CMakePackage):
description="Build Conduit with HDF5 1.8.x (compatibility mode)")
variant("silo", default=False, description="Build Conduit Silo support")
variant("adios", default=False, description="Build Conduit ADIOS support")
- variant("parmetis", default=False, description="Build Conduit Parmetis support")
+ variant("parmetis", default=True, description="Build Conduit Parmetis support")
# zfp compression
variant("zfp", default=False, description="Build Conduit ZFP support")