
This commit either removes remaining md5 checksums, or it replaces them with sha256 checksums verified by fetching over https.
23 lines
796 B
Python
23 lines
796 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 Libgit2(CMakePackage):
|
|
"""libgit2 is a portable, pure C implementation of the Git core
|
|
methods provided as a re-entrant linkable library with a solid
|
|
API, allowing you to write native speed custom Git applications in
|
|
any language which supports C bindings.
|
|
"""
|
|
|
|
homepage = "https://libgit2.github.com/"
|
|
url = "https://github.com/libgit2/libgit2/archive/v0.24.2.tar.gz"
|
|
|
|
version('0.26.0', sha256='6a62393e0ceb37d02fe0d5707713f504e7acac9006ef33da1e88960bd78b6eac')
|
|
|
|
depends_on('cmake@2.8:', type='build')
|
|
depends_on('libssh2')
|