summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)AuthorFilesLines
2016-05-11Correct LLNL LGPL license template for clarity.Todd Gamblin3-16/+40
2016-04-12fix : proper update of config file (before it was discarding architectures ↵alalazo1-1/+1
that were not the current one) fixes #774
2016-03-05Fix #104, #54: issues with overlong shebang in deep directories.Todd Gamblin1-0/+84
This does several things: - Add `sbang`: a script to run scripts with long shebang lines. - Documentation for `sbang` is in `bin/sbang`. - Add an `sbang` hook that filters the `bin` directory after install and modifies any scripts wtih shebangs that are too long to use `sbang` instead. - `sbang` is at the top level, so it should be runnable (not much we can do if spack itself is too deep for shebang) - `sbang`, when used as the interpreter, runs the *second* shebang line it finds in a script. - shoud fix issues with too long shebang paths.
2016-01-25Fix variable name bugAdam J. Stewart1-4/+4
2016-01-19Merge branch 'mplegendre-multi_pkgsrc_roots' into developTodd Gamblin1-2/+2
- This moves var/spack/packages to var/spack/repos/builtin/packages. - Packages that did not exist in the source branch, or were changed in develop, were moved into var/spack/repos/builtin/packages as part of the integration. Conflicts: lib/spack/spack/test/unit_install.py var/spack/repos/builtin/packages/clang/package.py
2016-01-17Merge pull request #202 from scheibelp/features/unittest-xml-output-noseTodd Gamblin1-0/+8
Features/unittest xml output nose
2015-12-25Merge branch 'develop' into mplegendre-multi_pkgsrc_rootsTodd Gamblin2-3/+25
Conflicts: lib/spack/spack/cmd/create.py lib/spack/spack/cmd/extensions.py lib/spack/spack/cmd/fetch.py lib/spack/spack/cmd/uninstall.py lib/spack/spack/config.py lib/spack/spack/database.py lib/spack/spack/directory_layout.py lib/spack/spack/packages.py lib/spack/spack/spec.py
2015-12-21fix a few comment typosMike Nolta1-1/+1
2015-12-16added option to enable pdb debugGregory L. Lee1-0/+5
2015-12-09Change github.com/scalability-llnl to github.com/llnl everywhere.Todd Gamblin2-2/+2
2015-12-02Try to be more careful to only suppress the warning about nose already beingPeter Scheibel1-1/+1
imported. Other warnings should be output.
2015-11-28Fix spack.db -> spack.repo in bin/spackTodd Gamblin1-2/+2
2015-11-25On systems which have already installed nose (perhaps an older version)Peter Scheibel1-0/+8
importing nose (which is also in Spack's external/ directory) outputs a warning (since there is more than one nose package). This avoids printing the warning to the user.
2015-11-23Add a fix/warning so that stale .pyc files don't kill Spack.Todd Gamblin1-0/+15
- Can't think of a better way to do this. - The externals integration will cause spack to die in weird ways for users who just pull from develop.
2015-11-12Merge branch 'develop' into mplegendre-multi_pkgsrc_rootsTodd Gamblin1-1/+1
Conflicts: lib/spack/spack/__init__.py lib/spack/spack/directives.py lib/spack/spack/packages.py
2015-11-11Insert lib/spack/external into sys.path. This avoids cases where the systemPeter Scheibel1-0/+2
python install and lib/spack/external have the same library installed. This requires modifying the names of some modules in lib/spack/external in cases where both the system python and backported features of future python versions (i.e. after 2.6) are used (previously distinguished by "from external import X" and "import X").
2015-10-08update warning message for spack -k.Todd Gamblin1-1/+1
- warning said it didn't do checksums; really does.
2015-09-17WIP for Matt's branchTodd Gamblin1-2/+2
2015-06-06Cleanup and consolidate error handlingTodd Gamblin1-8/+1
2015-05-18Merge branch 'features/optional-deps' into developTodd Gamblin1-0/+4
This includes: - Much better variant support (+debug/-debug) - Optional dependency support (depends_on(... , when='<condition>') - New config file format (YAML in ~/.spack) - New Spec format (YAML in $prefix/.spack/spec.yaml)
2015-05-17Add help on specs to top of spack -hTodd Gamblin1-1/+15
2015-05-12Add debug handler to print a stacktrace on Ctrl-C in debug mode.Todd Gamblin1-0/+4
2015-04-07Allow spack install -j to throttle make jobs.Todd Gamblin1-5/+5
2015-02-15Add profile option to spack script.Todd Gamblin1-40/+49
2015-01-05Allow commands to return error codes.Todd Gamblin1-1/+9
2014-12-19Fix for SPACK-50Todd Gamblin1-1/+2
Bad format string in version check.
2014-11-07Improved website scraping.Todd Gamblin1-0/+1
2014-10-15Add test cases for mirroring.Todd Gamblin1-1/+1
2014-08-20Merge branch 'features/python-2.6-compatibility' into developTodd Gamblin1-3/+3
- Changed 'import argparse' to 'from external import argparse' in conflicts. Conflicts: lib/spack/spack/cmd/dotkit.py lib/spack/spack/cmd/unuse.py lib/spack/spack/cmd/use.py
2014-08-16Consolidate most module code into spack.modules and spack.cmd.moduleTodd Gamblin1-0/+7
- One file with all the module classes (spack/modules.py) - Has an EnvModule superclass that does most of the work and consolidates common code - Subclasses have specializations for different module systems (TclModule, Dotkit) - One command (spack module) for all the types of modules to use - the one command is used by the scripts, only need to maintain in one place - has some subcommands for different module types, but they're handled mostly generically. - Consolidate zsh support into a single setup-env.sh script.
2014-08-10Test cases pass; Spack supports Python 2.6!Todd Gamblin1-2/+2
2014-08-10Remvoe dependence on v2.7 argparse by including argparse.Todd Gamblin1-1/+1
2014-07-02Add TAU package and routines to filter files, fix sed calls.Todd Gamblin1-0/+1
- TAU doesn't install to directories with '@' in the name. - Need to fix up its scripts. - routines to filter files as sed would, but using python regular expressions. - TAU package uses this.
2014-06-24spack mirror now checksums fetched archives.Todd Gamblin1-1/+1
2014-06-22Make debug and verbose output work properly.Todd Gamblin1-1/+3
2014-06-22Initial ability to swap compilers.Todd Gamblin1-1/+2
Fixes SPACK-16 and forces compiler script to build using compiler wrappers. - works with gcc and clang on laptop.
2014-04-13Make SSL verification failures recommend spack -kTodd Gamblin1-1/+3
- Adds optional long message to SpackError - tty now wraps long message text.
2014-03-16Move packages and mock packages to /var/spackTodd Gamblin1-3/+7
2014-03-16New, more consistent package directory structure.Todd Gamblin1-3/+4
- Packages now live in <package_name>/package.py - spack.packages refactored to use a PackageDB object instead of monolithic module. - Implementation of mock_packages_test.py is greatly simplified - Added test to exercise install/uninstall code because that wasn't covered by existing tests and kept breaking.
2014-03-14Moving utilities to a common LLNL package.Todd Gamblin1-1/+1
2014-03-13Support github URLsTodd Gamblin1-1/+1
2014-03-13Added a -k/--insecure option to make curl not check certs.Todd Gamblin1-2/+9
2014-01-13Script to make 'spack python' usable across platforms in shebang scripts.Todd Gamblin1-0/+43
2014-01-08Add license to python files and spack script.Todd Gamblin1-0/+24
2013-12-12Start of basic documentationTodd Gamblin1-1/+1
2013-12-09Tweak for help outputTodd Gamblin1-2/+1
2013-11-23Added web spider capability for listing versions.Todd Gamblin1-0/+6
2013-10-07Checkpoint commit: much-improved spec class.Todd Gamblin1-0/+8
Still organizing things.
2013-06-02Add checks for version 2.7Todd Gamblin1-2/+4
2013-05-15Use realpath in addition to expanduser to locate spack directory.Todd Gamblin1-1/+2