Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-02-15 | Memoize all_specs() and exists() for better performance. | Todd Gamblin | 2 | -2/+10 | |
- Real bottleneck is calling normalize() for every spec when we read it. - Need to store graph information in spec files to avoid the need for this. - Also, normalizing old specs isn't always possible, so we need to do this anyway. | |||||
2015-02-15 | py-sip installs properly into a prefix | Todd Gamblin | 2 | -3/+14 | |
2015-02-15 | Better extension activation/deactivation | Todd Gamblin | 4 | -56/+133 | |
2015-02-15 | installed_extensions_for no longer fails when nothing known about pkg | Todd Gamblin | 1 | -2/+9 | |
2015-02-09 | typo: Self -> self | Gregory L. Lee | 1 | -1/+1 | |
2015-02-09 | Python package improvements. | Todd Gamblin | 9 | -13/+90 | |
2015-02-08 | "spack extensions" shows total extension count. | Todd Gamblin | 1 | -1/+2 | |
2015-02-08 | Move dpeendency environment setup to build_environemnt. | Todd Gamblin | 2 | -5/+5 | |
2015-02-08 | import fix in cmd/clean | Todd Gamblin | 1 | -0/+1 | |
2015-02-08 | setup_extension_environment is now setup_dependent_environment. | Todd Gamblin | 3 | -7/+15 | |
- other packages, like Qt, can now use this to set up relevant build variables and env vars for their dependencies. - not just extensions anymore. | |||||
2015-02-08 | Minor textual error in extensions command. | Todd Gamblin | 1 | -1/+1 | |
2015-02-08 | Cleaned up python to remove redundant line. | Todd Gamblin | 1 | -5/+5 | |
2015-02-08 | directory_layout now raises an error when an install fails. | Todd Gamblin | 1 | -2/+18 | |
2015-02-06 | add dependent packages to PYTHONPATH for build | Gregory L. Lee | 1 | -0/+5 | |
2015-02-04 | Do not automatically activate extensions on install. | Todd Gamblin | 1 | -6/+2 | |
2015-02-04 | Bugfix in spak extensions | Todd Gamblin | 1 | -2/+2 | |
2015-02-02 | More information in extensions command. | Todd Gamblin | 2 | -9/+36 | |
2015-02-02 | Add extensions command. | Todd Gamblin | 8 | -12/+99 | |
2015-02-02 | Fixed dumb link_tree bug, added test for link tree. | Todd Gamblin | 4 | -87/+274 | |
2015-02-02 | Add "spack extensions" command to list activated extensions. | Todd Gamblin | 2 | -27/+117 | |
2015-02-02 | Fix for install sanity check -- don't count hidden dir layout files. | Todd Gamblin | 1 | -4/+10 | |
2015-02-02 | added more Python modules | Gregory L. Lee | 7 | -2/+64 | |
2015-02-02 | added more Python modules | Gregory L. Lee | 15 | -2/+212 | |
2015-02-02 | Ability to ignore files in activate/deactivate for extensions. | Todd Gamblin | 4 | -22/+26 | |
2015-02-02 | Add arguements to extends() and activate/deactivate. | Todd Gamblin | 3 | -20/+69 | |
2015-02-02 | added several modules | Gregory L. Lee | 14 | -0/+204 | |
2015-02-02 | added py-nose | Gregory L. Lee | 1 | -0/+13 | |
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 | 3 | -7/+52 | |
- 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 | 7 | -19/+261 | |
- 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 | First python extension package: setuptools | Todd Gamblin | 1 | -0/+19 | |
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 | Add extra gcc dependencies. | Todd Gamblin | 3 | -0/+71 | |
- not used until optional/conditional deps are implemented. | |||||
2015-01-23 | Packages have rpath property. | Todd Gamblin | 2 | -10/+50 | |
2015-01-22 | Add is_exe function to filesystem. | Todd Gamblin | 1 | -1/+6 | |
2015-01-17 | Dyninst 8.2 works. | Todd Gamblin | 1 | -3/+24 | |
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-13 | Merge branch 'features/dep-graph' into develop | Todd Gamblin | 10 | -55/+655 | |
2015-01-13 | Merge branch 'develop' of github.com:scalability-llnl/spack into develop | Todd Gamblin | 3 | -0/+98 | |
2015-01-13 | Add list_url for ompss | Todd Gamblin | 1 | -2/+2 | |
2015-01-12 | Merge pull request #26 in SCALE/spack from ~JAULMES1/spack:develop to develop | George Todd Gamblin | 2 | -17/+18 | |
# By Luc Jaulmes # Via Luc Jaulmes * commit '844c0838487529c0f2edc6f09e6ef86f12364716': Updated versions in OmpSs and Extrae, which resolves version-dependency problems with MPI | |||||
2015-01-12 | Updated versions in OmpSs and Extrae, which resolves version-dependency ↵ | Luc Jaulmes | 2 | -17/+18 | |
problems with MPI |