summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2016-11-04Better spack spec (#2238)Todd Gamblin6-25/+85
* Add options for hashes, tree depth, and YAML to `spack spec`. - Can now display hashes with `spack spec`, like `spack find`. - Removed the old "ids" argument to `spack spec` (which printed numerical values)b - Can output YAML spec from `spack spec` with `-y` - Can control depth of DAG traversal with --cover=[nodes|edges|paths] - Can print install status (installed, missing, not installed) with -I * Don't use YAML aliases in specs. - Force Spack's YAML dumper to ignore aliases. - aliases cause non-canonical YAML to be used in DAG hash, and result in redundant hashes. - add a test to ensure this behavior stays
2016-11-04Make spec.format properties case-insensitivePeter J. Scheibel1-0/+4
2016-11-04Support 'COMPILERVERSION' in spec format stringPeter J. Scheibel1-1/+1
2016-11-03remove obsolete instructions on hacking clang+gfortran (#2217)Denis Davydov1-52/+15
* remove obsolete instructions on hacking clang+gfortran * add detailed instructions on how to setup Clang+gfortran on macOS
2016-11-03spack install: forward sys.stdin to child processes (#2158)Massimiliano Culpo3-36/+62
* spack install: forward sys.stdin to child processes fixes #2140 - [ ] redirection process is spawned in __enter__ instead of __init__ - [ ] sys.stdin is forwarded to child processes * log: wrapped __init__ definition
2016-11-03spack find: accepts anonymous specs as arguments fixes #2170 (#2188)Massimiliano Culpo5-58/+33
2016-11-02Fix style checker bug. (#2214)Todd Gamblin1-12/+42
* Fix style checker bug. * spack flake8: print cwd-relative paths by default, with root-relative option.
2016-11-02Add support for gfortran to be used with clang (#2192)Barry Smith2-4/+28
1) list gfortran as a fc and f77 compiler that can work with clang 2) allow compatible gfortran to ./spack compiler find with clang by matching version numbers This is based on the discussions in https://github.com/LLNL/spack/issues/237 https://github.com/dealii/dealii/wiki/deal.II-in-Spack#mixing-gcc-and-clang-on-osx This is not a long term solution but something to get us through the next months until the compiler infrastructure is reworked to allow mixing and matching for C/C++ and Fortran compilers Funded-by: IDEAS Project: IDEAS/xSDK Time: 1.5 hours
2016-11-01Update references in debug command (#2204)scheibelp1-3/+3
2016-10-31Improved package.py error handling. (#2187)Todd Gamblin4-163/+219
- Detailed debug information is now handed back to the parent process from builds, for *any* type of exception. - previously this only worked for Spack ProcessErrors, but now it works for any type of error raised in a child. - Spack will print an error message and source code context for build errors by default. - It will print a stack trace when using `spack -d`, even when the error occurred in the child process.
2016-10-31Add `spack flake8` command. (#2186)Todd Gamblin2-15/+160
- Ported old run-flake8-tests qa script to `spack flake8` command. - New command does not modify files in the source tree - Copies files to a temp stage modifies them there, and runs tests. - Updated docs and `run-flake8-tests` script to call `spack flake8`.
2016-10-30Allow common args to be written the same way regular args are.Todd Gamblin2-49/+25
2016-10-30Bugfix: '::' only worked on top-level key in config.Todd Gamblin11-151/+255
- generalized and fixed to work with any key in YAML file - simplified schema writing, as well - add more unit tests for the config system - Rename test/yaml.py to test/spack_yaml.py - Add test/yaml.pyc to ignored pyc files.
2016-10-30Documentation for configurationTodd Gamblin15-388/+678
2016-10-30Add `spack arch --platform` optionTodd Gamblin1-2/+12
2016-10-30Make provider_index use spack yaml for cleaner output.Todd Gamblin1-4/+4
2016-10-30source_cache, misc_cache, verify_ssl, checksum, & dirty in config.yamlTodd Gamblin16-76/+160
- Added new preferences to config.yaml: - source_cache - misc_cache - verify_ssl - checksum - dirty
2016-10-30Add module_roots to config.yamlTodd Gamblin4-35/+62
2016-10-30Move temp directory configuration to config.yamlTodd Gamblin8-171/+325
- Moved temp finding logic to spack.stage - Updated stage tests - Added tests for new path substaitution of $user, $spack, $tempdir
2016-10-30Rename install.yaml -> config.yaml, install_area -> "store"Todd Gamblin21-156/+202
- Added a schema for config.yaml - Moved install tree configuration to config.yaml - Moved etc/spack/install.yaml to etc/spack/defaults/config.yaml - renamed install_area to "store", to use a term in common with guix/nix. - in `config.yaml` file, it's called the `install_tree` to be more intuitive to users. - `install_tree` might've worked in the code, but `install_tree` is already a global function in the spack namespace, from llnl.util.filesystem.
2016-10-30add documentation for new option to set install areaBenedikt Hegner1-0/+11
2016-10-30refactor settings for install area and make them config optionsBenedikt Hegner21-161/+246
2016-10-30Removes cyclic dependency on spack.config. (#2121)Matt Belhorn3-51/+2
Merge #2030 added a cyclic dependency between the Cray platform needing to read a `targets.yaml` config file and `config.py` needing to get the platform names. This commit removes the cyclic dependency in favor of the more general config scheme. It also removes the now functionless `targets.yaml` config file. This breaks 'frontend' targets on the Cray platform but all architecture targets, including the frontend, that are provided by CrayPE are added to the Platform anyway so users can be explicit about the architecture targeted by the Cray compiler wrappers: ``` spack spec libelf arch=cray-CNL-frontend ``` becomes ``` spack spec libelf arch=cray-CNL-mc8 # on an XK7 or spack spec libelf arch=cray-CNL-sandybridge # on an older XC30, etc.. ``` The only way the 'frontend' target can be defined after this commit is through target environment variables.
2016-10-30module file support: major rework of docs (#2169)Massimiliano Culpo3-566/+660
* module file support: major rework of docs * module file support: fixed issues found by @adamjstewart - list or enumeration should not be indented - use console instead of bash or csh in things that are not scripts - other typos * module file support: fixed other issues found by @adamjstewart - tables should not be indented - substitute lines with pyobject to import an entire function - get help output running commands - typos * module file support: fixes according to review comments - @citibeth moved `spack module loads` after `spack load` - @glennpj tried to clarify installation table + changes to language - @tgamblin Removed top level section and moved the whole thing into the reference manual * module file support: moved directive before spack module loads
2016-10-30configuration file for modules : fixed enable keyword (#2176)Massimiliano Culpo4-74/+10
- enable keyword works again - test/modules.py : proper clean-up after tests
2016-10-29Do not check directory layout for external packages (#2172)Barry Smith1-1/+1
External packages do not have an spec.yaml file so don't check for it. Without this change any time a package depends on an external package when the new package is installed you will get the error Install prefix exists but contains no spec.yaml This problem has also haunted me since I started using Spack since PETSc depends on Python and I used an external python but fortunately it was relatively easy to debug once I could reproduce it at will. Funded-by: IDEAS Project: IDEAS/xSDK Time: 1 hour
2016-10-29Import dso_suffix from spack.build_environment in abi.py (#2174)Matthew Scott Krafczyk1-0/+1
Fixes #1845
2016-10-29Use Spec.format for token substitution in modules (#1848)scheibelp3-65/+87
This replaces a custom token-based substitution format with calls to Spec.format in modules.py This also resolves a couple issues: - LmodModules set configuration globally instead of in its initializer which meant test-specific configuration was not applied - Added support for setting hash_length=0 for LmodModules. This only affects the module filename and not the directory names for the hierarchy tokens in the path. This includes an additional unit test.
2016-10-27Fix rpath linking for NAG, add documentation on setup (#2142)Adam J. Stewart3-27/+57
2016-10-26Remove support for deprecated package. See also #2085 and #2086 (#2090)Elizabeth Fischer1-1/+0
2016-10-26Fix typo: _choiches -> _choices (#2127)George Hartzell1-1/+1
The breaks `spack create`.
2016-10-26typo: vlaues -> values (#2147)George Hartzell1-1/+1
2016-10-26Removed documentation on false paths as per #2083 (#2146)Elizabeth Fischer2-40/+1
Removed documentation on false paths as per #2083
2016-10-26document recommended usage of system blas/lapack (#2081)Denis Davydov1-0/+35
* document recommended usage of system blas/lapack * update doc * minor * reword
2016-10-26ProcessError : now the exception is correctly pickled and passed across ↵Massimiliano Culpo2-11/+32
processes. (#2143)
2016-10-26spack install : added --log-format option (incorporates test-install ↵Massimiliano Culpo5-281/+268
command) (#2112) * spack install : added --log-format option (incorporates test-install command) fixes #1907 * qa : removed extra whitespace
2016-10-26add a unit test for conretization with develop version (#2064)Denis Davydov1-0/+7
2016-10-25filter system paths (#2083)Denis Davydov3-3/+62
* add filter_system_paths() * filter system paths in set_build_environment_variables() * two function: lib/inc + bin * reverse order in bin * fix order * minor * improvements of the code * more cleanup * alternative solution for filter_bins * fiddle base alalazo's approach * minor * minor
2016-10-25Find compatibility versions of GCC (#2099)Adam J. Stewart1-2/+3
2016-10-25multimethod.py : calls functools.wraps before returning the correct method ↵Massimiliano Culpo1-1/+11
fixes #2118 (#2119)
2016-10-25spack setup : fixed regression after #1186 (#2117)Massimiliano Culpo1-1/+25
2016-10-24Merge pull request #1186 from epfl-scitas/features/install_with_phasesTodd Gamblin15-551/+1177
do_install : allow for an arbitrary number of phases
2016-10-24Rename EditableMakefile to MakefilePackageTodd Gamblin2-4/+4
2016-10-24Bug Fix : Apply Compiler Flags Specified by Manual Compiler Configuration ↵Joseph Ciurej7-53/+126
(#1532) * Fixed a bug causing config-specified compiler flags to be ignored. Updated the compiler config so all flags are in a separate section. * Updated the documentation for the `compilers.yaml` file spec. * Implemented basic testing for the 'flags' section of compiler config. * Fixed a few minor problems with the manual compiler config documentation.
2016-10-24Typo: becuase -> because (#2110)George Hartzell1-1/+1
2016-10-24Small fix to docs. (#2092)Elizabeth Fischer1-1/+1
2016-10-24spack test : exits after ctrl+c fixes #2029 (#2082)Massimiliano Culpo2-15/+27
2016-10-23package.py : moved each specialized package to its own module filealalazo6-156/+329
2016-10-23spack setup : improved error messagealalazo1-4/+6
2016-10-23CMakePackage, AutotoolsPackage : added default behavior on checkalalazo1-2/+31