summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-08-23add test for lua and node patching in sbang (#5169)healther1-6/+42
* add test for lua and node handling in sbang patching (cf #5086)
2017-08-22Add testing for new build output.Todd Gamblin3-2/+55
- Update handling of ChildError so that its output is capturable from a SpackCommand - Update cmd/install test to make sure Python and build log output is being displayed properly.
2017-08-22Make install command reusable within single Spack runTodd Gamblin3-21/+48
- install and probably other commands were designed to run once, but now we can to test them from within Spack with SpackCommand - cmd/install.py assumed that it could modify do_install in PackageBase and leave it that way; this makes the decorator temporary - package.py didn't properly initialize its stage if the same package had been built successfully before (and the stage removed). - manage stage lifecycle better and remember when Package needs to re-create the stage
2017-08-22SpackCommand uses log_output to capture command output.Todd Gamblin5-43/+29
2017-08-22log_ouptut can take either a filename or a file objectTodd Gamblin1-55/+93
2017-08-22Display build output on ProcessError, instead of Python context.Todd Gamblin2-29/+200
- If a failure comes from an external command and NOT the Python code, display errors highlighted with some context. - Add some rudimentary support for parsing errors out of the build log (not very sophisticated yet). - Build errors in Python code will still display with Python context.
2017-08-22Limit package context to 3 lines and colorize in error output.Todd Gamblin1-4/+16
2017-08-22Config scopes are now returning OrderedDicts instead of dicts. (#5183)Massimiliano Culpo3-3/+73
It seems 8f21332fec4c8adb5349ff90e30bb0e4f75e090e introduced a bug in that normal dictionaries are returned from ConfigScope objects instead of OrderedDicts. This is fixed here.
2017-08-22tcoffee: new package (#5185)Audrey Thoma4-0/+142
2017-08-22Boost: 1.65.0 (#5182)Axel Huebl1-0/+3
Adds the latest boost release. Downloads seem to be pointing to bintray from the official homepage.
2017-08-22Package 'libaec': no need to specify per version urls. (#5176)Sergey Kosukhin1-6/+6
2017-08-22Updates for package 'cdo'. (#5179)Sergey Kosukhin1-39/+39
* Package 'cdo': removed obsolete version 1.6.9. * Package 'cdo': updated urls. * Package 'cdo': added version 1.9.0. * Package 'cdo': no need to specify per version urls. * Package 'cdo': switched from Package to AutotoolsPackage. * Package 'cdo': added new variant 'openmp'. * Package 'cdo': variants 'curl' and 'magics' by default.
2017-08-21Add environment variables to path substitutionMatthew Scott Krafczyk3-22/+52
Update documentation on config file variable substitutions and add expansion of environment variables in config files.
2017-08-21py-pyrad: new package (#5181)Audrey Thoma1-0/+41
2017-08-21Added custom messages for conflicts directive. fixes #4965 (#5083)Massimiliano Culpo3-10/+37
Users can now add an optional custom message to the conflicts directive. Layout on screen has been changed to improve readability and the long spec is shown in tree format. Two conflicts in `espresso` have been modified to showcase the feature.
2017-08-21Protobuf: 3.4 (#5177)Axel Huebl1-0/+1
2017-08-20Unbuffer so that output from packages appears when redirectingTodd Gamblin3-2/+110
- Python I/O would not properly interleave (or appear) with output from subcommands. - Add a flusing wrapper around sys.stdout and sys.stderr when redirecting, so that Python output is synchronous with that of subcommands.
2017-08-20Add tests for output redirection.Todd Gamblin1-0/+95
2017-08-20Preserve verbosity across installs when 'v' is pressed.Todd Gamblin3-66/+159
- 'v' toggle was previously only good for the current install. - subsequent installs needed user to press 'v' again. - 'v' state is now preserved across dependency installs.
2017-08-20Fix exit call in `SpackError.die()`Todd Gamblin1-3/+3
- Previously we would use `os._exit()` in to avoid Spack error handling in the parent process when build processes failed. This isn't necessary anymore since build processes propagate their exceptions to the parent process. - Use `sys.exit` instead of `os._exit`. This has the advantage of automatically flushing output streams on quit, so output from child processes is not lost when Spack exits.
2017-08-20Rework output redirection in Spack.Todd Gamblin5-237/+267
- Simplify interface to log_output. New interface requires only one context handler instead of two. Before: with log_output('logfile.txt') as log_redirection: with log_redirection: # do things ... output will be logged After: with log_output('logfile.txt'): # do things ... output will be logged If you also want the output to be echoed to ``stdout``, use the `echo` parameter:: with log_output('logfile.txt', echo=True): # do things ... output will be logged and printed out And, if you just want to echo *some* stuff from the parent, use ``force_echo``: with log_output('logfile.txt', echo=False) as logger: # do things ... output will be logged with logger.force_echo(): # things here will be echoed *and* logged A key difference between this and the previous implementation is that *everything* in the context handler is logged. Previously, things like `Executing phase 'configure'` would not be logged, only output to the screen, so understanding phases in the build log was difficult. - The implementation of `log_output()` is different in two major ways: 1. This implementation avoids race cases by using only one pipe (before we had a multiprocessing pipe and a unix pipe). The logger daemon stops naturally when the input stream is closed, which avoids a race in the previous implementation where we'd miss some lines of output because the parent would shut the daemon down before it was done with all output. 2. Instead of turning output redirection on and off, which prevented some things from being logged, this version uses control characters in the output stream to enable/disable forced echoing. We're using the time-honored xon and xoff codes, which tell the daemon to echo anything between them AND write it to the log. This is how `logger.force_echo()` works. - Fix places where output could get stuck in buffers by flushing more aggressively. This makes the output printed to the terminal the same as that which would be printed through a pipe to `cat` or to a file. Previously these could be weirdly different, and some output would be missing when redirecting Spack to a file or pipe. - Simplify input and color handling in both `build_environment.fork()` and `llnl.util.tty.log.log_output()`. Neither requires an input_stream parameter anymore; we assume stdin will be forwarded if possible. - remove `llnl.util.lang.duplicate_stream()` and remove associated monkey-patching in tests, as these aren't needed if you just check whether stdin is a tty and has a fileno attribute.
2017-08-20Make SpackCommand a bit more testableTodd Gamblin1-5/+15
- add fail_on_error argument - record exception and return code when the command fails
2017-08-20Fix issue with color formatting regular expression. (#5171)Todd Gamblin1-19/+20
- Fix issue with color formatting regular expression. - _separators regex in spec.py could be constructed such that '^' came first in the character matcher, e.g. '[^@#/]'. This inverts the match and causes transient KeyErrors. - Fixed to escape all characters in the constructed regex. - This bug comes up in Python3 due to its more randomized hash iteration order, but it could probably also happen in a Python 2 implementation. - also clean up variable docstrings in spec.py
2017-08-19Group Travis CI jobs in stages (#5104)Massimiliano Culpo4-13/+78
- This should speed-up Travis CI tests and refers to #5049 - Travis uses build-stages to group tests together - The idea is to let fast tests fail first, then move to longer ones. - Added external perl to avoid download failure from CPAN and reduce build time - Disabling perl-dbi: continues to fail with (504 Gateway Time-out) on Travis - We now cover all the build systems in tests: - Add back `openblas` to Travis as a separate package. - Switched `openblas` for `astyle` to build a simpler MakefilePackage. - Added 'tut' (WafPackage) - Added 'py-setuptools' (PythonPackage) - Added 'perl-dbi' (PerlPackage) - Added 'build_systems' directory to the ones for which we get a summary - Added 'openjpeg' (CMakePackage) - Added 'r-rcpp' (RPackage) - Added comments to build tests to show the covered build system
2017-08-19Make test_inspect_path work on Mac OS X without XCode (#5168)Todd Gamblin1-2/+8
- Mac OS X Sierra has no /usr/include by default - Instead of assuming there's an include directory in /usr, mock up a directory that looks like we expect.
2017-08-19Add version 1.7.1 for cub. (#5164)健美猫1-0/+1
2017-08-19lbann: add depends_on hwloc (#5165)Adam Moody1-0/+1
2017-08-18cufflinks: new package (#5158)Audrey Thoma1-0/+46
2017-08-18muscle: fix (#5160)Audrey Thoma1-0/+5
2017-08-18For Tk, also provide a symlink for wishX.X. (#5161)Kelly (KT) Thompson1-0/+5
+ gitk (and possibly other tools) expect to find the Tk executable `wish`, so add a symlink with this name that points to the the versioned filename. + Example: `wish --> wish8.6`
2017-08-18sbang support: add node-js and fix luahealther2-1/+10
This adds sbang hook support for node-js and fixes the sbang filter for lua (the character class exclusion was swallowing newlines and reporting a false positive if lua was mentioned anywhere in the file).
2017-08-18build boost with graph library even when +mpihealther1-1/+0
Previously, when +graph and +mpi were enabled, the graph library was replaced with the graph_parallel library. This alters the logic for +graph+mpi to build both libraries.
2017-08-18corset: new package (#5157)Audrey Thoma1-0/+44
2017-08-18parsimonator: new package (#5143)Audrey Thoma1-0/+65
* parsimonator: new package * adding variant conflict
2017-08-18vegas2: new package (#5150)Audrey Thoma4-1/+126
* vegas2: new package * small version things
2017-08-18Add info for nextflow@v0.25.6 (#5148)George Hartzell1-0/+2
2017-08-18add man-db package and friends (#4844)Stephen McDowell5-0/+212
* add man-db package and friends * fix groff, libpipeline, and man-db dependencies * remove parallel groff altogether, build-only deps
2017-08-17Add a new package for gaussian (#5149)zenln1-0/+71
* Gaussian: Gaussian install * Adding Patch to spack installed files * Adding extra environment variables for gaussian at run time * Adding provides linda * Adding linda as a provided package * Shortning vars and fixing flake8 indentation and spacings
2017-08-17pagit: new package (#5140)Audrey Thoma1-0/+68
* pagit: new package * removed unneeded env var
2017-08-17new package libfabric (#5146)Audrey Thoma1-0/+35
* pbmpi: new package * forgot about libfabric
2017-08-17pbmpi: new package (#5144)Audrey Thoma1-0/+48
2017-08-17Docs: Travis-CI Workflow (#5133)Axel Huebl1-0/+78
* Docs: Travis-CI Workflow Add a workflow how to use spack on Travis-CI. Future Work: depending if and how we can simplify 5101: add a multi-compiler, multi-C++-standard, multi-software build matrix example * Fix Typos
2017-08-17paml: new package (#5142)Audrey Thoma1-0/+52
2017-08-17Colorize spack info. Adds prominence to preferred version. (#4994)Massimiliano Culpo2-33/+117
* Colorize spack info. Adds prominence to preferred version. fixes #2708 This uses 'llnl.util.tty.color' to colorize the output of 'spack info'. It also displays versions in the order the concretizer would choose them and shows the preferred in a line on its own and in bold. * Modified output according to Adam and Denis reviews. Section titles are not bold + black, but bold + blue. Added a new section named "Preferred version", which prints the preferred version in bold characters. * Further modifications according to Adam and Denis reviews. After "Homepage:" we now have a single space. Removed newline after each variant. Preferred version is not in bold fonts anymore. Added a simple test that just runs the command.
2017-08-17microbiomeutil: new package (#5134)Audrey Thoma1-0/+53
* microbiomeutil: new package * got rid of unnecessary self * oops
2017-08-17Add new package for rhash, a cmake dependency (#5120)Adam J. Stewart2-40/+120
* Add new package for rhash, a cmake dependency * Add missing libuv dependency to cmake
2017-08-17py-faststructure: new package (#5131)Audrey Thoma1-0/+39
2017-08-17add libiconv dependency to libxslt (#5138)healther1-0/+1
this is a fix to an installation that failed due to configure for some reason not finding the libiconv shipped with glibc, but still trying to link against it see http://xmlsoft.org/FAQ.html
2017-08-17Improved error message for unsatisfiable specs (#5113)Massimiliano Culpo1-4/+13
* Improved error message for unsatisfiable specs. fixes #5066 This PR improves the error message for unsatisfiable specs by showing in tree format both the spec that cannot satisfy the constraint and the spec that asked for that constraint. After that follows a readable error message.
2017-08-17Relaxed constraints on config.yaml structure (#5115)Massimiliano Culpo1-1/+0
This PR allows additional unused properties at the top-level of the config.yaml file. Having these properties permits to use two different versions of Spack, one of which adds a new property, without receiving error messages due to the presence of this new property in a configuration cache stored in the user's home.