diff options
author | Satish Balay <balay@mcs.anl.gov> | 2018-06-13 19:24:53 +0530 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-06-13 08:54:53 -0500 |
commit | c12855dce553fdce18de7cd6668a613fc91279f0 (patch) | |
tree | 9d2b0bb57871b95fb4d7c14d2d9bfd42d9480f8c /var | |
parent | b27da52e4b44ceef4b87c6b54e3bf38cb0439a98 (diff) | |
download | spack-c12855dce553fdce18de7cd6668a613fc91279f0.tar.gz spack-c12855dce553fdce18de7cd6668a613fc91279f0.tar.bz2 spack-c12855dce553fdce18de7cd6668a613fc91279f0.tar.xz spack-c12855dce553fdce18de7cd6668a613fc91279f0.zip |
trilinos: use 'branch' option to specify branches such as develop/master [they are not tags] (#8448)
Fixes the following problem:
==> Installing trilinos
==> Warning: Suspicious requests to set or unset 'LD_LIBRARY_PATH' found
==> Warning: env.unset('LD_LIBRARY_PATH') at /home/balay/spack.new/lib/spack/spack/build_environment.py:269
==> Warning: ---> env.set('%s' % key, value) at /home/balay/spack.new/lib/spack/spack/build_environment.py:292
==> Trying to clone git repository: https://github.com/trilinos/Trilinos.git at tag develop
Fetching tags only, you probably meant:
git fetch --tags
error: pathspec 'develop' did not match any file(s) known to git.
==> Fetching from [git] https://github.com/trilinos/Trilinos.git failed.
==> Error: FetchError: All fetchers failed for trilinos-develop-tgkpnctp6nn4imoizxlw4ymqyztcie4n
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/trilinos/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/trilinos/package.py b/var/spack/repos/builtin/packages/trilinos/package.py index 83032de1d2..9a2be4036b 100644 --- a/var/spack/repos/builtin/packages/trilinos/package.py +++ b/var/spack/repos/builtin/packages/trilinos/package.py @@ -53,9 +53,9 @@ class Trilinos(CMakePackage): version('xsdk-0.2.0', git='https://github.com/trilinos/Trilinos.git', tag='xsdk-0.2.0') version('develop', - git='https://github.com/trilinos/Trilinos.git', tag='develop') + git='https://github.com/trilinos/Trilinos.git', branch='develop') version('master', - git='https://github.com/trilinos/Trilinos.git', tag='master') + git='https://github.com/trilinos/Trilinos.git', branch='master') version('12.12.1', 'ecd4606fa332212433c98bf950a69cc7') version('12.10.1', '667333dbd7c0f031d47d7c5511fd0810') version('12.8.1', '9f37f683ee2b427b5540db8a20ed6b15') |