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
fcfe2618
Commit
fcfe2618
authored
8 years ago
by
Michael Kuhn
Browse files
Options
Downloads
Patches
Plain Diff
Improve shell integration.
Enable sh emulation for Zsh and allow loading modules recursively.
parent
27aa265a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
share/spack/setup-env.sh
+20
-8
20 additions, 8 deletions
share/spack/setup-env.sh
with
20 additions
and
8 deletions
share/spack/setup-env.sh
+
20
−
8
View file @
fcfe2618
...
@@ -57,6 +57,11 @@
...
@@ -57,6 +57,11 @@
########################################################################
########################################################################
function
spack
{
function
spack
{
# Zsh does not do word splitting by default, this enables it for this function only
if
[
-n
"
$ZSH_VERSION
"
]
;
then
emulate
-L
sh
fi
# save raw arguments into an array before butchering them
# save raw arguments into an array before butchering them
args
=(
"
$@
"
)
args
=(
"
$@
"
)
...
@@ -93,11 +98,18 @@ function spack {
...
@@ -93,11 +98,18 @@ function spack {
;;
;;
"use"
|
"unuse"
|
"load"
|
"unload"
)
"use"
|
"unuse"
|
"load"
|
"unload"
)
# Shift any other args for use off before parsing spec.
# Shift any other args for use off before parsing spec.
_sp_subcommand_args
=
""
_sp_module_args
=
""
_sp_module_args
=
""
if
[[
"
$1
"
=
~ ^-
]]
;
then
while
[[
"
$1
"
=
~ ^-
]]
;
do
_sp_module_args
=
"
$1
"
;
shift
if
[
"
$1
"
=
"-r"
]
;
then
_sp_spec
=
"
$@
"
_sp_subcommand_args
=
"
$_sp_subcommand_args
$1
"
fi
else
_sp_module_args
=
"
$_sp_module_args
$1
"
fi
shift
done
_sp_spec
=
"
$@
"
# Here the user has run use or unuse with a spec. Find a matching
# Here the user has run use or unuse with a spec. Find a matching
# spec using 'spack module find', then use the appropriate module
# spec using 'spack module find', then use the appropriate module
...
@@ -105,19 +117,19 @@ function spack {
...
@@ -105,19 +117,19 @@ function spack {
# If spack module command comes back with an error, do nothing.
# If spack module command comes back with an error, do nothing.
case
$_sp_subcommand
in
case
$_sp_subcommand
in
"use"
)
"use"
)
if
_sp_full_spec
=
$(
command
spack
$_sp_flags
module find dotkit
$_sp_spec
)
;
then
if
_sp_full_spec
=
$(
command
spack
$_sp_flags
module find
$_sp_subcommand_args
dotkit
$_sp_spec
)
;
then
use
$_sp_module_args
$_sp_full_spec
use
$_sp_module_args
$_sp_full_spec
fi
;;
fi
;;
"unuse"
)
"unuse"
)
if
_sp_full_spec
=
$(
command
spack
$_sp_flags
module find dotkit
$_sp_spec
)
;
then
if
_sp_full_spec
=
$(
command
spack
$_sp_flags
module find
$_sp_subcommand_args
dotkit
$_sp_spec
)
;
then
unuse
$_sp_module_args
$_sp_full_spec
unuse
$_sp_module_args
$_sp_full_spec
fi
;;
fi
;;
"load"
)
"load"
)
if
_sp_full_spec
=
$(
command
spack
$_sp_flags
module find tcl
$_sp_spec
)
;
then
if
_sp_full_spec
=
$(
command
spack
$_sp_flags
module find
$_sp_subcommand_args
tcl
$_sp_spec
)
;
then
module load
$_sp_module_args
$_sp_full_spec
module load
$_sp_module_args
$_sp_full_spec
fi
;;
fi
;;
"unload"
)
"unload"
)
if
_sp_full_spec
=
$(
command
spack
$_sp_flags
module find tcl
$_sp_spec
)
;
then
if
_sp_full_spec
=
$(
command
spack
$_sp_flags
module find
$_sp_subcommand_args
tcl
$_sp_spec
)
;
then
module unload
$_sp_module_args
$_sp_full_spec
module unload
$_sp_module_args
$_sp_full_spec
fi
;;
fi
;;
esac
esac
...
...
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