Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-02-02 | Bugfix: Extension hooks shoudl only run for extensions. | Todd Gamblin | 1 | -2/+4 | |
2015-02-02 | Add activate and deactivate commands for extensions. | Todd Gamblin | 2 | -0/+100 | |
2015-02-02 | Rework do_activate/activate and do_deactivate/deactivate semantics. | Todd Gamblin | 7 | -74/+105 | |
- packages can now extend only one other package. - do_activate() and do_deactivate() are now called on the extension, and they automatically find the extendee - activate() and deactivate() are still called on the extendee and are passed the extension. | |||||
2015-02-02 | Add PYTOHNPATH to modules for python extensions. | Todd Gamblin | 1 | -0/+8 | |
2015-02-02 | Add setup_extension_environment() method. | Todd Gamblin | 1 | -0/+30 | |
- lets packages do some setup before their extensions run install() | |||||
2015-02-02 | Move symlink tree routines to LinkTree class. | Todd Gamblin | 3 | -90/+176 | |
2015-02-02 | Added feature: package extensions | Todd Gamblin | 6 | -19/+258 | |
- packages can be "extended" by others - allows extension to be symlinked into extendee's prefix. - used for python modules. - first module: py-setuptools | |||||
2015-02-02 | do_install() passes kwargs to dependencies. | Todd Gamblin | 1 | -3/+3 | |
2015-02-02 | Add pre-install and pre-uninstall hooks. | Todd Gamblin | 2 | -1/+14 | |
2015-02-02 | New "extends" relation adds another special list to the package class. | Todd Gamblin | 2 | -1/+28 | |
2015-02-02 | Directory layout can now track installed extensions per package. | Todd Gamblin | 1 | -1/+96 | |
2015-02-02 | Fix bug in mirror path construction. | Todd Gamblin | 3 | -10/+13 | |
2015-01-23 | Packages have rpath property. | Todd Gamblin | 1 | -4/+27 | |
2015-01-22 | Add is_exe function to filesystem. | Todd Gamblin | 1 | -1/+6 | |
2015-01-14 | Fix #11: bug in ProviderIndex | Todd Gamblin | 1 | -16/+29 | |
- packages that provided same spec (e.g. mpe) were overwritten in the index - Index now has a set of providers instead of a single provider per provided spec. - see https://github.com/scalability-llnl/spack/issues/11 | |||||
2015-01-10 | Fix bug when all deps are back edges. | Todd Gamblin | 1 | -3/+6 | |
- Happened with the graph for SAMRAI | |||||
2015-01-10 | Fix bug in STAT graph | Todd Gamblin | 1 | -13/+19 | |
2015-01-05 | Allow commands to return error codes. | Todd Gamblin | 2 | -0/+6 | |
2015-01-04 | Expansion works properly, simplified graph code. | Todd Gamblin | 2 | -90/+148 | |
2015-01-03 | bugfix for dot graphs of virtual packages. | Todd Gamblin | 2 | -11/+17 | |
2015-01-03 | Factor graph code out into its own module, rework spack graph. | Todd Gamblin | 6 | -317/+509 | |
2014-12-31 | Color graph edges. | Todd Gamblin | 1 | -21/+42 | |
2014-12-30 | Pipelining back edges works, saves more space. | Todd Gamblin | 1 | -42/+71 | |
2014-12-29 | Reduce number of immediate expand/contracts. | Todd Gamblin | 1 | -9/+21 | |
2014-12-29 | More compact graphs: do back edges before forward expansion. | Todd Gamblin | 1 | -46/+80 | |
2014-12-29 | Spec graph works without color. | Todd Gamblin | 2 | -19/+12 | |
2014-12-29 | Fix ColorStream | Todd Gamblin | 2 | -10/+14 | |
2014-12-29 | Partially wroking ASCII dependency graph. | Todd Gamblin | 2 | -1/+187 | |
2014-12-26 | spack graph allows plotting specific packages. | Todd Gamblin | 4 | -12/+54 | |
2014-12-25 | Fix lack of sorting in version concretization. | Todd Gamblin | 1 | -2/+3 | |
2014-12-25 | Merge branch 'features/qt' into develop | Todd Gamblin | 4 | -8/+116 | |
2014-12-25 | URLFetchStrategy now contains exploding tarballs. | Todd Gamblin | 1 | -1/+19 | |
2014-12-25 | Fix up bzip2 install | Todd Gamblin | 2 | -0/+9 | |
2014-12-25 | Clearer code in filter_file. | Todd Gamblin | 1 | -2/+5 | |
2014-12-25 | spack env command | Todd Gamblin | 1 | -0/+69 | |
spack env allows regular commands to be run with a spack build environment. It also displays the spack build environment for a package. | |||||
2014-12-25 | Add patch function to Package, so that packages can define custom patch ↵ | Todd Gamblin | 2 | -5/+18 | |
functions. | |||||
2014-12-23 | Print out fetch, build, and total time for builds. | Todd Gamblin | 1 | -1/+15 | |
2014-12-22 | Merge branch 'features/better-mirror-support' into develop | Todd Gamblin | 3 | -11/+27 | |
2014-12-18 | Fix for SPACK-49. | Todd Gamblin | 2 | -2/+5 | |
- name conflict in imp.load_source caused this to fail. - Python modules loaded by imp have unique names now. | |||||
2014-12-18 | Allow fake installations (just make the directory). | Todd Gamblin | 2 | -7/+19 | |
- Use for debugging. | |||||
2014-12-15 | Partial fix for SPACK-48. | Todd Gamblin | 3 | -16/+21 | |
- Try to accommodate packages that have grown dependencies better. - This will only get fully fixed when optional dependencies are supported and some extra functionality is added to the spec syntax. | |||||
2014-12-12 | Better mirror path calculation. | Todd Gamblin | 3 | -11/+27 | |
- Add support in spack.url for extrapolating actual file type for URL - Move mirror path computation to mirror.py from package.py | |||||
2014-12-12 | Handle cases where tarball is in the URL query string. | Todd Gamblin | 4 | -31/+76 | |
2014-12-09 | Add support for URLs with query strings | Todd Gamblin | 1 | -1/+25 | |
- support tarballs from raw github URLs | |||||
2014-12-08 | Bugfix in create and checksum | Todd Gamblin | 2 | -20/+20 | |
2014-12-04 | Minor tweak: use self.git everywhere in get fetch strategy. | Todd Gamblin | 1 | -2/+2 | |
2014-12-04 | Bugfix in create command. | Todd Gamblin | 1 | -2/+2 | |
2014-12-02 | Merge branch 'features/better-find' into develop | Todd Gamblin | 7 | -140/+210 | |
2014-12-02 | CLI improvements to find and list. | Todd Gamblin | 2 | -6/+11 | |
2014-12-02 | colify handles ansi color input directly; no more decorator. | Todd Gamblin | 5 | -48/+56 | |