Fix pkgconfig dependencies (#43651)
pkgconfig is the virtual package, pkg-config and pkgconf are implementations.
This commit is contained in:
parent
5b8b6e492d
commit
057603cad8
3 changed files with 4 additions and 4 deletions
|
@ -112,7 +112,7 @@ class Charliecloud(AutotoolsPackage):
|
||||||
depends_on("libtool", type="build")
|
depends_on("libtool", type="build")
|
||||||
|
|
||||||
# pkg-config is required for 0.36 regardless of variant.
|
# pkg-config is required for 0.36 regardless of variant.
|
||||||
depends_on("pkg-config", type="build", when="@0.36")
|
depends_on("pkgconfig", type="build", when="@0.36")
|
||||||
|
|
||||||
# Image manipulation.
|
# Image manipulation.
|
||||||
depends_on("python@3.6:", type="run")
|
depends_on("python@3.6:", type="run")
|
||||||
|
@ -146,7 +146,7 @@ class Charliecloud(AutotoolsPackage):
|
||||||
# approach with squashfuse could implemented in a different variant.
|
# approach with squashfuse could implemented in a different variant.
|
||||||
with when("+squashfuse"):
|
with when("+squashfuse"):
|
||||||
depends_on("libfuse@3:", type=("build", "run", "link"), when="@0.32:")
|
depends_on("libfuse@3:", type=("build", "run", "link"), when="@0.32:")
|
||||||
depends_on("pkg-config", type="build", when="@0.37:")
|
depends_on("pkgconfig", type="build", when="@0.37:")
|
||||||
depends_on("squashfuse@0.1.105:0.2.0,0.4.0:", type="build", when="@0.36:")
|
depends_on("squashfuse@0.1.105:0.2.0,0.4.0:", type="build", when="@0.36:")
|
||||||
depends_on("squashfuse@0.1.105:0.2.0,0.4.0", type="build", when="@0.35")
|
depends_on("squashfuse@0.1.105:0.2.0,0.4.0", type="build", when="@0.35")
|
||||||
depends_on("squashfuse@0.1.105", type="build", when="@0.32:0.34")
|
depends_on("squashfuse@0.1.105", type="build", when="@0.32:0.34")
|
||||||
|
|
|
@ -143,7 +143,7 @@ class Hpctoolkit(AutotoolsPackage, MesonPackage):
|
||||||
depends_on("libtool", type="build")
|
depends_on("libtool", type="build")
|
||||||
|
|
||||||
with when("@2024.02:"):
|
with when("@2024.02:"):
|
||||||
depends_on("pkgconf", type="build")
|
depends_on("pkgconfig", type="build")
|
||||||
depends_on("cmake", type="build")
|
depends_on("cmake", type="build")
|
||||||
|
|
||||||
boost_libs = (
|
boost_libs = (
|
||||||
|
|
|
@ -59,7 +59,7 @@ class Yosys(MakefilePackage):
|
||||||
depends_on("bison")
|
depends_on("bison")
|
||||||
depends_on("libffi")
|
depends_on("libffi")
|
||||||
depends_on("readline")
|
depends_on("readline")
|
||||||
depends_on("pkg-config")
|
depends_on("pkgconfig")
|
||||||
depends_on("tcl")
|
depends_on("tcl")
|
||||||
depends_on("zlib")
|
depends_on("zlib")
|
||||||
depends_on("llvm")
|
depends_on("llvm")
|
||||||
|
|
Loading…
Reference in a new issue