From c12855dce553fdce18de7cd6668a613fc91279f0 Mon Sep 17 00:00:00 2001 From: Satish Balay Date: Wed, 13 Jun 2018 19:24:53 +0530 Subject: [PATCH] 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 --- var/spack/repos/builtin/packages/trilinos/package.py | 4 ++-- 1 file 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 83032de1d28..9a2be4036b9 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')