summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-02-15Add profile option to spack script.Todd Gamblin1-40/+49
2015-02-06Fix libpng to use a better URLTodd Gamblin1-2/+3
Sourceforge URLs like this eventually die when the libpng version is bumped: http://sourceforge.net/projects/libpng/files/libpng16/1.6.14/libpng-1.6.14.tar.gz/download But ones like this give you a "permanently moved", which curl -L will follow: http://download.sourceforge.net/libpng/libpng-1.6.16.tar.gz
2015-02-02Fix bug in mirror path construction.Todd Gamblin3-10/+13
2015-01-23Add extra gcc dependencies.Todd Gamblin3-0/+71
- not used until optional/conditional deps are implemented.
2015-01-23Packages have rpath property.Todd Gamblin2-10/+50
2015-01-22Add is_exe function to filesystem.Todd Gamblin1-1/+6
2015-01-17Dyninst 8.2 works.Todd Gamblin1-3/+24
2015-01-14Fix #11: bug in ProviderIndexTodd Gamblin1-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-13Merge branch 'features/dep-graph' into developTodd Gamblin10-55/+655
2015-01-13Merge branch 'develop' of github.com:scalability-llnl/spack into developTodd Gamblin3-0/+98
2015-01-13Add list_url for ompssTodd Gamblin1-2/+2
2015-01-12Merge pull request #26 in SCALE/spack from ~JAULMES1/spack:develop to developGeorge Todd Gamblin2-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-12Updated versions in OmpSs and Extrae, which resolves version-dependency ↵Luc Jaulmes2-17/+18
problems with MPI
2015-01-10Fix bug when all deps are back edges.Todd Gamblin1-3/+6
- Happened with the graph for SAMRAI
2015-01-10Fix bug in STAT graphTodd Gamblin1-13/+19
2015-01-08Merge pull request #10 from justintoo/roseTodd Gamblin3-0/+98
Add Packages for ROSE and JDK
2015-01-07(Package) Add ROSE compiler packageJustin Too2-0/+52
2015-01-07(Package) Add Oracle JDK packageJustin Too1-0/+46
2015-01-05Allow commands to return error codes.Todd Gamblin3-1/+15
2015-01-04Expansion works properly, simplified graph code.Todd Gamblin2-90/+148
2015-01-03bugfix for dot graphs of virtual packages.Todd Gamblin2-11/+17
2015-01-03Factor graph code out into its own module, rework spack graph.Todd Gamblin6-317/+509
2014-12-31Color graph edges.Todd Gamblin1-21/+42
2014-12-30Pipelining back edges works, saves more space.Todd Gamblin1-42/+71
2014-12-29Reduce number of immediate expand/contracts.Todd Gamblin1-9/+21
2014-12-29More compact graphs: do back edges before forward expansion.Todd Gamblin1-46/+80
2014-12-29Spec graph works without color.Todd Gamblin2-19/+12
2014-12-29Fix ColorStreamTodd Gamblin2-10/+14
2014-12-29Partially wroking ASCII dependency graph.Todd Gamblin2-1/+187
2014-12-26spack graph allows plotting specific packages.Todd Gamblin4-12/+54
2014-12-26Git package.Todd Gamblin1-0/+27
2014-12-25Fix lack of sorting in version concretization.Todd Gamblin1-2/+3
2014-12-25Fix SPINDLE and SCR download URLs.Todd Gamblin2-2/+2
2014-12-25Merge branch 'features/qt' into developTodd Gamblin30-10/+583
2014-12-25URLFetchStrategy now contains exploding tarballs.Todd Gamblin1-1/+19
2014-12-25Fix up bzip2 installTodd Gamblin3-1/+25
2014-12-25Qt4 builds successfully with proper RPATHs.Todd Gamblin17-5/+300
2014-12-25Clearer code in filter_file.Todd Gamblin1-2/+5
2014-12-25spack env commandTodd Gamblin1-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-25Add patch function to Package, so that packages can define custom patch ↵Todd Gamblin2-5/+18
functions.
2014-12-23Print out fetch, build, and total time for builds.Todd Gamblin1-1/+15
2014-12-23Updates for Qt dependenciesTodd Gamblin5-2/+41
2014-12-23gnutls, nettle, wget, dbusTodd Gamblin5-26/+69
2014-12-23Initial versions of Qt and some dependencies.Todd Gamblin3-0/+73
2014-12-22Merge branch 'features/better-mirror-support' into developTodd Gamblin3-11/+27
2014-12-22Tweak extrae indentation.Todd Gamblin1-1/+9
2014-12-22Merge branch 'features/gperftools' into developTodd Gamblin1-0/+38
2014-12-19Fix for SPACK-50Todd Gamblin1-1/+2
Bad format string in version check.
2014-12-18Merge branch 'bugfix/load-hooks-fix' into developTodd Gamblin4-9/+24
2014-12-18Fix for SPACK-49.Todd Gamblin2-2/+5
- name conflict in imp.load_source caused this to fail. - Python modules loaded by imp have unique names now.