
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
28 lines
1020 B
Python
28 lines
1020 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 MsgpackC(CMakePackage):
|
|
"""A small, fast binary interchange format convertible to/from JSON"""
|
|
homepage = "http://www.msgpack.org"
|
|
url = "https://github.com/msgpack/msgpack-c/archive/cpp-3.0.1.tar.gz"
|
|
|
|
version('3.0.1', sha256='1b834ab0b5b41da1dbfb96dd4a673f6de7e79dbd7f212f45a553ff9cc54abf3b')
|
|
version('1.4.1', sha256='74324d696f9abb75d8a7cd5e77add5062592b7eac386c8102de78a6cc5309886')
|
|
|
|
depends_on('cmake@2.8.12:', type='build')
|
|
depends_on('googletest', type='test')
|
|
|
|
def cmake_args(self):
|
|
args = [
|
|
"-DCMAKE_CXX_FLAGS=-Wno-implicit-fallthrough",
|
|
"-DCMAKE_C_FLAGS=-Wno-implicit-fallthrough",
|
|
'-DMSGPACK_BUILD_TESTS:BOOL={0}'.format(
|
|
'ON' if self.run_tests else 'OFF')
|
|
]
|
|
return args
|