summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
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
2016-10-23Merge branch 'develop' of https://github.com/LLNL/spack into ↵alalazo10-65/+146
features/install_with_phases_rebase
2016-10-23spack.error : fixed pickling and representation to permit to pass FetchErrorsalalazo1-1/+12
2016-10-22spack build, spack configure : added commandsalalazo4-10/+139
2016-10-22CMakePackage : changed method name from `wdir` to `build_directory`alalazo1-8/+6
2016-10-22do_install : use build_system_class attribute instead of `type(self).__base__`alalazo1-2/+3
2016-10-22spack info : shows the build-system class usedalalazo2-2/+17
2016-10-21Don't clear LD_LIBRARY_PATH and friends from compiler wrappers (#2074)Matthew LeGendre1-7/+0
* Don't clear LD_LIBRARY_PATH and friends from compiler wrappers * remove debugging print
2016-10-22packages : moved decorators into AutotoolsPackage and CMakePackagealalazo1-0/+20
2016-10-22spack create : fixed typoalalazo1-1/+1
2016-10-21Removed space before colon in `FIXME:`, added one line description of guess ↵alalazo1-13/+13
classes
2016-10-21spack info : added phasesalalazo1-1/+8
2016-10-21Remove unnecessary blackslash for flake8Matthew LeGendre1-2/+2
2016-10-21qa : flake8 issuesalalazo1-1/+3
2016-10-21spack create : now creates packages that are derived from AutotoolsPackage ↵alalazo2-96/+155
and CMakePackage
2016-10-21Fix concretize bug where provider sort couldn't handle version rangesMatthew LeGendre1-1/+5
2016-10-21Add new Version property to handle joined version numbers (#2062)Adam J. Stewart3-17/+47
* Add new version property to handle joined version numbers * Add unit test for new joined property * Add documentation on version.up_to() and version.joined
2016-10-21patch directive : fixed retrieval from urls ( fixes #1584 ) (#2039)Massimiliano Culpo5-40/+94
* patch directive : fixed retrieval from urls fixes #1584 - add support for 'gz' archives - fixed bugs with URL patches - updated nwchem * patch directive : added checksum to UrlPatch - refactored classes in patch.py - updated nwchem * patch directive : added caching
2016-10-21CMakePackage : changed `list()` to []alalazo1-4/+1
2016-10-21do_install : removed install_self from the list of arguments (leftover ↵alalazo1-1/+0
after rebasing #1956)
2016-10-21Merge branch 'develop' of https://github.com/LLNL/spack into ↵alalazo25-237/+756
features/install_with_phases_rebase Conflicts: lib/spack/spack/cmd/install.py lib/spack/spack/cmd/setup.py
2016-10-18Don't cache truncated dag hash for spec (#2048)scheibelp1-2/+2
If Spec.dag_hash was called for the first time with a 'length' specified, the cached hash was truncated. This ensures that the full hash is cached.
2016-10-18`Package.do_install` : removed `install_self` from arguments (#1956)Massimiliano Culpo4-32/+43
* Removes the extra argument from Package.do_install while maintaining the changes in behavior pulled in #1603 * install : removed -i and -d shorthands (breaks backward compatibility) * Change ':' to ','
2016-10-18Support for bazel (#2023)Eric1-1/+10
* Add package bazel * Add support for bazel-based builds
2016-10-16Ignore GPG/PGP signatures/checksums when finding available downloads (#2028)Adam J. Stewart2-2/+11
* Ignore GPG/PGP signatures/checksums when finding available downloads * Remove duplicated basename
2016-10-15Platform-specific config scopes (#2030)Todd Gamblin3-23/+64
* Add platform-specific configuration scopes. * Update `spack config` to use the new scope arguments.
2016-10-15spack purge : updated documentation fixes #1938 (#2025)Massimiliano Culpo1-4/+9
2016-10-14Major updates to Contribution Guide (#1968)Adam J. Stewart1-127/+401
* Major updates to Contribution Guide * Grammar changes * Fix missing/extra backticks * Rewording, links, and tips added
2016-10-12Use cYAML if it is available in Python. (#2010)Todd Gamblin2-4/+11