spack/var/spack/repos/builtin/packages/py-git2/package.py
Todd Gamblin 62927654dd checksums: use sha256 checksums everywhere
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
2019-10-12 07:19:43 -07:00

32 lines
1.1 KiB
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 PyGit2(PythonPackage):
"""Pygit2 is a set of Python bindings to the libgit2 shared library,
libgit2 implements the core of Git.
"""
homepage = "http://www.pygit2.org/"
url = "https://pypi.io/packages/source/p/pygit2/pygit2-0.24.1.tar.gz"
version('0.24.1', sha256='4d1d0196b38d6012faf0a7c45e235c208315672b6035da504566c605ba494064')
extends('python')
depends_on('py-setuptools', type='build')
# Version must match with libgit2
# See: http://www.pygit2.org/install.html
depends_on('libgit2@0.24:', when='@0.24:')
depends_on('py-six', type=('build', 'run'))
depends_on('py-cffi', type=('build', 'run'))
def setup_environment(self, spack_env, run_env):
spec = self.spec
# http://www.pygit2.org/install.html
spack_env.set('LIBGIT2', spec['libgit2'].prefix)
spack_env.set('LIBGIT2_LIB', spec['libgit2'].prefix.lib)