summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörg Sommer <joerg.sommer@navimatix.de>2023-10-12 13:52:52 +0200
committerBruce Ashfield <bruce.ashfield@gmail.com>2023-11-08 09:03:45 -0500
commit478a91800c4a95c7410dc8ef52e229a81be24b4e (patch)
treedfa42b926c7c23bf9d32cf1c750f408fc6251bcc
parent2d8b3cba8ff27c9ec2187a52b6a551fe1dcfaa07 (diff)
downloadmeta-virtualization-478a91800c4a95c7410dc8ef52e229a81be24b4e.tar.gz
packagegroup-container: require ipv6 for podman
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 <joerg.sommer@navimatix.de> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-core/packagegroups/packagegroup-container.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/packagegroups/packagegroup-container.bb b/recipes-core/packagegroups/packagegroup-container.bb
index 8d418e95..8309a086 100644
--- a/recipes-core/packagegroups/packagegroup-container.bb
+++ b/recipes-core/packagegroups/packagegroup-container.bb
@@ -9,7 +9,7 @@ PACKAGES = "\
9 packagegroup-lxc \ 9 packagegroup-lxc \
10 packagegroup-docker \ 10 packagegroup-docker \
11 packagegroup-oci \ 11 packagegroup-oci \
12 ${@bb.utils.contains('DISTRO_FEATURES', 'seccomp', \ 12 ${@bb.utils.contains('DISTRO_FEATURES', 'seccomp ipv6', \
13 'packagegroup-podman', '', d)} \ 13 'packagegroup-podman', '', d)} \
14 packagegroup-containerd \ 14 packagegroup-containerd \
15 " 15 "