Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
66b8b5ab
Unverified
Commit
66b8b5ab
authored
4 years ago
by
Jordan Ogas
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add charliecloud 0.16 (#16810)
* add charliecloud/0.16 * tidy comments
parent
2fdb6b5e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
var/spack/repos/builtin/packages/charliecloud/package.py
+7
-5
7 additions, 5 deletions
var/spack/repos/builtin/packages/charliecloud/package.py
with
7 additions
and
5 deletions
var/spack/repos/builtin/packages/charliecloud/package.py
+
7
−
5
View file @
66b8b5ab
...
@@ -9,12 +9,13 @@
...
@@ -9,12 +9,13 @@
class
Charliecloud
(
AutotoolsPackage
):
class
Charliecloud
(
AutotoolsPackage
):
"""
Lightweight user-defined software stacks for HPC.
"""
"""
Lightweight user-defined software stacks for HPC.
"""
maintainers
=
[
'
j-ogas
'
]
maintainers
=
[
'
j-ogas
'
,
'
reidpr
'
]
homepage
=
"
https://hpc.github.io/charliecloud
"
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.14/charliecloud-0.14.tar.gz
"
git
=
"
https://github.com/hpc/charliecloud.git
"
git
=
"
https://github.com/hpc/charliecloud.git
"
version
(
'
master
'
,
branch
=
'
master
'
)
version
(
'
master
'
,
branch
=
'
master
'
)
version
(
'
0.16
'
,
sha256
=
'
6cdc21d414b6173090ac0a4c2c62a2a038c81659a75ae8f837b332bb7e6e9090
'
)
version
(
'
0.15
'
,
sha256
=
'
2163420d43c934151c4f44a188313bdb7f79e576d5a86ba64b9ea45f784b9921
'
)
version
(
'
0.15
'
,
sha256
=
'
2163420d43c934151c4f44a188313bdb7f79e576d5a86ba64b9ea45f784b9921
'
)
version
(
'
0.14
'
,
sha256
=
'
4ae23c2d6442949e16902f9d5604dbd1d6059aeb5dd461b11fc5c74d49dcb194
'
)
version
(
'
0.14
'
,
sha256
=
'
4ae23c2d6442949e16902f9d5604dbd1d6059aeb5dd461b11fc5c74d49dcb194
'
)
version
(
'
0.13
'
,
sha256
=
'
5740bff6e410ca99484c1bdf3dbe834c0f753c846d55c19d6162967a3e2718e0
'
)
version
(
'
0.13
'
,
sha256
=
'
5740bff6e410ca99484c1bdf3dbe834c0f753c846d55c19d6162967a3e2718e0
'
)
...
@@ -24,25 +25,26 @@ class Charliecloud(AutotoolsPackage):
...
@@ -24,25 +25,26 @@ class Charliecloud(AutotoolsPackage):
depends_on
(
'
automake
'
,
type
=
'
build
'
)
depends_on
(
'
automake
'
,
type
=
'
build
'
)
depends_on
(
'
libtool
'
,
type
=
'
build
'
)
depends_on
(
'
libtool
'
,
type
=
'
build
'
)
# Use skopeo and umoci for older ch-grow version dependencies
# Use skopeo and umoci for older ch-grow version dependencies
.
depends_on
(
'
skopeo
'
,
type
=
'
run
'
,
when
=
'
@0.10:0.13
'
)
depends_on
(
'
skopeo
'
,
type
=
'
run
'
,
when
=
'
@0.10:0.13
'
)
depends_on
(
'
umoci
'
,
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
'
)
depends_on
(
'
python+libxml2
'
,
type
=
'
run
'
,
when
=
'
@0.10:0.13
'
)
#
Charliecloud@0.14 and up use python for building
#
Use python for ch-grow 0.14 and above version dependencies.
depends_on
(
'
python@3.5:
'
,
type
=
'
run
'
,
when
=
'
@0.14:
'
)
depends_on
(
'
python@3.5:
'
,
type
=
'
run
'
,
when
=
'
@0.14:
'
)
depends_on
(
'
py-lark-parser
'
,
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
(
'
py-requests
'
,
type
=
'
run
'
,
when
=
'
@0.14:
'
)
#
m
an pages and html docs variant
#
M
an pages and html docs variant
.
variant
(
'
docs
'
,
default
=
False
,
description
=
'
Build man pages and html docs
'
)
variant
(
'
docs
'
,
default
=
False
,
description
=
'
Build man pages and html docs
'
)
depends_on
(
'
rsync
'
,
type
=
'
build
'
,
when
=
'
+docs
'
)
depends_on
(
'
rsync
'
,
type
=
'
build
'
,
when
=
'
+docs
'
)
depends_on
(
'
py-sphinx
'
,
type
=
'
build
'
,
when
=
'
+docs
'
)
depends_on
(
'
py-sphinx
'
,
type
=
'
build
'
,
when
=
'
+docs
'
)
depends_on
(
'
py-sphinx-rtd-theme
'
,
type
=
'
build
'
,
when
=
'
+docs
'
)
depends_on
(
'
py-sphinx-rtd-theme
'
,
type
=
'
build
'
,
when
=
'
+docs
'
)
# See https://github.com/spack/spack/pull/16049.
conflicts
(
'
platform=darwin
'
,
msg
=
'
This package does not build on macOS
'
)
conflicts
(
'
platform=darwin
'
,
msg
=
'
This package does not build on macOS
'
)
#
b
ash automated testing harness (bats)
#
B
ash automated testing harness (bats)
.
depends_on
(
'
bats@0.4.0
'
,
type
=
'
test
'
)
depends_on
(
'
bats@0.4.0
'
,
type
=
'
test
'
)
depends_on
(
'
python@3.5:
'
,
type
=
'
test
'
)
depends_on
(
'
python@3.5:
'
,
type
=
'
test
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment