diff options
author | Jungwon Kim <iarapre@gmail.com> | 2020-10-27 10:53:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 09:53:22 -0500 |
commit | 64974c43c7ec1912028b7e86c7dab63e60441839 (patch) | |
tree | 07bb3980c49b649a633f8b1b45041d87e9cb9d1a | |
parent | e214deec5b9a0fa6c2521229b99606fb5862ba97 (diff) | |
download | spack-64974c43c7ec1912028b7e86c7dab63e60441839.tar.gz spack-64974c43c7ec1912028b7e86c7dab63e60441839.tar.bz2 spack-64974c43c7ec1912028b7e86c7dab63e60441839.tar.xz spack-64974c43c7ec1912028b7e86c7dab63e60441839.zip |
added -lpthread flag in kv/tests/CMakeLists.txt (#19533)
* added -lpthread flag in kv/tests/CMakeLists.txt
* Update var/spack/repos/builtin/packages/papyrus/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-rw-r--r-- | var/spack/repos/builtin/packages/papyrus/package.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/papyrus/package.py b/var/spack/repos/builtin/packages/papyrus/package.py index a0e51c9f5f..bb13155510 100644 --- a/var/spack/repos/builtin/packages/papyrus/package.py +++ b/var/spack/repos/builtin/packages/papyrus/package.py @@ -10,10 +10,11 @@ class Papyrus(CMakePackage): """Parallel Aggregate Persistent Storage""" homepage = "https://code.ornl.gov/eck/papyrus" - url = "https://code.ornl.gov/eck/papyrus/repository/archive.tar.bz2?ref=v1.0.0" + url = "https://code.ornl.gov/eck/papyrus/repository/archive.tar.bz2?ref=v1.0.1" git = "https://code.ornl.gov/eck/papyrus.git" - version('develop', branch='master') + version('master', branch='master') + version('1.0.1', sha256='3772fd6f2c301faf78f18c5e4dc3dbac57eb361861b091579609b3fff9e0bb17') version('1.0.0', sha256='5d57c0bcc80de48951e42460785783b882087a5714195599d773a6eabde5c4c4') depends_on('mpi') |