
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
20 lines
744 B
Python
20 lines
744 B
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
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"
|
|
url = "https://github.com/rizsotto/Bear/archive/2.0.4.tar.gz"
|
|
|
|
version('2.2.0', sha256='6bd61a6d64a24a61eab17e7f2950e688820c72635e1cf7ea8ea7bf9482f3b612')
|
|
version('2.0.4', sha256='33ea117b09068aa2cd59c0f0f7535ad82c5ee473133779f1cc20f6f99793a63e')
|
|
|
|
depends_on('python')
|
|
depends_on('cmake@2.8:', type='build')
|