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
5a3803de
Commit
5a3803de
authored
10 years ago
by
Todd Gamblin
Browse files
Options
Downloads
Patches
Plain Diff
Add options to stage to make it just print out stage dir.
parent
0740c576
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/spack/spack/cmd/stage.py
+36
-6
36 additions, 6 deletions
lib/spack/spack/cmd/stage.py
with
36 additions
and
6 deletions
lib/spack/spack/cmd/stage.py
+
36
−
6
View file @
5a3803de
...
...
@@ -23,6 +23,9 @@
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
import
argparse
import
os
import
llnl.util.tty
as
tty
import
spack
import
spack.cmd
...
...
@@ -33,18 +36,45 @@ def setup_parser(subparser):
subparser
.
add_argument
(
'
-n
'
,
'
--no-checksum
'
,
action
=
'
store_true
'
,
dest
=
'
no_checksum
'
,
help
=
"
Do not check downloaded packages against checksum
"
)
dir_parser
=
subparser
.
add_mutually_exclusive_group
()
dir_parser
.
add_argument
(
'
-d
'
,
'
--stage-dir
'
,
action
=
'
store_const
'
,
dest
=
'
print_dir
'
,
const
=
'
stage
'
,
help
=
"
Prints out the stage directory for a spec.
"
)
dir_parser
.
add_argument
(
'
-b
'
,
'
--build-dir
'
,
action
=
'
store_const
'
,
dest
=
'
print_dir
'
,
const
=
'
build
'
,
help
=
"
Prints out the expanded archive path for a spec.
"
)
subparser
.
add_argument
(
'
package
s
'
,
nargs
=
argparse
.
REMAINDER
,
help
=
"
specs of packages to stage
"
)
'
spec
s
'
,
nargs
=
argparse
.
REMAINDER
,
help
=
"
specs of packages to stage
"
)
def
stage
(
parser
,
args
):
if
not
args
.
package
s
:
if
not
args
.
spec
s
:
tty
.
die
(
"
stage requires at least one package argument
"
)
if
args
.
no_checksum
:
spack
.
do_checksum
=
False
specs
=
spack
.
cmd
.
parse_specs
(
args
.
packages
,
concretize
=
True
)
for
spec
in
specs
:
package
=
spack
.
db
.
get
(
spec
)
package
.
do_stage
()
specs
=
spack
.
cmd
.
parse_specs
(
args
.
specs
,
concretize
=
True
)
if
args
.
print_dir
:
if
len
(
specs
)
!=
1
:
tty
.
die
(
"
--stage-dir and --build-dir options only take one spec.
"
)
spec
=
specs
[
0
]
pkg
=
spack
.
db
.
get
(
spec
)
if
args
.
print_dir
==
'
stage
'
:
print
pkg
.
stage
.
path
elif
args
.
print_dir
==
'
build
'
:
if
not
os
.
listdir
(
pkg
.
stage
.
path
):
tty
.
die
(
"
Stage directory is empty. Run this first:
"
,
"
spack stage
"
+
"
"
.
join
(
args
.
specs
))
print
pkg
.
stage
.
expanded_archive_path
else
:
for
spec
in
specs
:
package
=
spack
.
db
.
get
(
spec
)
package
.
do_stage
()
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