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
a3fc492d
Commit
a3fc492d
authored
8 years ago
by
Massimiliano Culpo
Committed by
Todd Gamblin
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
diy : removed global write lock on the db
parent
74fb1029
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
lib/spack/spack/cmd/diy.py
+31
-34
31 additions, 34 deletions
lib/spack/spack/cmd/diy.py
with
31 additions
and
34 deletions
lib/spack/spack/cmd/diy.py
+
31
−
34
View file @
a3fc492d
...
@@ -65,43 +65,40 @@ def diy(self, args):
...
@@ -65,43 +65,40 @@ def diy(self, args):
if
len
(
specs
)
>
1
:
if
len
(
specs
)
>
1
:
tty
.
die
(
"
spack diy only takes one spec.
"
)
tty
.
die
(
"
spack diy only takes one spec.
"
)
# Take a write lock before checking for existence.
spec
=
specs
[
0
]
with
spack
.
installed_db
.
write_transaction
():
if
not
spack
.
repo
.
exists
(
spec
.
name
):
spec
=
specs
[
0
]
tty
.
warn
(
"
No such package: %s
"
%
spec
.
name
)
if
not
spack
.
repo
.
exists
(
spec
.
name
):
create
=
tty
.
get_yes_or_no
(
"
Create this package?
"
,
default
=
False
)
tty
.
warn
(
"
No such package: %s
"
%
spec
.
name
)
if
not
create
:
create
=
tty
.
get_yes_or_no
(
"
Create this package?
"
,
default
=
False
)
tty
.
msg
(
"
Exiting without creating.
"
)
if
not
create
:
sys
.
exit
(
1
)
tty
.
msg
(
"
Exiting without creating.
"
)
else
:
sys
.
exit
(
1
)
tty
.
msg
(
"
Running
'
spack edit -f %s
'"
%
spec
.
name
)
else
:
edit_package
(
spec
.
name
,
spack
.
repo
.
first_repo
(),
None
,
True
)
tty
.
msg
(
"
Running
'
spack edit -f %s
'"
%
spec
.
name
)
return
edit_package
(
spec
.
name
,
spack
.
repo
.
first_repo
(),
None
,
True
)
return
if
not
spec
.
versions
.
concrete
:
if
not
spec
.
versions
.
concrete
:
tty
.
die
(
tty
.
die
(
"
spack diy spec must have a single, concrete version.
"
"
spack diy spec must have a single, concrete version.
"
"
Did you forget a package version number?
"
)
"
Did you forget a package version number?
"
)
spec
.
concretize
()
spec
.
concretize
()
package
=
spack
.
repo
.
get
(
spec
)
package
=
spack
.
repo
.
get
(
spec
)
if
package
.
installed
:
if
package
.
installed
:
tty
.
error
(
"
Already installed in %s
"
%
package
.
prefix
)
tty
.
error
(
"
Already installed in %s
"
%
package
.
prefix
)
tty
.
msg
(
"
Uninstall or try adding a version suffix for this
"
tty
.
msg
(
"
Uninstall or try adding a version suffix for this DIY build.
"
)
"
DIY build.
"
)
sys
.
exit
(
1
)
sys
.
exit
(
1
)
# Forces the build to run out of the current directory.
# Forces the build to run out of the current directory.
package
.
stage
=
DIYStage
(
os
.
getcwd
())
package
.
stage
=
DIYStage
(
os
.
getcwd
())
# TODO: make this an argument, not a global.
# TODO: make this an argument, not a global.
spack
.
do_checksum
=
False
spack
.
do_checksum
=
False
package
.
do_install
(
package
.
do_install
(
keep_prefix
=
args
.
keep_prefix
,
keep_prefix
=
args
.
keep_prefix
,
install_deps
=
not
args
.
ignore_deps
,
install_deps
=
not
args
.
ignore_deps
,
verbose
=
not
args
.
quiet
,
verbose
=
not
args
.
quiet
,
keep_stage
=
True
,
# don't remove source dir for DIY.
keep_stage
=
True
,
# don't remove source dir for DIY.
dirty
=
args
.
dirty
)
dirty
=
args
.
dirty
)
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