28 lines
1.1 KiB
Python
28 lines
1.1 KiB
Python
# Copyright 2013-2020 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 Rapidjson(CMakePackage):
|
|
"""A fast JSON parser/generator for C++ with both SAX/DOM style API"""
|
|
|
|
homepage = "http://rapidjson.org"
|
|
url = "https://github.com/Tencent/rapidjson/archive/v1.1.0.tar.gz"
|
|
|
|
version('1.1.0', sha256='bf7ced29704a1e696fbccf2a2b4ea068e7774fa37f6d7dd4039d0787f8bed98e')
|
|
version('1.0.2', sha256='c3711ed2b3c76a5565ee9f0128bb4ec6753dbcc23450b713842df8f236d08666')
|
|
version('1.0.1', sha256='a9003ad5c6384896ed4fd1f4a42af108e88e1b582261766df32d717ba744ee73')
|
|
version('1.0.0', sha256='4189b32b9c285f34b37ffe4c0fd5627c1e59c2444daacffe5a96fdfbf08d139b')
|
|
|
|
# released versions compile with -Werror and fail with gcc-7
|
|
# branch-fall-through warnings
|
|
patch('0001-turn-off-Werror.patch')
|
|
|
|
patch('arm.patch', when='@1.1.0 target=aarch64: %gcc@:5.9')
|
|
|
|
# Not correspond to define '-march=native' with Fujitsu compiler.
|
|
patch('remove_march.patch', when='%fj')
|