builtin: fix pkgconfig dependencies (#48533)

`pkgconfig` is the virtual dependency, `pkg-config` and `pkgconf` are
implementations.
This commit is contained in:
Michael Kuhn 2025-01-13 08:40:49 +01:00 committed by GitHub
parent c302e1a768
commit c40139b7d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 8 additions and 8 deletions

View File

@ -37,7 +37,7 @@ class BigdftChess(AutotoolsPackage, CudaPackage):
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")
depends_on("pkg-config", type="build")
depends_on("pkgconfig", type="build")
depends_on("python@3.0:", type=("build", "run"))

View File

@ -36,7 +36,7 @@ class BigdftCore(AutotoolsPackage, CudaPackage):
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")
depends_on("pkg-config", type="build")
depends_on("pkgconfig", type="build")
depends_on("python@3.0:", type=("build", "run"))

View File

@ -35,7 +35,7 @@ class BigdftPsolver(AutotoolsPackage, CudaPackage):
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")
depends_on("pkg-config", type="build")
depends_on("pkgconfig", type="build")
depends_on("python@3.0:", type=("build", "run"))

View File

@ -28,7 +28,7 @@ class BigdftSpred(AutotoolsPackage):
depends_on("autoconf", type="build")
depends_on("automake", type="build")
depends_on("libtool", type="build")
depends_on("pkg-config", type="build")
depends_on("pkgconfig", type="build")
variant("mpi", default=True, description="Enable MPI support")
variant("openmp", default=True, description="Enable OpenMP support")

View File

@ -20,7 +20,7 @@ class CgsiGsoap(CMakePackage):
depends_on("c", type="build")
depends_on("pkg-config", type="build")
depends_on("pkgconfig", type="build")
depends_on("gsoap")
depends_on("voms")
depends_on("globus-common")

View File

@ -22,4 +22,4 @@ class Gocryptfs(GoPackage):
depends_on("c", type="build") # generated
depends_on("openssl")
depends_on("pkg-config", type="build")
depends_on("pkgconfig", type="build")

View File

@ -25,7 +25,7 @@ class Psrdada(AutotoolsPackage, CudaPackage):
depends_on("automake", type="build")
depends_on("libtool", type="build")
depends_on("nasm", type="build")
depends_on("pkgconf", type="build")
depends_on("pkgconfig", type="build")
depends_on("fftw@3.3:", type="build")
depends_on("python")
depends_on("cuda", type="build")

View File

@ -22,7 +22,7 @@ class Typst(CargoPackage):
depends_on("rust@1.81.0:")
depends_on("openssl")
depends_on("pkgconf", type="build")
depends_on("pkgconfig", type="build")
@classmethod
def determine_version(cls, exe):