Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-02-08 | add mvapich2 module | Adam Moody | 2 | -0/+38 | |
2014-02-08 | Support for patches in packages. | Todd Gamblin | 8 | -13/+246 | |
- packages can provide patch() directive to specify a patch file that should be applied to source code after expanding it and before building. - patches can have a when spec, so they're only applied under certain conditions - patches can be local files in the package's own directory, or they can be URLs which will be fetched from the internet. | |||||
2014-02-08 | Packages can now live in directories, not just .py files. | Todd Gamblin | 6 | -7/+143 | |
This gives us a place to put patch files. | |||||
2014-02-07 | Fix regex used in find_versions_of_archive. | Todd Gamblin | 2 | -3/+8 | |
Fixes github issue #2, as well as spack create for mvapich. | |||||
2014-02-07 | Add dirty options to create and checksum, like install. | Todd Gamblin | 3 | -5/+12 | |
2014-02-07 | Fix bugs that crept into spack clean when stage was refactored. | Todd Gamblin | 4 | -10/+9 | |
2014-02-07 | Make default spack text non-bold | Todd Gamblin | 1 | -1/+1 | |
2014-02-07 | Merge pull request #4 from jprotze/master | Todd Gamblin | 1 | -2/+2 | |
fix bug introduced by name change of arch package to 'architecture' | |||||
2014-02-07 | fix alias naming | jprotze | 1 | -2/+2 | |
2014-02-06 | Spack message text is just bold, not bold white now. | Todd Gamblin | 2 | -12/+17 | |
- added capability for just bold and just underline to color.py - Make tty.msg() display bold text instead of bold white | |||||
2014-02-05 | Fixed regressions. | Todd Gamblin | 2 | -10/+9 | |
2014-02-05 | Bugfix in clean command. | Todd Gamblin | 1 | -1/+1 | |
2014-02-05 | Fix bug in make jobs parameter. | Todd Gamblin | 1 | -1/+1 | |
2014-02-05 | Fix Mac OS package icon. | Todd Gamblin | 1 | -1/+1 | |
2014-02-05 | Architecture string can contain '.' now. | Todd Gamblin | 1 | -1/+0 | |
2014-02-05 | Allow file URLs | Todd Gamblin | 1 | -1/+1 | |
2014-02-05 | Ignore more errors when spidering. | Todd Gamblin | 1 | -0/+4 | |
2014-02-05 | Fix spelling error in tmp dir | Todd Gamblin | 1 | -1/+1 | |
2014-02-05 | Simplify redundant conditional. | Todd Gamblin | 1 | -7/+1 | |
2014-02-05 | Fix import bug. | Todd Gamblin | 1 | -0/+3 | |
2014-02-05 | Fix bug in staging. | Todd Gamblin | 1 | -2/+2 | |
- Stage needs to account for symlinks in self.tmp_dir - Use os.realpath on self.tmp_dir when checking to see if a stage needs to be rebuilt | |||||
2014-02-05 | Can now mirror tarballs in a local directory. | Todd Gamblin | 5 | -39/+69 | |
- Can add tarballs to local directory; no longer have to download from source URL. | |||||
2014-01-23 | Merge pull request #1 from scalability-llnl/20140121_bug_fixes | Todd Gamblin | 3 | -36/+35 | |
bug fixes from Greg Lee | |||||
2014-01-23 | bug fixes | Gregory L. Lee | 3 | -36/+35 | |
- Make prefix an actual string so that install doesn't fail. - Executable should throw SpackError on command failure. | |||||
2014-01-15 | More typo fixes | Todd Gamblin | 1 | -38/+35 | |
2014-01-14 | typo fixes from Adam | Todd Gamblin | 2 | -9/+9 | |
2014-01-14 | Add release number to README | Todd Gamblin | 1 | -0/+1 | |
2014-01-13 | Add README for github repo. | Todd Gamblin | 1 | -0/+37 | |
2014-01-13 | Script to make 'spack python' usable across platforms in shebang scripts. | Todd Gamblin | 1 | -0/+43 | |
2014-01-12 | Developer documentation | Todd Gamblin | 6 | -5/+292 | |
2014-01-12 | Remove trailing whitespace from license text | Todd Gamblin | 93 | -469/+465 | |
2014-01-11 | Site configuration docs | Todd Gamblin | 2 | -0/+122 | |
2014-01-09 | Add line to disable jekyll on github. | Todd Gamblin | 1 | -0/+5 | |
2014-01-09 | Fix docs to account for license header. | Todd Gamblin | 2 | -0/+2 | |
2014-01-09 | Add a rule for automatically creating gh-pages from html docs. | Todd Gamblin | 1 | -0/+14 | |
2014-01-09 | make empty _static directory "exist" to git | Todd Gamblin | 1 | -0/+4 | |
Sphinx really wants the _static directory to exist, but git doesn't. This is a compromise to avoid superfluous warnings from sphinx. See here: http://stackoverflow.com/questions/115983/how-do-i-add-an-empty-directory-to-a-git-repository | |||||
2014-01-08 | Add release number to docs and license. | Todd Gamblin | 2 | -1/+23 | |
2014-01-08 | Change to github URL in docs. | Todd Gamblin | 2 | -7/+9 | |
2014-01-08 | Add license to python files and spack script. | Todd Gamblin | 95 | -0/+2621 | |
2014-01-07 | Change multimethods to take first match instead of being rigid. | Todd Gamblin | 5 | -46/+71 | |
- Formerly required that one and only one spec match - Now allows first match in a list (more flexible and more intuitive) - introduces new bug that provides() doesn't do the correct thing when a version is not in a range that has been explicitly provided. - TODO: fix this. | |||||
2014-01-06 | Packaging docs are mostly done. | Todd Gamblin | 1 | -38/+93 | |
2014-01-06 | More packaging docs | Todd Gamblin | 2 | -73/+277 | |
2014-01-06 | Local specs now called "anonymous specs" | Todd Gamblin | 6 | -92/+126 | |
- anonymous specs have no name - "local spec" came from these first being used in multimethods, i.e. "name of the local Package" - not the most intuitive name. | |||||
2014-01-06 | Simpler prefix args. | Todd Gamblin | 8 | -10/+10 | |
2014-01-06 | Remove install methods from mock packages (not needed) | Todd Gamblin | 5 | -44/+5 | |
2014-01-06 | SPACK-14: Bugfix in Spec.normalize() | Todd Gamblin | 6 | -32/+107 | |
- Normalize now updates the provider index as it addes package dependencies. - Fixes problem where this breaks: a depends_on mpi a depends_on b b depends_on mpich - Packages now restrict the mpi dependency to mpich | |||||
2014-01-04 | Change deps on 'mpich' to 'mpi' | Todd Gamblin | 2 | -2/+2 | |
2014-01-04 | More packaging documentation | Todd Gamblin | 2 | -13/+477 | |
2014-01-03 | Bug fix in how class names are determined | Todd Gamblin | 1 | -2/+5 | |
2013-12-26 | More packaging documentation. | Todd Gamblin | 10 | -62/+509 | |