fixes for ndzip and sperr (#33882)

* fixes for ndzip
* fix commits in spack
* new and fixed sperr release

Co-authored-by: Robert Underwood <runderwood@anl.gov>
This commit is contained in:
Robert Underwood 2022-11-17 17:25:48 -05:00 committed by GitHub
parent cdaac58488
commit 95e294b2e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -26,6 +26,8 @@ class Ndzip(CMakePackage, CudaPackage):
variant("cuda", description="build with cuda support", default=False)
variant("openmp", description="build with cuda support", default=False)
depends_on("boost+thread+program_options")
def cmake_args(self):
args = [
self.define_from_variant("NDZIP_WITH_CUDA", "cuda"),

View File

@ -11,10 +11,10 @@ class Sperr(CMakePackage):
perform either error-bounded or size-bounded data compression"""
homepage = "https://github.com/NCAR/SPERR"
url = "https://github.com/NCAR/SPERR/archive/refs/tags/v0.5.tar.gz"
git = homepage
version("2022.07.18", commit="640305d049db9e9651ebdd773e6936e2c028ff3a")
version("2022.05.26", commit="7894a5fe1b5ca5a4aaa952d1779dfc31fd741243")
version("0.5", sha256="20ad48c0e7599d3e5866e024d0c49648eb817f72ad5459f5468122cf14a97171")
depends_on("git", type="build")
depends_on("zstd", type=("build", "link"), when="+zstd")