builtin: add undeclared gmake dependencies (#48535)

This commit is contained in:
Wouter Deconinck 2025-01-13 01:38:37 -06:00 committed by GitHub
parent 7171015f1c
commit c302e1a768
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 12 additions and 8 deletions

View File

@ -25,7 +25,7 @@ class Bwa(Package):
)
depends_on("c", type="build") # generated
depends_on("gmake", type="build")
depends_on("zlib-api")
depends_on("sse2neon", when="target=aarch64:")

View File

@ -62,6 +62,7 @@ class EnvironmentModules(Package):
variant("X", default=True, description="Build with X functionality")
depends_on("gmake", type="build")
depends_on("util-linux", type=("build", "run"), when="@5.5:")
depends_on("less", type=("build", "run"), when="@4.1:")
with when("@main"):

View File

@ -72,11 +72,12 @@ class Gasnet(Package, CudaPackage, ROCmPackage):
deprecated=True,
sha256="117f5fdb16e53d0fa8a47a1e28cccab1d8020ed4f6e50163d985dc90226aaa2c",
)
# Do NOT add older versions here.
# GASNet-EX releases over 2 years old are not supported.
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
# Do NOT add older versions here.
# GASNet-EX releases over 2 years old are not supported.
depends_on("gmake", type="build")
# The optional network backends:
variant(

View File

@ -33,7 +33,7 @@ class Ncdu(Package):
version("1.7", sha256="70dfe10b4c0843050ee17ab27b7ad4d65714682f117079b85d779f83431fb333")
depends_on("c", type="build") # generated
depends_on("gmake", type="build")
depends_on("ncurses")
depends_on("pkgconfig", type="build")

View File

@ -51,6 +51,7 @@ class QuantumEspresso(CMakePackage, Package):
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("fortran", type="build") # generated
depends_on("gmake", type="build")
resource(
name="environ",

View File

@ -46,6 +46,7 @@ class Samtools(Package):
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("gmake", type="build")
depends_on("zlib-api")
depends_on("ncurses")
depends_on("perl", type="run")

View File

@ -19,7 +19,7 @@ class Seqtk(Package):
version("1.1", sha256="f01b9f9af6e443673a0105a7536a01957a4fc371826385a1f3dd1e417aa91d52")
depends_on("c", type="build") # generated
depends_on("gmake", type="build")
depends_on("zlib-api")
def install(self, spec, prefix):

View File

@ -98,11 +98,11 @@ class Upcxx(Package, CudaPackage, ROCmPackage):
deprecated=True,
sha256="01be35bef4c0cfd24e9b3d50c88866521b9cac3ad4cbb5b1fc97aea55078810f",
)
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
# Do NOT add older versions here.
# UPC++ releases over 2 years old are not supported.
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("gmake", type="build")
patch("fix_configure_ldflags.patch", when="@2021.9.0:master")