summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormiheer vaidya <m.vaidya@utah.edu>2022-06-02 10:31:10 -0600
committerGitHub <noreply@github.com>2022-06-02 09:31:10 -0700
commitbd15ca4f162d323f39882e87cb05b219cfa7f0fe (patch)
treef2f80011daf6deb5b8f5d44025ab90f475a8cadb
parentf9dfd5fcb88a22c2a686409fa15b3724de52c4cc (diff)
downloadspack-bd15ca4f162d323f39882e87cb05b219cfa7f0fe.tar.gz
spack-bd15ca4f162d323f39882e87cb05b219cfa7f0fe.tar.bz2
spack-bd15ca4f162d323f39882e87cb05b219cfa7f0fe.tar.xz
spack-bd15ca4f162d323f39882e87cb05b219cfa7f0fe.zip
Update bear to v3.0.0 (#30835)
-rw-r--r--var/spack/repos/builtin/packages/bear/package.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/bear/package.py b/var/spack/repos/builtin/packages/bear/package.py
index 4669c24fee..23ba171951 100644
--- a/var/spack/repos/builtin/packages/bear/package.py
+++ b/var/spack/repos/builtin/packages/bear/package.py
@@ -10,10 +10,19 @@ class Bear(CMakePackage):
"""Bear is a tool that generates a compilation database for clang tooling
from non-cmake build systems."""
homepage = "https://github.com/rizsotto/Bear"
+ git = "git@github.com:rizsotto/Bear.git"
url = "https://github.com/rizsotto/Bear/archive/2.0.4.tar.gz"
+ maintainers = ['vmiheer', 'trws']
+ version('3.0.19', sha256='2fcfe2c6e029182cfc54ed26b3505c0ef12b0f43df03fb587f335afdc2ca9431')
+ version('3.0.18', sha256='ae94047c79b4f48462b66981f66a67b6a833d75d4c40e7afead491b1865f1142')
+ version('3.0.0', sha256='7b68aad69e887d945ad20f8e9f3a8c33cf2d59cc80da7e52d931d8c685fe2f79')
version('2.2.0', sha256='6bd61a6d64a24a61eab17e7f2950e688820c72635e1cf7ea8ea7bf9482f3b612')
version('2.0.4', sha256='33ea117b09068aa2cd59c0f0f7535ad82c5ee473133779f1cc20f6f99793a63e')
- depends_on('python')
+ depends_on('fmt', when='@3.0.0:')
+ depends_on('grpc', when='@3.0.0:')
+ depends_on('nlohmann-json', when='@3.0.0:')
+ depends_on('spdlog', when='@3.0.0:')
depends_on('cmake@2.8:', type='build')
+ depends_on('python', type='build')