
This PR fixes the performance regression reported in #31985 and a few other issues found while refactoring the spack mirror create command. Modifications: * (Primary) Do not require concretization for `spack mirror create --all` * Forbid using --versions-per-spec together with --all * Fixed a few issues when reading specs from input file (specs were not concretized, command would fail when trying to mirror dependencies) * Fix issue with default directory for spack mirror create not being canonicalized * Add more unit tests to poke spack mirror create * Skip externals also when mirroring environments * Changed slightly the wording for reporting (it was mentioning "Successfully created" even in presence of errors) * Fix issue with colify (was not called properly during error reporting)
22 lines
636 B
Python
22 lines
636 B
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class RktZoLib(RacketPackage):
|
|
"""Libraries for handling zo files."""
|
|
|
|
git = "ssh://git@github.com/racket/racket.git"
|
|
|
|
maintainers = ["elfprince13"]
|
|
|
|
version("1.3", commit="cab83438422bfea0e4bd74bc3e8305e6517cf25f") # tag='v1.3'
|
|
depends_on("rkt-base@8.3:", type=("build", "run"), when="@1.3")
|
|
|
|
racket_name = "zo-lib"
|
|
pkgs = True
|
|
subdirectory = "pkgs/{0}".format(racket_name)
|