From 002aaf7029b8002acc69c9d4beea89039410d7cd Mon Sep 17 00:00:00 2001 From: Jörg Sommer Date: Thu, 12 Oct 2023 13:52:52 +0200 Subject: packagegroup-container: require ipv6 for podman MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The recipe *podman* requires the distro feature *ipv6*. Using a distro without it causes the build of *packagegroup-container* fails, even if *packagegroup-podman* is not used: ERROR: Nothing RPROVIDES 'podman' (but /build/../work/layers-3rdparty/meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb RDEPENDS on or otherwise requires it) podman was skipped: missing required distro feature 'ipv6' (not in DISTRO_FEATURES) NOTE: Runtime target 'podman' is unbuildable, removing... Missing or unbuildable dependency chain was: ['podman'] NOTE: Runtime target 'packagegroup-docker' is unbuildable, removing... Missing or unbuildable dependency chain was: ['packagegroup-docker', 'podman'] Signed-off-by: Jörg Sommer Signed-off-by: Bruce Ashfield --- recipes-core/packagegroups/packagegroup-container.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes-core/packagegroups') diff --git a/recipes-core/packagegroups/packagegroup-container.bb b/recipes-core/packagegroups/packagegroup-container.bb index 38a64637..4b1ad009 100644 --- a/recipes-core/packagegroups/packagegroup-container.bb +++ b/recipes-core/packagegroups/packagegroup-container.bb @@ -11,7 +11,7 @@ PACKAGES = "\ packagegroup-lxc \ packagegroup-docker \ packagegroup-oci \ - ${@bb.utils.contains('DISTRO_FEATURES', 'seccomp', \ + ${@bb.utils.contains('DISTRO_FEATURES', 'seccomp ipv6', \ 'packagegroup-podman', '', d)} \ packagegroup-containerd \ " -- cgit v1.2.3-54-g00ecf