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

42 lines
1.5 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 Typhonio(CMakePackage):
"""TyphonIO is a library of routines that perform input/output (I/O)
of scientific data within application codes"""
homepage = "http://uk-mac.github.io/typhonio/"
url = "https://github.com/UK-MAC/typhonio/archive/v1.6_CMake.tar.gz"
git = "https://github.com/UK-MAC/typhonio.git"
version('develop', branch='cmake_build')
version('1.6_CMake', sha256='c9b7b2a7f4fa0b786f6b69c6426b67f42efc4ea6871323139d52cd44f4d0ff7c')
variant('build_type', default='Release', description='The build type to build',
values=('Debug', 'Release'))
variant('fortran', default=False, description='Enable Fortran support')
variant('shared', default=False, description='Build shared libraries')
variant('doc', default=False, description='Build user guide and doxygen documentation')
depends_on('mpi')
depends_on('hdf5+hl')
def cmake_args(self):
spec = self.spec
cmake_args = []
if "+fortran" in spec:
cmake_args.append("-DBUILD_FORTRAN_LIBRARY=ON")
if "+shared" in spec:
cmake_args.append("-DBUILD_TIO_SHARED=ON")
if "+docs" in spec:
cmake_args.append("-DBUILD_DOXYGEN_DOCS=ON")
cmake_args.append("-DBUILD_USER_GUIDE=ON")
return cmake_args