summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2016-05-11Use global licenses with local symlinksAdam J. Stewart1-11/+54
2016-05-11Allow license files to use different symbols for commentsAdam J. Stewart1-28/+44
2016-05-11Formatting consistencyAdam J. Stewart1-0/+1
2016-05-11Bug fixAdam J. Stewart1-1/+1
2016-05-11Add set_up_license functionAdam J. Stewart1-0/+77
2016-05-11Add default global variables for licensing informationAdam J. Stewart1-0/+13
2016-05-11Merge branch 'custom_modulefiles_from_config' of ↵Todd Gamblin8-394/+1138
https://github.com/epfl-scitas/spack into epfl-scitas-custom_modulefiles_from_config
2016-05-11flake 8 : fixed checksalalazo6-344/+391
2016-05-11fix formattingDenis Davydov1-7/+9
2016-05-11Merge branch 'develop' of https://github.com/LLNL/spack into ↵alalazo4-20/+83
features/custom_modulefile_from_config Conflicts: lib/spack/spack/config.py
2016-05-11Revert "flake8 : fixed all issues?"alalazo6-330/+254
This reverts commit 71e49e289a849b8aaa4f0d9a195d07569051ca88.
2016-05-11modules : added docsalalazo2-32/+242
2016-05-11add functions for simple unit tests; refactor openblas to use themDenis Davydov1-0/+64
2016-05-11improve error message for wrong config section namesBenedikt Hegner1-3/+3
2016-05-11Remove config.py from flake checking for now.Todd Gamblin1-0/+1
2016-05-11Merge branch 'bugfix/config' of git://github.com/hegner/spack into ↵Todd Gamblin2-14/+30
hegner-bugfix/config
2016-05-11Merge pull request #929 from epfl-scitas/differentiate_framework_from_packagesTodd Gamblin1-7/+7
QA : make qa checking less painful
2016-05-11first round of coding rulesBenedikt Hegner1-13/+16
2016-05-11add test for list parametersBenedikt Hegner1-0/+10
2016-05-10hmm... test before commitBenedikt Hegner1-1/+1
2016-05-10fix setting config for list parametersBenedikt Hegner1-1/+4
2016-05-10Minor tweaks to `flock` docs.Todd Gamblin1-9/+22
2016-05-10Merge branch 'fix-doc-flock' of git://github.com/luca-heltai/spack into ↵Todd Gamblin1-0/+32
luca-heltai-fix-doc-flock
2016-05-10Added documentation on lockf/flock.Luca Heltai1-0/+32
2016-05-10qa : this should still fail due to F821alalazo1-8/+7
2016-05-10qa : modifying 2 packages and a framework file just for the sake of italalazo1-0/+1
2016-05-10flake8 : fixed all issues?alalazo6-254/+330
2016-05-10modules : added warning if a user tries to add prerequisite with dotkitalalazo1-2/+7
2016-05-10modules : changed syntax for environment modificationsalalazo3-10/+29
2016-05-10modules : prefix_inspections moved to modules.yamlalalazo2-15/+11
2016-05-10Merge branch 'develop' of https://github.com/LLNL/spack into ↵alalazo24-346/+706
features/custom_modulefile_from_config
2016-05-10Merge pull request #905 from adamjstewart/features/rpath_flagTodd Gamblin6-23/+80
Allow compilers to specify their own rpath linking flags
2016-05-10Merge pull request #692 from mathstuf/quoted-command-linesTodd Gamblin1-1/+1
executable: quote arguments
2016-05-10Merge pull request #775 from epfl-scitas/fixes/config_updateTodd Gamblin3-23/+33
fix: proper update of config file
2016-05-10Merge pull request #757 from glennpj/extend_rTodd Gamblin2-1/+10
Make R extendable
2016-05-10Merge pull request #842 from hegner/compiler_lookup_orderTodd Gamblin1-0/+4
Bugfix - preserve lookup order in PATH when invoking 'spack compiler add'
2016-05-10Merge pull request #849 from brettviren/bugfix/share-pkgconfigTodd Gamblin1-2/+2
Add to sub dirs checked for pkg-config files.
2016-05-09WIP fixing all the things that broke when I changed the anonymous spec namesGregory Becker1-1/+3
2016-05-09cleanupGregory Becker1-1/+1
2016-05-09Changed anonymous specs to have name=None instead of empty stringGregory Becker3-32/+37
2016-05-09Add documentation for rpath_flag handlingAdam J. Stewart1-5/+11
2016-05-09Comment changeAdam J. Stewart1-1/+1
2016-05-09Testing typoAdam J. Stewart1-4/+4
2016-05-09Allow compilers to specify their own rpath linking flagsAdam J. Stewart5-18/+69
2016-05-09wrap tty.die to 80 charsDenis Davydov1-3/+11
2016-05-09cleanupTodd Gamblin5-30/+13
2016-05-09Make _hash private to discourage access; fix dag_hash length handling.Todd Gamblin1-11/+14
2016-05-09Restore `cc` from mainline; clean up some cflags stuff.Todd Gamblin1-29/+29
2016-05-08Add a 'print' view allowing genreation of arbitrary strings based on format ↵Brett Viren1-3/+61
using package/spec parameters.
2016-05-07Address all coments in @trws's latest comment in PR #869.Brett Viren1-103/+177
I addressed them by factoring the code better to follow the visitor pattern. This will allow actions to be easily added in the future. These may not even be file sytsem views. One could add actions to generate shell init scripts, JSON DAG-dumpers, GraphViz DOT file generators, etc (yes, some of these are alread in there - just to give the idea). Also added is a top-level test $ source share/spack/setup-env.sh $ ./share/spack/examples/test_view.sh Read the top of that script first.