Update gtk-doc depends for tce findings (#30337)

gtk-doc can call pkg-config when used at runtime, so pkgconfig needs
to be a runtime requirement.

itstool needs to be a build-time requirement.
This commit is contained in:
David 2022-05-04 12:17:34 -06:00 committed by GitHub
parent 0d3d1ea7d0
commit b6f2a70f7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,9 +25,10 @@ class GtkDoc(AutotoolsPackage):
depends_on('autoconf', type='build') depends_on('autoconf', type='build')
depends_on('automake', type='build') depends_on('automake', type='build')
depends_on('itstool', type='build')
depends_on('libtool', type='build') depends_on('libtool', type='build')
depends_on('m4', type='build') depends_on('m4', type='build')
depends_on('pkgconfig@0.19:', type='build') depends_on('pkgconfig@0.19:', type=('build', 'run'))
depends_on('python@3.2:', type=('build', 'run')) depends_on('python@3.2:', type=('build', 'run'))
depends_on('py-pygments', type=('build', 'run')) depends_on('py-pygments', type=('build', 'run'))