spack/var/spack/repos/builtin/packages/pruners-ninja/package.py
Caetano Melone 742d313ba8
Update E4S package tags (#50173)
Most E4S packages had the "e4s" tag in their recipes; this adds it to
the rest.

list: https://e4s.io/DocPortal.html
2025-04-28 08:25:36 +02:00

39 lines
1.2 KiB
Python

# Copyright Spack Project Developers. See COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class PrunersNinja(AutotoolsPackage):
"""NINJA: Noise Inject agent tool to expose subtle and unintended message
races."""
homepage = "https://github.com/PRUNERS/NINJA"
url = "https://github.com/PRUNERS/NINJA/releases/download/v1.0.0/NINJA-1.0.0.tar.gz"
git = "https://github.com/PRUNERS/NINJA.git"
tags = ["e4s"]
license("GPL-3.0-or-later")
version("master", branch="master")
version("1.0.1", sha256="53df5c019054b60c68e63d3e249127f1d5f267a70539c8809fb42a8ddbfcb29b")
version("1.0.0", sha256="f25c189783b57801f298dfff8770f42733a43f926668aceff4abd287b6e3a4d1")
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("mpi")
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")
patch("pruners-mutli-def-a-pr3-fix.patch")
def flag_handler(self, name, flags):
if name == "cflags":
if self.spec.satisfies("%oneapi"):
flags.append("-Wno-error=implicit-function-declaration")
return (flags, None, None)