fix pkgconfig dependencies (#30246)

`pkgconfig` is the correct virtual dependency, `pkg-config` and
`pkgconf` are providers of it.
This commit is contained in:
Michael Kuhn 2022-04-22 15:34:30 +02:00 committed by GitHub
parent 010068c50a
commit 84bb8e316d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 9 deletions

View File

@ -24,7 +24,7 @@ class FluxPmix(AutotoolsPackage):
depends_on('pmix@v4.1.0:')
depends_on('openmpi')
depends_on('pkg-config', type='build')
depends_on('pkgconfig', type='build')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')

View File

@ -47,7 +47,7 @@ class GpiSpace(CMakePackage):
type="build")
depends_on("chrpath@0.13:",
type=("build", "run"))
depends_on("pkgconf",
depends_on("pkgconfig",
type="build")
depends_on("boost@1.62.0:1.63.0 +atomic +chrono +coroutine +context +date_time +filesystem +iostreams +program_options +random +regex +serialization +test +timer cxxstd=14")
depends_on("hwloc@1.10: +libudev ~shared ~libxml2")

View File

@ -79,7 +79,7 @@ class Hicops(CMakePackage):
depends_on('git', type='build', when='@release')
depends_on('git', type='build', when='@develop')
depends_on('cmake@3.11:', type='build')
depends_on('pkgconf', type='build')
depends_on('pkgconfig', type='build')
# TODO: Add timemory and mpip depends_on()
conflicts('+timemory')

View File

@ -19,7 +19,7 @@ class ManDb(AutotoolsPackage):
version('2.10.1', sha256='2ffd8f2e80122fe72e60c740c851e6a3e15c9a7921185eb4752c1c672824bed6')
version('2.7.6.1', sha256='08edbc52f24aca3eebac429b5444efd48b9b90b9b84ca0ed5507e5c13ed10f3f')
depends_on('pkgconf', type='build')
depends_on('pkgconfig', type='build')
depends_on('gettext')
depends_on('libpipeline@1.5.0:', when='@2.8.0:')
depends_on('libpipeline@1.4.0:', when='@2.7.1:')

View File

@ -20,11 +20,11 @@ class Neko(AutotoolsPackage, CudaPackage, ROCmPackage):
variant('parmetis', default=False, description='Build with support for parmetis')
variant('xsmm', default=False, description='Build with support for libxsmm')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
depends_on('pkgconf', type='build')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
depends_on('pkgconfig', type='build')
depends_on('parmetis', when='+parmetis')
depends_on('libxsmm', when='+xsmm')
depends_on('mpi')