summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Ogas <jogas@lanl.gov>2020-08-20 19:16:34 -0600
committerGitHub <noreply@github.com>2020-08-20 20:16:34 -0500
commit1666db60d0ac45f2ba10a36e71f8a03a1647f257 (patch)
tree14e31bbe01eb3485c04fc332db595fc2cb373a2a
parentfc3b4657ceaf548a10cecdab6db66534ebebf3ec (diff)
downloadspack-1666db60d0ac45f2ba10a36e71f8a03a1647f257.tar.gz
spack-1666db60d0ac45f2ba10a36e71f8a03a1647f257.tar.bz2
spack-1666db60d0ac45f2ba10a36e71f8a03a1647f257.tar.xz
spack-1666db60d0ac45f2ba10a36e71f8a03a1647f257.zip
charliecloud: add 0.18 (#18200)
* add 0.18, remove older versions * update url * fix typo
-rw-r--r--var/spack/repos/builtin/packages/charliecloud/package.py37
1 files changed, 9 insertions, 28 deletions
diff --git a/var/spack/repos/builtin/packages/charliecloud/package.py b/var/spack/repos/builtin/packages/charliecloud/package.py
index 17e76b21a4..7511461e77 100644
--- a/var/spack/repos/builtin/packages/charliecloud/package.py
+++ b/var/spack/repos/builtin/packages/charliecloud/package.py
@@ -11,30 +11,20 @@ class Charliecloud(AutotoolsPackage):
maintainers = ['j-ogas', 'reidpr']
homepage = "https://hpc.github.io/charliecloud"
- url = "https://github.com/hpc/charliecloud/releases/download/v0.14/charliecloud-0.14.tar.gz"
+ url = "https://github.com/hpc/charliecloud/releases/download/v0.18/charliecloud-0.18.tar.gz"
git = "https://github.com/hpc/charliecloud.git"
version('master', branch='master')
- version('0.17', sha256='9ccb34243e17cbb9c65e44fba66293ed65c39db0422c7d9bd6d1c314c3896723')
- version('0.16', sha256='6cdc21d414b6173090ac0a4c2c62a2a038c81659a75ae8f837b332bb7e6e9090')
- version('0.15', sha256='2163420d43c934151c4f44a188313bdb7f79e576d5a86ba64b9ea45f784b9921')
- version('0.14', sha256='4ae23c2d6442949e16902f9d5604dbd1d6059aeb5dd461b11fc5c74d49dcb194')
- version('0.13', sha256='5740bff6e410ca99484c1bdf3dbe834c0f753c846d55c19d6162967a3e2718e0')
+ version('0.18', sha256='15ce63353afe1fc6bcc10979496a54fcd5628f997cb13c827c9fc7afb795bdc5')
depends_on('m4', type='build')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
- # Use skopeo and umoci for older (unsupported) ch-grow versions.
- depends_on('skopeo', type='run', when='@0.10:0.13')
- depends_on('umoci', type='run', when='@0.10:0.13')
- depends_on('python+libxml2', type='run', when='@0.10:0.13')
-
- # Use python for ch-grow 0.14 and above version dependencies.
- depends_on('python@3.5:', type='run', when='@0.14:')
- depends_on('py-lark-parser', type='run', when='@0.14:')
- depends_on('py-requests', type='run', when='@0.14:')
+ depends_on('python@3.5:', type='run')
+ depends_on('py-lark-parser', type='run')
+ depends_on('py-requests', type='run')
# Man pages and html docs variant.
variant('docs', default=False, description='Build man pages and html docs')
@@ -47,27 +37,18 @@ class Charliecloud(AutotoolsPackage):
# Bash automated testing harness (bats).
depends_on('bats@0.4.0', type='test')
- depends_on('python@3.5:', type='test')
def configure_args(self):
args = []
py_path = self.spec['python'].command.path
-
- if (self.spec.satisfies('@0.13')):
- args.append('--with-python-shebang={0}'.format(py_path))
- else:
- args.append('--with-python={0}'.format(py_path))
+ args.append('--with-python={0}'.format(py_path))
if '+docs' in self.spec:
sphinx_bin = '{0}'.format(self.spec['py-sphinx'].prefix.bin)
- if (self.spec.satisfies('@0.13')):
- # 0.13 fails when we try to build it with html.
- args.append('--disable-html')
- else:
- args.append('--enable-html')
- args.append('--with-sphinx-build={0}'.format(sphinx_bin.join(
- 'sphinx-build')))
+ args.append('--enable-html')
+ args.append('--with-sphinx-build={0}'.format(sphinx_bin.join(
+ 'sphinx-build')))
else:
args.append('--disable-html')