From a762e231adda6a486ead378780cee56a00032910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20P=C3=B6tzsch?= Date: Wed, 2 Oct 2024 21:54:27 +0200 Subject: [PATCH] virt::libjpeg: fix deps This package is just virtual, so don't directly depend on its requirements, but only when it is requested. Also don't import anything into the package itself. --- recipes/virt/libjpeg.yaml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/recipes/virt/libjpeg.yaml b/recipes/virt/libjpeg.yaml index 241caa2..e54ced8 100644 --- a/recipes/virt/libjpeg.yaml +++ b/recipes/virt/libjpeg.yaml @@ -1,13 +1,12 @@ -depends: - - ${CONFIG_SELECT_LIBJPEG:-libs::jpeg-turbo}-dev - - - use: [] - depends: - - ${CONFIG_SELECT_LIBJPEG:-libs::jpeg-turbo}-tgt - multiPackage: dev: - provideDeps: [ "*-dev" ] + depends: + - name: ${CONFIG_SELECT_LIBJPEG:-libs::jpeg-turbo}-dev + use: [] tgt: - provideDeps: [ "*-tgt" ] + depends: + - name: ${CONFIG_SELECT_LIBJPEG:-libs::jpeg-turbo}-tgt + use: [] + +provideDeps: [ "*" ]