summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-06-13Fix for `git pull --tags` when using git 1.7.1Todd Gamblin2-2/+11
- Added `ignore_errors` option to `Executable.__call__` - Can avoid raising errors on *specific* error return values.
2015-06-13Fix for repos with many tagsTom Scogland1-1/+8
Ensures all tags are ready before checkout, using `--branch` if possible and an extra pull if that is not available. Also adds `--depth 1` to create shallow clones if the git version is sufficient. Fixes #64.
2015-06-13removing vestigial lines from a previous commitTom Scogland1-4/+0
2015-06-11Merge pull request #61 from alfredo-gimenez/developTodd Gamblin1-1/+1
Mitos 0.9.1
2015-06-11Merge pull request #62 from trws/tmuxinatorTodd Gamblin3-0/+49
Partial ruby extension and tmuxinator package
2015-06-11Merge pull request #63 from trws/silver-searcherTodd Gamblin1-0/+17
adding package for the silver searcher
2015-06-11Removing comment lineTom Scogland1-1/+0
Missed that the auto-generated comment line stuck around.
2015-06-11Small ruby enhancement and tmuxinator packageTom Scogland3-0/+49
It is currently less painful to pull the source from github, compile it into a gem, then install the gem, than it is to download a gem and install it. This still lacks an activation mechanism, but `spack use tmuxinator` is functional.
2015-06-11Mitos 0.9.1Alfredo Gimenez1-1/+1
2015-06-10Merge pull request #60 from trws/expanded-vimTodd Gamblin1-3/+37
partial upgrade to vim package
2015-06-10adding package for the silver searcherTom Scogland1-0/+18
2015-06-10partial upgrade to vim packageTom Scogland1-3/+37
2015-06-10Merging in updated google group info from master onto develop.Todd Gamblin1-5/+3
2015-06-10Merge pull request #58 from trws/python-cffiTodd Gamblin2-0/+32
Python cffi
2015-06-10Merge pull request #56 from trws/uuid-task-and-taskdTodd Gamblin3-0/+56
package files for libuuid, needed for flux and taskwarrior packages
2015-06-10Merge pull request #55 from trws/gmp-dep-for-nettleTodd Gamblin1-0/+2
nettle depends on gmp, without it the nettle build fails on gcc 4.9.2
2015-06-10Merge pull request #57 from trws/zsh-use-fixTodd Gamblin1-1/+1
Zsh use fix
2015-06-09fixing regular expression matches to use regular expression syntax instead ↵Tom Scogland1-1/+1
of globbing syntax
2015-06-09nettle depends on gmp, without it the nettle build fails on gcc 4.9.2Tom Scogland1-0/+2
2015-06-09new package files for python-cffi and its dependency pycparserTom Scogland2-0/+32
2015-06-09package files for libuuid, needed for flux and taskwarrior packages, along ↵Tom Scogland3-0/+56
with the taskwarrior packages
2015-06-09Fix Boost finding in Dyninst 8.2.1.Todd Gamblin1-3/+5
2015-06-07Merge Kevin, Ben, and Saravan's contributions into developTodd Gamblin22-58/+580
- includes ATLAS, BLAS, LAPACK, other FastMATH packages.
2015-06-07Upate ATLAS and netlib-blas.Todd Gamblin2-12/+39
2015-06-07Try a little harder in concretize_version() -- concretize unsafe versions too.Todd Gamblin1-4/+20
- This can result in the user being prompted to download an unsafe version. - Avoids overly strict errors when something *could* be satisfiable but we don't know about hte version.
2015-06-07Add some comments b/c I didn't understand my own test.Todd Gamblin1-0/+3
2015-06-07SPACK-38: Allow specs to be indexed by virtual dependencies.Todd Gamblin4-17/+121
- The following now work differently: spec['mpi'] spec['blas'] This can return a spec for openmpi, mpich, mvapich, etc., EVEN if the spec is already concretized. This means that in a package that `depends_on('mpi')`, you can do `spec['mpi']` to see what it was concretized to. This should simplify MPI and BLAS packages. 'mpi' in spec 'blas' in spec Previously, if the spec had been concretized, these would be `False` because there was not a dependency in the DAG with either of these names. These will now be `True` even if the spec has been concretized. So, e.g., this will print "YES" s = Spec('callpath ^mpich') if 'mpi' in spec: print "YES" - Similarly, this will be True: Spec('mpich').satisfies('mpi') - Because of the way virtual dependencies are currently implemented, the above required some fiddling around with `package.py` so that it would never call `Spec.__contains__` (and result in endless recursion). - This should be fixed by allowing virutal dependnecies to have their own package class. - This would allow a quicker check for vdeps, without a call to `all_packages`. - For the time being, `package.py` shouldn't call `__contains__`
2015-06-06Make blas a virtual dependency, default netlib-blas.Todd Gamblin3-20/+8
2015-06-06Add disablement of cpu throttle check.Todd Gamblin1-1/+13
2015-06-06Delete lapack/atlas combined package.Todd Gamblin1-40/+0
2015-06-06Rename netlib_blas -> netlib-blasTodd Gamblin2-2/+2
2015-06-06Merge branch 'psaravan-fastmath' into features/fastmathTodd Gamblin16-40/+308
Conflicts: var/spack/packages/lapack/package.py
2015-06-06Merge branch 'develop' into features/fastmathTodd Gamblin153-1503/+9014
2015-06-06Remove dummy fastmath package.Todd Gamblin1-15/+0
2015-06-06fix up Saravan's petsc installTodd Gamblin1-12/+17
2015-06-06Working Hypre, PARPACK.Todd Gamblin3-30/+48
2015-06-06CGM package working on cab.Todd Gamblin1-6/+14
2015-06-06CBLAS package working and patching in spack compilers.Todd Gamblin1-11/+21
2015-06-06Working boxlib package.Todd Gamblin1-6/+16
2015-06-06Executables now have a useful __str__ function.Todd Gamblin1-0/+5
2015-06-06Cleanup and consolidate error handlingTodd Gamblin4-18/+21
2015-06-06Working ARPACK package.Todd Gamblin1-2/+6
2015-06-06Remove autosave files from saravan's PRTodd Gamblin2-41/+0
2015-06-06Clean up arpack build, use the Spack f77 compiler.Todd Gamblin1-10/+23
2015-06-06Add FileFilter convenience class to llnl.util.filesystem.Todd Gamblin1-1/+10
2015-06-06Updated HDF5 to use MPI.Saravan Pantham1-3/+3
2015-06-06Updated Zoltan.Saravan Pantham1-33/+0
2015-06-06Added more FASTMath packages.Saravan Pantham13-20/+279
2015-06-06Removed autosave files from previous commit.Saravan Pantham2-229/+0
2015-06-06Fixed BLAS and Lapack installationsSaravan Pantham5-17/+236