summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCameron Stanavige <stanavige1@llnl.gov>2019-08-20 09:13:22 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2019-08-20 11:13:22 -0500
commit11c0a7882d366a8d2dd24c04260fdd9672794a5f (patch)
tree31a812c2b17bb726374ad6ba3431573ae024366c
parent7737d623b02dc2ce112114632830f2a9609777b9 (diff)
downloadspack-11c0a7882d366a8d2dd24c04260fdd9672794a5f.tar.gz
spack-11c0a7882d366a8d2dd24c04260fdd9672794a5f.tar.bz2
spack-11c0a7882d366a8d2dd24c04260fdd9672794a5f.tar.xz
spack-11c0a7882d366a8d2dd24c04260fdd9672794a5f.zip
UnifyFS: new package - rename from UnifyCR (#12439)
UnifyCR has been renamed to UnifyFS. Renaming the Spack package is the last step in this process. This renames the package and changes any UnifyCRs to UnifyFS within the package.
-rw-r--r--var/spack/repos/builtin/packages/unifyfs/package.py (renamed from var/spack/repos/builtin/packages/unifycr/package.py)20
1 files changed, 10 insertions, 10 deletions
diff --git a/var/spack/repos/builtin/packages/unifycr/package.py b/var/spack/repos/builtin/packages/unifyfs/package.py
index 6945f66c81..e3011408c1 100644
--- a/var/spack/repos/builtin/packages/unifycr/package.py
+++ b/var/spack/repos/builtin/packages/unifyfs/package.py
@@ -5,18 +5,18 @@
from spack import *
-class Unifycr(AutotoolsPackage):
+class Unifyfs(AutotoolsPackage):
"""User level file system that enables applications to use node-local
storage as burst buffers for shared files. Supports scalable and efficient
aggregation of I/O bandwidth from burst buffers while having the same life
cycle as a batch-submitted job.
- UnifyCR is designed to support common I/O workloads, including
- checkpoint/restart. While primarily designed for N-N write/read, UnifyCR
+ UnifyFS is designed to support common I/O workloads, including
+ checkpoint/restart. While primarily designed for N-N write/read, UnifyFS
compliments its functionality with the support for N-1 write/read."""
- homepage = "https://github.com/LLNL/UnifyCR"
- git = "https://github.com/LLNL/UnifyCR.git"
- url = "https://github.com/LLNL/UnifyCR/releases/download/v0.2.0/unifycr-0.2.0.tar.gz"
+ homepage = "https://github.com/LLNL/UnifyFS"
+ git = "https://github.com/LLNL/UnifyFS.git"
+ url = "https://github.com/LLNL/UnifyFS/releases/download/v0.2.0/unifycr-0.2.0.tar.gz"
maintainers = ['CamStan']
version('develop', branch='dev', preferred=True)
@@ -37,8 +37,8 @@ class Unifycr(AutotoolsPackage):
# Required dependencies
depends_on('flatcc')
- # Latest version of GOTCHA has API changes that break UnifyCR.
- # Updates to UnifyCR are coming in order to fix this.
+ # Latest version of GOTCHA has API changes that break UnifyFS.
+ # Updates to UnifyFS are coming in order to fix this.
depends_on('gotcha@0.0.2')
depends_on('leveldb')
depends_on('margo')
@@ -51,7 +51,7 @@ class Unifycr(AutotoolsPackage):
conflicts('^mercury~bmi')
conflicts('^mercury~sm')
- # UnifyCR depends on numactl, which doesn't currently build on darwin.
+ # UnifyFS depends on numactl, which doesn't currently build on darwin.
conflicts('platform=darwin', when='+numa')
# Known compatibility issues with ifort and xlf. Fixes coming.
conflicts('%intel', when='+fortran')
@@ -77,7 +77,7 @@ class Unifycr(AutotoolsPackage):
spec = self.spec
args = []
- # UnifyCR's configure requires the exact path for HDF5
+ # UnifyFS's configure requires the exact path for HDF5
def hdf5_compiler_path(name):
if '~mpi' in spec[name]: # serial HDF5
return spec[name].prefix.bin.h5cc