spack/var/spack/repos/builtin/packages/libgit2/package.py
Todd Gamblin 00f91ab22b checksums: Remove or fix up unfetchable or unverifiable md5 versions
This commit either removes remaining md5 checksums, or it replaces them
with sha256 checksums verified by fetching over https.
2019-10-12 07:19:43 -07:00

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')