spack/var/spack/repos/builtin/packages/xsimd/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

38 lines
1.2 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 Xsimd(CMakePackage):
"""C++ wrappers for SIMD intrinsics"""
homepage = "http://quantstack.net/xsimd"
url = "https://github.com/QuantStack/xsimd/archive/3.1.0.tar.gz"
git = "https://github.com/QuantStack/xsimd.git"
maintainers = ['ax3l']
version('develop', branch='master')
version('7.2.3', sha256='bbc673ad3e9d4523503a4222da05886e086b0e0bd6bd93d03ea3b663c74297b9')
version('4.0.0', sha256='67b818601c15ef15ea4d611a8cd7382588c340ebd9146c799a0210d212540455')
version('3.1.0', sha256='d56288826f6b82fd9583f83ace6aa2306ba2ae82cec003de1d04ce17fbb1e91f')
depends_on('googletest', type='test')
# C++14 support
conflicts('%gcc@:4.8')
conflicts('%clang@:3.6')
# untested: conflicts('%intel@:15')
# untested: conflicts('%pgi@:14')
def cmake_args(self):
args = [
'-DBUILD_TESTS:BOOL={0}'.format(
'ON' if self.run_tests else 'OFF')
]
return args