summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2017-08-16Add tab completion & update docs for buildcacheAdam J. Stewart2-67/+91
This adds tab completion and fixes some formatting issues in the documentation for the "spack buildcache" command.
2017-08-16Add better generator support to CMakePackage (#4988)Adam J. Stewart2-8/+65
* Add better generator support to CMakePackage * List valid CMake generators on error
2017-08-16Refactor IntelInstaller into IntelPackage base class (#4300)Adam J. Stewart9-112/+366
* Refactor IntelInstaller into IntelPackage base class * Move license attributes from __init__ to class-level * Flake8 fixes: remove unused imports * Fix logic that writes the silent.cfg file * More specific version numbers for Intel MPI * Rework logic that selects components to install * Final changes necessary to get intel package working * Various updates to intel-parallel-studio * Add latest version of every Intel package * Add environment variables for Intel packages * Update env vars for intel package * Finalize components for intel-parallel-studio package Adds a +tbb variant to intel-parallel-studio. The tbb package was renamed to intel-tbb. Now both intel-tbb and intel-parallel-studio+tbb provide tbb. * Overhaul environment variables set by intel-parallel-studio * Point dependent packages to the correct MPI wrappers * Never default to intel-parallel-studio * Gather env vars by sourcing setup scripts * Use mpiicc instead of mpicc when using Intel compiler * Undo change to ARCH * Add changes from intel-mpi to intel-parallel-studio * Add comment explaining mpicc vs mpiicc * Prepend env vars containing 'PATH' or separators * Flake8 fix * Fix bugs in from_sourcing_file * Indentation fix * Prepend, not set if contains separator * Fix license symlinking broken by changes to intel-parallel-studio * Use comments instead of docstrings to document attributes * Flake8 fixes * Use a set instead of a list to prevent duplicate components * Fix MKL and MPI library linking directories * Remove +all variant from intel-parallel-studio * It is not possible to build with MKL, GCC, and OpenMP at this time * Found a workaround for locating GCC libraries * Typos and variable names * Fix initialization of empty LibraryList
2017-08-14Create, install and relocate tarballs of installed packagesPatrick Gartung6-0/+1426
Adds the "buildcache" command to spack. The buildcache command is used to create gpg signatures for archives of installed spack packages; the signatures and archives are placed together in a directory that can be added to a spack mirror. A user can retrieve the archives from a mirror and verify their integrity using the buildcache command. It is often the case that the user's Spack instance is located in a different path compared to the Spack instance used to generate the package archive and signature, so this includes logic to relocate the RPATHs generated by Spack.
2017-08-14Added a custom action for --clean and --dirty. (#5081)Massimiliano Culpo3-9/+52
The action `CleanOrDirtyAction` has been added. It sets the default value for `dest` to `spack.dirty`, and changes it according to the flags passed via command line. Added unit tests to check that the arguments are parsed correctly. Removed lines in `PackageBase` that were setting the default value of dirty according to what was in the configuration.
2017-08-14Decode process stream only for python3scheibelp1-2/+17
Popen.communicate outputs a str object for python2 and a bytes object for python3. This updates the Executable.__call__ function to call .decode on the output of Popen.communicate only for python3. This ensures that Executable.__call__ returns a str for python2 and python3.
2017-08-11patch: get correct package directory for a given packageMassimiliano Culpo1-3/+15
fixes #4236 fixes #5002 When a package is defined in more than one repository, RepoPath.dirname_for_package_name may return the path to either definition. This sidesteps that ambiguity by accessing the module associated with the package definition.
2017-08-09bugfix for module_cmd (#5038)becker332-2/+2
* bugfix for modulecmd when bash is symlinked to sh * update test to make sure module_cmd can interpret sh
2017-08-09Merged 'purge' command with 'clean' and deleted 'purge' (#4970)Massimiliano Culpo6-89/+129
* Merged 'purge' command with 'clean'. Deleted 'purge'. fixes #2942 'spack purge' has been merged with 'spack clean'. Documentation has been updated accordingly. The 'clean' and 'purge' behavior are not mutually exclusive, and they log brief information to tty while they go. * Fixed a wrong reference to spack clean in the docs * Added tests for 'spack clean'. Updated bash completion.
2017-08-09Bugfixes for compiler detection on the Cray platform. (#3075)Sergey Kosukhin6-8/+81
* Typo fixes in docstrings. * Let OS classes know if the paths they get were explicitly specified by user. * Fixed regexp for cray compiler version matching. * Replaced LinuxDistro with CrayFrontend for the Cray platform's frontend.
2017-08-07Variant satisfaction for indirect dependenciesscheibelp3-1/+17
Fixes #4898 Constraints that were supposed to be conditionally activated for specified values of a single-valued variant were being activated unconditionally in the case that the variant was associated with an implicit dependency. For example if X->Y->Z and Y places a conditional constraint on Z for a given single-valued variant on Y, then it would have been applied unconditionally when concretizing X.
2017-08-05Various fixes to package name URL parsing (#4978)Adam J. Stewart3-0/+5
2017-08-05Massive conversion from Package to CMakePackage (#4975)Adam J. Stewart1-0/+1
2017-08-04Add a SConsPackage base class (#4936)Adam J. Stewart5-7/+104
* Add a SConsPackage base class * Make Matlab extendable * Most dependencies are actually required * Cantera requires older version of fmt
2017-08-04Make CMake the default build system (#4862)Adam J. Stewart1-1/+3
2017-08-04Add a QMakePackage base class (#4925)Adam J. Stewart7-13/+122
* Add a QMakePackage base class * Fix sqlite linking bug in qt-creator * Add latest version of qt-creator * Add latest version of qwt * Use raw strings for regular expressions * Increase minimum required version of qt * Add comment about specific version of sqlite required * Fixes for latest version of qwt and qt-creator * Older versions of Qwt only work with older versions of Qt
2017-08-03Fix trailing whitespace at the end of headers.cpp_flags (#4957)Adam J. Stewart1-16/+77
2017-08-03Fix crashes when running spack install under nohup (#4926)George Hartzell1-2/+10
* Fix crashes when running spack install under nohup Fixes #4919 For reasons that I do not entire understand, duplicate_stream() throws an '[Errno 22] Invalid argument' exception when it tries to `os.fdopen()` the duplicated file descriptor generated by `os.dup(original.fileno())`. See spack/llnl/util/lang.py, line 394-ish. This happens when run under `nohup`, which supposedly has hooked `stdin` to `/dev/null`. It seems like opening and using `devnull` on the `input_stream` in this situation is a reasonable way to handle the problem. * Be more specific about error being handled. Only catch the specific error that happens when trying to dup the stdin that nohup provides. Catching e as a StandardErorr and then `type(e).__name__` tells me that it's an OSError. Printing e.errno tells me that it's 22 Double checking tells me that 22 is EINVAL. Phew.
2017-08-03Account for hyphens in package names when searching for libraries. (#4948)Sergey Kosukhin1-1/+12
2017-08-01Fix color bug in Spec.format() introduced by #3013Todd Gamblin1-6/+3
2017-08-01Add `spack dependencies` command and tests for it and dependents.Todd Gamblin7-15/+261
2017-08-01document and make `display_specs` more versatileTodd Gamblin2-14/+48
2017-08-01Fix issue with case check and `spack -m`Todd Gamblin1-1/+5
2017-08-01Refactor installed_dependents -> installed_relativesTodd Gamblin4-15/+34
2017-08-01Package.possible_dependencies() descends into virtuals.Todd Gamblin1-1/+10
2017-08-01Add --transitive option to `spack dependents`Todd Gamblin2-8/+18
2017-08-01spack dependents lists possible dependencies by default.Todd Gamblin1-25/+37
2017-08-01Remove last vestiges of "special" deptypes.Todd Gamblin4-36/+64
- Remove `special_types` dict in spec.py, as only 'all' is still used - Still allow 'all' to be used as a deptype - Simplify `canonical_deptype` function - Clean up args in spack graph - Add tests
2017-08-01Remove unused code.Todd Gamblin1-4/+0
2017-08-01Add --all argument to `spack dependents`Todd Gamblin1-6/+56
--all causes spack dependents to list all possible dependents for a package, rather than actual dependents for an installed spec.
2017-07-31Clarify docs on using a hash in a spec (#4908)Adam J. Stewart1-7/+36
2017-07-31Fix preference for X.Y version when mixed with X.Y.Z versions (#4922)scheibelp2-1/+14
For packages which contain a mix of versions with formats X.Y and X.Y.Z, if the user entered an X.Y version as a preference in packages.yaml, Spack would get confused and favor any version A.B.Z where X=A and Y=B. In the case where there is a mix of these version types, this commit updates preferences so Spack will favor an exact match.
2017-07-31Add --color=[always|never|auto] argument; fix color when piping (#3013)paulhopkins13-44/+103
* Disable spec colorization when redirecting stdout and add command line flag to re-enable * Add command line `--color` flag to control output colorization * Add options to `llnl.util.tty.color` to allow color to be auto/always/never * Add `Spec.cformat()` function to be used when `format()` should have auto-coloring
2017-07-26Improve version detection for URLs with dynamic after version (#4902)Adam J. Stewart2-1/+4
2017-07-25Add universal build_type variant to CMakePackage (#4797)Adam J. Stewart1-15/+8
* Add universal build_type variant to CMakePackage * Override build_type in some packages with different possible values * Remove reference to no longer existent debug variant * Update CBTF packages with new build_type variant * Keep note on build size of LLVM
2017-07-25fix config.guess patch for ppc64le (#4858)Gregory Lee1-15/+3
* fix config.guess patch for ppc64le * explicit patch for config.guess not required
2017-07-24Change Version formatting properties and functions to return Version objects ↵Adam J. Stewart3-21/+132
(#4834) * Change version.up_to() to return Version() object * Add unit tests for Version.up_to() * Fix packages that expected up_to() to return a string * Ensure that up_to() preserves separator characters * Use version indexing instead of up_to * Make all Version formatting properties return Version objects * Update docs * Tests need to test string representation
2017-07-22Make testing spack commands simpler (#4868)Todd Gamblin10-388/+296
Adds SpackCommand class allowing Spack commands to be easily in Python Example usage: from spack.main import SpackCommand info = SpackCommand('info') out, err = info('mpich') print(info.returncode) This allows easier testing of Spack commands. Also: * Simplify command tests * Simplify mocking in command tests. * Simplify module command test * Simplify python command test * Simplify uninstall command test * Simplify url command test * SpackCommand uses more compatible output redirection
2017-07-19Allow packages to control handling of compiler flags (#4421)becker336-0/+169
* Initial work on flag trapping using functions called <flag>_handler and default_flag_handler * Update packages so they do not obliterate flags * Added append to EnvironmentModifications class * changed EnvironmentModifications to have append_flags method * changed flag_val to be a tuple * Increased test coverage * added documentation of flag handling
2017-07-18Improve version detection of release versions (#4816)Adam J. Stewart2-0/+3
2017-07-18Open ended variants (#4746)becker331-1/+7
* Change directives to allow open-ended variants more easily * make None default to open-ended
2017-07-18Change path to CMakeLists.txt to be relative to root, not pwd (#4420)Adam J. Stewart1-4/+9
* Change path to CMakeLists.txt to be relative to root, not pwd * Changes requested during code review * Revert back to old naming of root_cmakelists_dir * Make relative directory more clear in docs * Revert change causing build_type AttributeError * Fix forgotten abs_path var * Update CLHEP with new relative path * Update more packages with new root_cmakelists_dir syntax
2017-07-18package: removed default no-op patch (#4103)Massimiliano Culpo1-4/+5
* package: removed default no-op patch fixes #4085 * do_patch: handles NoSuchMethodError nicely
2017-07-12Typo: submdoules -> submodules (#4716)George Hartzell1-1/+1
2017-07-06patch config.guess after autoreconf step (#4604)Gregory Lee1-18/+9
2017-07-04Parametrized lock test and make it work with MPITodd Gamblin2-46/+255
- Lock test can be run either as a node-local test or as an MPI test. - Lock test is now parametrized by filesystem, so you can test the locking capabilities of your NFS, Lustre, or GPFS filesystem. See docs for details.
2017-07-04Make filesytem more resilient to concurrent updates.Todd Gamblin1-2/+12
- Uses O_CREAT for touch (for guaranteed atomic open on NFS, multi-node) - Ignore concurrent create errors in mkdirp
2017-07-04Ported lock test to pytest.Todd Gamblin1-519/+630
2017-06-29Update hdfgroup packages to new URL structure (#4643)Adam J. Stewart1-14/+16
* Update hdfgroup packages to new URL structure * Update docs now that HDF5 URL isn't that complicated
2017-06-28add mpi to providers to remove virtual package error (#4608)EmreAtes1-2/+7