Skip to content
Snippets Groups Projects
Commit a3fc492d authored by Massimiliano Culpo's avatar Massimiliano Culpo Committed by Todd Gamblin
Browse files

diy : removed global write lock on the db

parent 74fb1029
No related branches found
No related tags found
No related merge requests found
...@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment