- Dec 24, 2019
-
-
Todd Gamblin authored
`spack spec -I` queries the database for installation status and should use a read transaction around calls to `Spec.tree()`.
-
Todd Gamblin authored
Checks for deprecated specs were repeatedly taking out read locks on the database, which can be very slow. - [x] put a read transaction around the deprecation check
-
Todd Gamblin authored
`get_platform()` is pretty expensive and can be called many times in a spack invocation. - [x] memoize `get_platform()`
-
Sajid Ali authored
-
Peter Josef Scheibel authored
-
Peter Josef Scheibel authored
BundlePackages use a noop fetch strategy. The mirror logic was assuming that the fetcher had a resource to cach after performing a fetch. This adds a special check to skip caching if the stage is associated with a BundleFetchStrategy. Note that this should allow caching resources associated with BundlePackages.
-
Peter Josef Scheibel authored
When updating a mirror, Spack was re-retrieving all patches (since the fetch logic for patches is separate). This updates the patch logic to allow the mirror logic to avoid this.
-
Peter Josef Scheibel authored
Since cache_mirror does the fetch itself, it also needs to do the checksum itself if it wants to verify that the source stored in the mirror is valid. Note that this isn't strictly required because fetching (including from mirrors) always separately verifies the checksum.
-
Peter Josef Scheibel authored
The targets for the cosmetic paths in mirrrors were being calculated incorrectly as of fb3a3ba9: the symlinks used relative paths as targets, and the relative path was computed relative to the wrong directory.
-
Peter Josef Scheibel authored
When creating a cosmetic symlink for a resource in a mirror, remove it if it already exists. The symlink is removed in case the logic to create the symlink has changed.
-
Paul Ferrell authored
* Some packages (e.g. mpfr at the time of this patch) can have patches with the same name but different contents (which apply to different versions of the package). This appends part of the patch hash to the cache file name to avoid conflicts. * Some exceptions which occur during fetching are not a subclass of SpackError and therefore do not have a 'message' attribute. This updates the logic for mirroring a single spec (add_single_spec) to produce an appropriate error message in that case (where before it failed with an AttributeError) * In various circumstances, a mirror can contain the universal storage path but not a cosmetic symlink; in this case it would not generate a symlink. Now "spack mirror create" will create a symlink for any package that doesn't have one.
-
- Dec 05, 2019
-
-
Todd Gamblin authored
-
Peter Scheibel authored
`spack module loads` and `spack module find` previously failed if any upstream modules were missing. This prevented it from being used with upstreams (or, really, any spack instance) that blacklisted modules. This PR makes module finding is now more lenient (especially for blacklisted modules). - `spack module find` now does not report an error if the spec is blacklisted - instead, it prints a single warning if any modules will be omitted from the loads file - It comments the missing modules out of the loads file so the user can see what's missing - Debug messages are also printed so users can check this with `spack -d...` - also added tests for new functionality
- Dec 02, 2019
-
-
Massimiliano Culpo authored
* Add a transaction around repeated calls to `spec.prefix` in the activation process * cache the computation of home in the python package to speed up setting deps * ensure that module-scope variables are only set *once* per module
-
Todd Gamblin authored
`mirror_archive_path` was failing to account for the case where the fetched version isn't known to Spack. - [x] don't require the fetched version to be in `Package.versions` - [x] add regression test for mirror paths when package does not have a version
-
Adam J. Stewart authored
Fixes #13529 Fixes #13509
-
Greg Becker authored
-
Daryl W. Grunau authored
-
- Nov 17, 2019
-
-
Adam J. Stewart authored
-
- Nov 15, 2019
-
-
Greg Becker authored
* remove reference to `spack.store` in method definition Referencing `spack.store` in method definition will cache the `spack.config.config` singleton variable too early, before we have a chance to add command line and environment scopes.
-
Massimiliano Culpo authored
-
Greg Becker authored
Add a configuration option to suppress gpg warnings during binary package verification. This only suppresses warnings: a gpg failure will still fail the install. This allows users who have already explicitly trusted the gpg key they are using to avoid seeing repeated warnings that it is self-signed.
-
- Nov 14, 2019
-
-
Peter Scheibel authored
determine target relative to the link directory rather than the full link path (which includes the file name) (#13727)
-
Greg Becker authored
Binaries with relative RPATHS currently do not relocate strings hard-coded in binaries This PR extends the best-effort relocation of strings hard-coded in binaries to those whose RPATHs have been relativized.
-
- Nov 05, 2019
-
-
Todd Gamblin authored
If you do this in a spack environment: spack add hdf5+hl hdf5+hl will be the root added to the `spack.yaml` file, and you should really expect `hdf5+hl` to display as a root in the environment. - [x] Add decoration to roots so that you can see the details about what is required to build. - [x] Add a test.
-
Todd Gamblin authored
This fixes a regression introduced in #10792. `spack uninstall` in an environment would not match concrete query specs properly after the index hash of enviroments changed. - [x] Search by DAG hash for specs to remove instead of by build hash
-
Greg Becker authored
* environments: make shell modifications partially unconditional * flake * missing module name * add regression test * flake
-
Greg Becker authored
* Make relative binaries relocate text files properly * rb strings aren't valid in python 2 * move perl to new interface for setup_environment family methods
-
- Nov 04, 2019
-
-
Omar Padron authored
- [x] insert at beginning of list so fetch grabs local mirrors before remote resources - [x] update the S3FetchStrategy so that it throws a SpackError if the fetch fails. Before, it was throwing URLError, which was not being caught in stage.py. - [x] move error handling out of S3FetchStrategy and into web_util.read_from_url() - [x] pass string instead of URLError to SpackWebError
-
- Nov 03, 2019
-
-
Greg Becker authored
This changes Spack environments so that the YAML file associated with the environment is *only* written when necessary (i.e., if it is changed *by spack*). The lockfile is still written out as before. There is a larger question here of which part of Spack should be responsible for setting defaults in config files, and how we can get rid of empty lists and data structures currently cluttering files like `compilers.yaml`. But that probably requires a rework of the default-setting validator in `spack.config`, as well as the code that uses `spack.config`. This will at least help for `spack.yaml`.
-
- Nov 01, 2019
-
-
Todd Gamblin authored
-
Omar Padron authored
* fix issue where spack.util.url.join() failed to correctly handle absolute path components * add url util tests
-
Gregory L. Lee authored
This fixes a UnicodeDecodeError in the sbang patching function.
-
Massimiliano Culpo authored
-
Massimiliano Culpo authored
* Make package preferences a soft failure for targets, instead of a hard failure. * Added unit tests for preferences expressed via packages.yaml
-
Adam J. Stewart authored
* Travis CI: Test Python 3.8 * Fix use of deprecated cgi.escape method * Fix version comparison * Fix flake8 F811 change in Python 3.8 * Make flake8 happy * Use Python 3.8 for all test categories
-
Greg Becker authored
Currently, query arguments in the Spack core are documented on the Database._query method, where the functionality is defined. For users of the spack python command, this makes the python builtin method help less than ideally useful, as help(spack.store.db.query) and help(spack.store.db.query_local) do not show relevant information. This PR updates the doc attributes for the Database.query and Database.query_local arguments to mirror everything after the first line of the Database._query docstring.
-
Massimiliano Culpo authored
* cuda: fix conflict statements for x86-64 targets fixes #13462 This build system mixin was not updated after the support for specific targets has been merged. * Updated the version range of cuda that conflicts with gcc@8: * Updated the version range of cuda that conflicts with gcc@8: for ppc64le * Relaxed conflicts for version > 10.1 * Updated versions in conflicts Co-Authored-By:
Axel Huebl <axel.huebl@plasma.ninja>
-
Greg Becker authored
* cpu: differentiate flags used for pristine LLVM vs. Apple's version
-