# Copyright 2013-2023 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.package import * class JsonC(CMakePackage, AutotoolsPackage): """A JSON implementation in C.""" homepage = "https://github.com/json-c/json-c/wiki" url = "https://s3.amazonaws.com/json-c_releases/releases/json-c-0.15.tar.gz" license("MIT") version("0.16", sha256="8e45ac8f96ec7791eaf3bb7ee50e9c2100bbbc87b8d0f1d030c5ba8a0288d96b") version("0.15", sha256="b8d80a1ddb718b3ba7492916237bbf86609e9709fb007e7f7d4322f02341a4c6") version("0.14", sha256="b377de08c9b23ca3b37d9a9828107dff1de5ce208ff4ebb35005a794f30c6870") version("0.13.1", sha256="b87e608d4d3f7bfdd36ef78d56d53c74e66ab278d318b71e6002a369d36f4873") version("0.12.1", sha256="2a136451a7932d80b7d197b10441e26e39428d67b1443ec43bbba824705e1123") version("0.12", sha256="000c01b2b3f82dcb4261751eb71f1b084404fb7d6a282f06074d3c17078b9f3f") version("0.11", sha256="28dfc65145dc0d4df1dfe7701ac173c4e5f9347176c8983edbfac9149494448c") build_system( conditional("cmake", when="@0.14:"), conditional("autotools", when="@:0.13.1"), default="cmake", ) depends_on("autoconf", when="build_system=autotools", type="build") parallel = False @when("@0.12:0.12.1 %gcc@7:") def patch(self): filter_file( "-Wextra", "-Wextra -Wno-error=implicit-fallthrough " "-Wno-error=unused-but-set-variable", "Makefile.in", ) @when("%cce@11.0.3:") def patch(self): filter_file("-Werror", "", "CMakeLists.txt") def flag_handler(self, name, flags): iflags = [] if name == "cflags": if self.spec.satisfies("%oneapi"): iflags.append("-Wno-error=implicit-function-declaration") return (iflags, None, None) @run_after("install") def darwin_fix(self): # The shared library is not installed correctly on Darwin; fix this if "platform=darwin" in self.spec: fix_darwin_install_name(self.prefix.lib)