Replace pkg-config dependencies with virtual (#8783)

Several packages specified pkg-config as a dependency, which is
a specific implementation of the pkgconfig virtual. Most packages
do not request a specific implementation. The current concretizer
may choose a different implentation of pkgconfig for the nonspecific
dependents, which conflicts with the request for pkg-config. This
replaces all requests for a specific implementation of pkgconfig
with the virtual package as a temporary solution to the issue.
This commit is contained in:
Michael Kuhn
2018-08-02 19:29:05 +02:00
committed by scheibelp
parent b1c35e1e13
commit 12fb1cdbe5
9 changed files with 14 additions and 14 deletions

View File

@@ -36,11 +36,11 @@ class I3(AutotoolsPackage):
version('4.14.1', 'bdbb6d7bb5a647c8b7b53ed10de84cc5')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
depends_on('pkg-config', 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('libev')
depends_on('startup-notification')