60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
# Copyright 2013-2022 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 = "https://rapidjson.org"
|
|
url = "https://github.com/Tencent/rapidjson/archive/v1.1.0.tar.gz"
|
|
|
|
version(
|
|
"1.2.0-2022-03-09",
|
|
git="https://github.com/Tencent/rapidjson.git",
|
|
commit="8261c1ddf43f10de00fd8c9a67811d1486b2c784"
|
|
)
|
|
version(
|
|
"1.2.0-2021-08-13",
|
|
git="https://github.com/Tencent/rapidjson.git",
|
|
commit="00dbcf2c6e03c47d6c399338b6de060c71356464",
|
|
)
|
|
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", when="@1.0.0:1.1.0")
|
|
|
|
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")
|
|
|
|
variant('doc', default=False,
|
|
description='Build and install documentation')
|
|
|
|
depends_on('doxygen+graphviz', when='+doc')
|
|
|
|
def cmake_args(self):
|
|
args = []
|
|
args.append(self.define_from_variant('RAPIDJSON_BUILD_DOC', 'doc'))
|
|
return args
|