builtin: fix pkgconfig dependencies (#48533)
`pkgconfig` is the virtual dependency, `pkg-config` and `pkgconf` are implementations.
This commit is contained in:
parent
c302e1a768
commit
c40139b7d6
@ -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"))
|
||||
|
||||
|
@ -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"))
|
||||
|
||||
|
@ -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"))
|
||||
|
||||
|
@ -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")
|
||||
|
@ -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")
|
||||
|
@ -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")
|
||||
|
@ -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")
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user