![]() The hashes are preserved so they are available in git reflog if needed * bd8bdb82ae - (HEAD -> features/spliced-install, nhanford/features/spliced-install) mark test xfail on windows (10 months ago) <Gregory Becker> * 800451a4a7 - bugfix: data sharing issue between spliced spec and build_spec (10 months ago) <Gregory Becker> * cf5f0c8539 - original concretizer: apply splice config (10 months ago) <Gregory Becker> * dce49c199a - update grep test for new splice mock package (10 months ago) <Gregory Becker> * 22bfeb5978 - update command completion (10 months ago) <Gregory Becker> * 84049edbc4 - style (10 months ago) <Gregory Becker> * a4afe8a13c - bugfix: checking virtuals for splices across names (10 months ago) <Gregory Becker> * 6d757f3d41 - doing spackbot's job for it (10 months ago) <Gregory Becker> * 87c210db26 - fix config mutability bug in splice test (10 months ago) <Gregory Becker> * d84b50cb46 - update test for error wording change (10 months ago) <Gregory Becker> * 3f13dc8975 - fixup after rebase (10 months ago) <Gregory Becker> * b734f47b13 - fix failure tracker for rebase (10 months ago) <Gregory Becker> * d84f6c3c7a - catch broader exception to catch tty.die SystemExit (10 months ago) <Gregory Becker> * 200b7a78a5 - fixup rebase issues (10 months ago) <Gregory Becker> * 65971cd9c3 - debug failing workflow (10 months ago) <Gregory Becker> * ca23acc2fc - docs arguments typo (10 months ago) <Gregory Becker> * c8cfd9143f - bugfix node keys for spliced specs (10 months ago) <Gregory Becker> * e57758b15b - fix style (10 months ago) <Gregory Becker> * 5d63a0b886 - update type hints and docs BuiltTask -> Task (10 months ago) <Gregory Becker> * 5f373b813c - undo reorder classes to make rebase easier after rebase (10 months ago) <Gregory Becker> * e851b6ed6b - fix rewire for virtual splices across names (10 months ago) <Gregory Becker> * 839c1a5ba7 - fix environment reading/writing for build_spec entries (10 months ago) <Gregory Becker> * ae601740d1 - hack it together to work for right now (10 months ago) <Gregory Becker> * a6bc44ff12 - test rewire task and fix bugs (10 months ago) <Gregory Becker> * 79f895900d - move fixtures from bindist to conftest and rename (10 months ago) <Gregory Becker> * 398456d3cc - move splice config to separate section (10 months ago) <Gregory Becker> * 13df264fd1 - checkpointing RewireTask changes (10 months ago) <Nathan Hanford> * 5cb808c2ec - test for explicit_splices; fix bug in build_spec for splices across virtual names (10 months ago) <Gregory Becker> * 019f7600b4 - execute splices from config (10 months ago) <Gregory Becker> * 6d6b541e9c - move splice configs into concretizer section (10 months ago) <Gregory Becker> * 06f90a14ea - config schema: add splice section (10 months ago) <Gregory Becker> * 38e372f0bf - checkpointing tests (10 months ago) <Nathan Hanford> * 193ca7806f - initial implementation allowing relocate_package to do rewiring tasks (10 months ago) <Gregory Becker> * 6fb67d1063 - finish debug session with nhanford (10 months ago) <Gregory Becker> * f201155a4a - checkpointing rewiring (10 months ago) <Nathan Hanford> * 1e33b40573 - test modifications (10 months ago) <Nathan Hanford> * 7b5aaf8fa7 - need dependents for install (10 months ago) <Nathan Hanford> * 8d2df89e8e - refactor passes tests (10 months ago) <Nathan Hanford> * d918a654d7 - checkpoint refactor to rebase and test (10 months ago) <Nathan Hanford> * 61d805cfd8 - non-working initial refactor checkpoint (10 months ago) <Nathan Hanford> * fc0a6431be - reorder classes to make rebase easier (10 months ago) <Gregory Becker> Co-authored-by: Nathan Hanford <hanford1@llnl.gov> |
||
---|---|---|
.devcontainer | ||
.github | ||
bin | ||
etc/spack/defaults | ||
lib/spack | ||
share/spack | ||
var/spack | ||
.codecov.yml | ||
.dockerignore | ||
.flake8 | ||
.git-blame-ignore-revs | ||
.gitattributes | ||
.gitignore | ||
.mailmap | ||
.readthedocs.yml | ||
CHANGELOG.md | ||
CITATION.cff | ||
COPYRIGHT | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
NOTICE | ||
pyproject.toml | ||
pytest.ini | ||
README.md | ||
SECURITY.md |
Spack is a multi-platform package manager that builds and installs multiple versions and configurations of software. It works on Linux, macOS, Windows, and many supercomputers. Spack is non-destructive: installing a new version of a package does not break existing installations, so many configurations of the same package can coexist.
Spack offers a simple "spec" syntax that allows users to specify versions and configuration options. Package files are written in pure Python, and specs allow package authors to write a single script for many different builds of the same package. With Spack, you can build your software all the ways you want to.
See the Feature Overview for examples and highlights.
To install spack and your first package, make sure you have Python. Then:
$ git clone -c feature.manyFiles=true https://github.com/spack/spack.git
$ cd spack/bin
$ ./spack install zlib
Documentation
Full documentation is available, or
run spack help
or spack help --all
.
For a cheat sheet on Spack syntax, run spack help --spec
.
Tutorial
We maintain a hands-on tutorial. It covers basic to advanced usage, packaging, developer features, and large HPC deployments. You can do all of the exercises on your own laptop using a Docker container.
Feel free to use these materials to teach users at your organization about Spack.
Community
Spack is an open source project. Questions, discussion, and contributions are welcome. Contributions can be anything from new packages to bugfixes, documentation, or even new core features.
Resources:
- Slack workspace: spackpm.slack.com. To get an invitation, visit slack.spack.io.
- Matrix space: #spack-space:matrix.org: bridged to Slack.
- Github Discussions: for Q&A and discussions. Note the pinned discussions for announcements.
- X: @spackpm. Be sure to
@mention
us! - Mailing list: groups.google.com/d/forum/spack: only for announcements. Please use other venues for discussions.
Contributing
Contributing to Spack is relatively easy. Just send us a
pull request.
When you send your request, make develop
the destination branch on the
Spack repository.
Your PR must pass Spack's unit tests and documentation tests, and must be PEP 8 compliant. We enforce these guidelines with our CI process. To run these tests locally, and for helpful tips on git, see our Contribution Guide.
Spack's develop
branch has the latest contributions. Pull requests
should target develop
, and users who want the latest package versions,
features, etc. can use develop
.
Releases
For multi-user site deployments or other use cases that need very stable software installations, we recommend using Spack's stable releases.
Each Spack release series also has a corresponding branch, e.g.
releases/v0.14
has 0.14.x
versions of Spack, and releases/v0.13
has
0.13.x
versions. We backport important bug fixes to these branches but
we do not advance the package versions or make other changes that would
change the way Spack concretizes dependencies within a release branch.
So, you can base your Spack deployment on a release branch and git pull
to get fixes, without the package churn that comes with develop
.
The latest release is always available with the releases/latest
tag.
See the docs on releases for more details.
Code of Conduct
Please note that Spack has a Code of Conduct. By participating in the Spack community, you agree to abide by its rules.
Authors
Many thanks go to Spack's contributors.
Spack was created by Todd Gamblin, tgamblin@llnl.gov.
Citing Spack
If you are referencing Spack in a publication, please cite the following paper:
- Todd Gamblin, Matthew P. LeGendre, Michael R. Collette, Gregory L. Lee, Adam Moody, Bronis R. de Supinski, and W. Scott Futral. The Spack Package Manager: Bringing Order to HPC Software Chaos. In Supercomputing 2015 (SC’15), Austin, Texas, November 15-20 2015. LLNL-CONF-669890.
On GitHub, you can copy this citation in APA or BibTeX format via the "Cite this repository"
button. Or, see the comments in CITATION.cff
for the raw BibTeX.
License
Spack is distributed under the terms of both the MIT license and the Apache License (Version 2.0). Users may choose either license, at their option.
All new contributions must be made under both the MIT and Apache-2.0 licenses.
See LICENSE-MIT, LICENSE-APACHE, COPYRIGHT, and NOTICE for details.
SPDX-License-Identifier: (Apache-2.0 OR MIT)
LLNL-CODE-811652