summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2016-01-26Fixes issues introduced after merge with conflictsalalazo2-21/+25
2016-01-26Merge branch 'develop' of https://github.com/LLNL/spack into ↵alalazo158-1137/+21334
refactoring/resource_directive Conflicts: lib/spack/spack/fetch_strategy.py lib/spack/spack/mirror.py lib/spack/spack/package.py
2016-01-25Fixes #259: Apple clang compiler detectionTodd Gamblin1-3/+29
- Clang compilers are now versioned with the raw LLVM version or, on macs, with Apple's version with a suffix.
2016-01-25Fix regex to find version on OS XAdam J. Stewart1-1/+1
2016-01-25Fixes #74: minor fixes to spack mirror.Todd Gamblin2-2/+9
2016-01-25More thorough mirror test: test full round-tripTodd Gamblin4-37/+37
- Old test: did not attempt to actually fetch mirrored packages. - New test: 1. Creates a temporary mirror, 2. Registers it with spack, 3. Fetches from it, and 4. Verifies that the fetched archive matches the original - This test will hopefully mean that `spack mirror` is less brittle from now on.
2016-01-25Refactor mock_repo: add a destroy() method.Todd Gamblin6-28/+20
- classes using mock_repo need not know about its stage now.
2016-01-24Fixes #382: Issues with spack fetch.Todd Gamblin1-1/+7
- urljoin() was compliant with RFC 1808 but not with my understanding of how paths should be joined. - updated path joining logic to comply.
2016-01-24Minor line width reductions.Todd Gamblin1-3/+6
2016-01-24Better errors for mkdirp failure in mirror.Todd Gamblin1-2/+10
2016-01-24Minor cleanup. 80 char width for command description.Todd Gamblin1-20/+20
2016-01-21Remove cxx symlink, tell NAG to look for c++ symlinkAdam J. Stewart2-2/+1
2016-01-21Add symlink cxx to point to ccAdam J. Stewart1-0/+1
2016-01-21Refactor args for Executable.__call__Todd Gamblin10-57/+113
- simplify output, error, and input redirection - `return_output=True` is now `output=str` - `return_output=True` will still work for the time being but is deprecated. - previously you could say `return_output=True` and `output=<stream>`, which wouldn't actually write to the stream. Now you actually can't specify erroneous cases since there is only one parameter with mutually exclusive options..
2016-01-20Merge pull request #350 from adamjstewart/features/nagTodd Gamblin5-4/+39
Add NAG Fortran Compiler support
2016-01-20Fixed typo when running spack helpAdam J. Stewart1-1/+1
2016-01-20Redirect STDERR to STDOUT for compiler versionAdam J. Stewart1-1/+2
This is necessary for the NAG Fortran compiler, which prints its version message to STDERR instead of STDOUT. This message was previously being ignored, preventing spack from finding the compiler's version or automatically adding it to the compilers.yaml configuration file.
2016-01-19typos: fix some letter transposesBen Boeckel2-2/+2
2016-01-19Modify nag.py to match new compiler package structureAdam J. Stewart1-0/+9
2016-01-19Add symlink for NAG Fortran CompilerAdam J. Stewart1-0/+1
2016-01-19Merge branch 'develop' into features/nagAdam J. Stewart145-889/+20826
* develop: (77 commits) Make libxcb compile with gcc 4.9. disable parallel install for glib (found races) disable cairo-trace, which is incompatible with older libiberty.h. Fix LaunchMon on newer gcc versions. Simplify output redirection in spack.util.executable Allow completely empty config files. Update cmake package to use http in all URLs. Fix create, diy, edit, and repo commands to use multiple repos. Add namespace option to find command. Temporary fix: Clang is the default compiler on Mac OS X. Netcdf requires cmake >=2.8.12 Mbedtls depends on cmake Update libtool to 2.4.6 Update Julia to 0.4.3 Make binutils build on OS X Add verbs and psm variants py-matplotlib: depend on freetype py-numpy: make blas/lapack optional dependencies qhull: apply patch to work with libc++'s standard library New package GNU tar ...
2016-01-19Simplify output redirection in spack.util.executableTodd Gamblin2-16/+11
- By default inherit parent's input/output descriptor - Only use pipes if we need to return output. - Allows subprocesses (like emacsclient) to detect terminal correctly
2016-01-19Allow completely empty config files.Todd Gamblin1-3/+3
- Previous version would give validation error for an empty file. Now this is properly ignored. - Also includes bugfix in ConfigFormatError
2016-01-19Merge branch 'mplegendre-multi_pkgsrc_roots' into developTodd Gamblin91-844/+6903
- This moves var/spack/packages to var/spack/repos/builtin/packages. - Packages that did not exist in the source branch, or were changed in develop, were moved into var/spack/repos/builtin/packages as part of the integration. Conflicts: lib/spack/spack/test/unit_install.py var/spack/repos/builtin/packages/clang/package.py
2016-01-17Merge pull request #202 from scheibelp/features/unittest-xml-output-noseTodd Gamblin55-31/+13898
Features/unittest xml output nose
2016-01-17Fix create, diy, edit, and repo commands to use multiple repos.Todd Gamblin6-92/+247
2016-01-17Add namespace option to find command.Todd Gamblin1-9/+18
2016-01-17Temporary fix: Clang is the default compiler on Mac OS X.Todd Gamblin1-1/+6
2016-01-14update compiler config test.Todd Gamblin1-33/+37
2016-01-14add sanity check on config write as well as validation on read.Todd Gamblin1-0/+6
2016-01-14Add jsonschema validation for config files.Todd Gamblin24-43/+4168
2016-01-14Make text wrapping off by default in tty, add a kwarg for it.Todd Gamblin3-21/+60
2016-01-13Add NAG Fortran Compiler supportAdam J. Stewart3-3/+27
2016-01-03add/remove/list working for new config format.Todd Gamblin8-109/+221
- mirrors.yaml now uses dict order for precedence, instead of lists of dicts. - spack.cmd now specifies default scope for add/remove and for list with `default_modify_scope` and `default_list_scope`. - commands that only read or list default to all scopes (merged) - commands that modify configs modify user scope (highest precedence) by default - These vars are used in setup_paraser for mirror/repo/compiler. - Spack's argparse supports aliases now. - added 'rm' alias for `spack [repo|compiler|mirror] remove`
2016-01-03Add Python 3 aliases to our argparse backport.Todd Gamblin1-5/+17
2016-01-02All tests that call concretize() need to be MockPackagesTests.Todd Gamblin1-1/+5
2016-01-02Fix bug in tests.Todd Gamblin2-14/+17
2016-01-02depends_on and when multimethod support booleanalalazo3-4/+57
2016-01-02fixed broken unit testsalalazo2-6/+27
2016-01-02Package : factored out code in do_stage and do_fetch, changed mirror command ↵alalazo4-181/+183
accordingly
2016-01-01added class decorator to define composite classesalalazo1-0/+98
2015-12-30significant llvm updateTom Scogland1-8/+14
This update significantly reworks the llvm and clang packages. The llvm package now includes variants allowing it to build and install any and all of: * clang * lldb * llvm's libunwind (why, WHY did they name it this?!?) * polly (including building it directly into the clang tools, 3.7.0 only) * clang extra tools * compiler-rt (sanitizers) * clang lto (the gold linker plugin that allows same to work) * libcxx/libcxxabi * libopenmp, also setting the default openmp runtime to same, when parameters happen this shoudl be an option of libomp or libgomp Ideally, this should have rpath setup like the gcc package does, but clang's driver has no support for specs as such, and no clearly equivalent mechanism either. If anyone has ideas on this, they would be welcome. One significant note related to gcc though, if you test this on LLNL systems, or anywhere that has multiple GCCs straddling the dwarf2 boundary and sharing a libstdc++, build a gcc with spack and use that to build clang. If you use a gcc4.8+ to build this with an older libstdc++ it will fail on missing unwind symbols because of the discrepancy. Resource handling has been changed slightly to move the unpacked archive into the target rather than use symlinks, because symlinks break certain kinds of relative paths, and orders resource staging such that nested resources are unpacked after outer ones.
2015-12-30allow nested resourcesTom Scogland1-1/+3
This solution doesn't really make me happy, but does seem to work. It sorts the resources by the length of the string representing their destination. Since any nested resource must contain another resource's name in its path, it seems that should work, but there should be a better way to do this.
2015-12-30adding errno import for the deep directory creation patchTom Scogland1-0/+1
2015-12-30create leading directories for resourcesTom Scogland1-1/+8
This allows resources to be placed into subdirectory trees that may not exist in the base package, and may depend on other resources to be staged later.
2015-12-28Rework mirror configuration.Todd Gamblin2-12/+44
- All of these work: - `spack mirror add` - `spack mirror remove` - `spack mirror list` - `spack mirror` subcommands (except create) now have their own --scope argument. - Mirror config is now stored sanely as an ordered list.
2015-12-28Rework compiler configuration and simplify config.py logic.Todd Gamblin4-73/+124
- `spack compiler` subcommands now take an optional --scope argument. - no more `remove_from_config` in `config.py` -- `update` just overwrites b/c it's easier to just call `get_config`, modify YAML structures directly, and then call `update`. - Implemented `spack compiler remove`.
2015-12-27Remove mock_configs; tests no longer modify spack home directory.Todd Gamblin2-6/+30
2015-12-27Add custom YAML loader & dumper to track lines & maintain dict order.Todd Gamblin6-43/+351
- Configs are now parsed with `spack.util.spack_yaml.load/dump` - Parser annotates returned data with `_start_mark` and `_end_mark` properties, so that we can recover what lines/files they came from. - Parser uses `OrderedDict` instead of `dict`. This will help maintain some sanity when round-tripping config files.
2015-12-27Uncomment disabled tests.Todd Gamblin1-2/+2