meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb
Bruce Ashfield 7b46286b34 virtual/containerd: don't rprovide virtual/
Similar to the oe-core commit:

   commit 93ac180d8c389f16964bce8bd5538d9389e970e6
   Author: Michael Opdenacker <michael.opdenacker@bootlin.com>
   Date:   Wed Sep 1 11:20:20 2021 +0200

       meta: stop using "virtual/" in RPROVIDES and RDEPENDS

       Fixes [YOCTO #14538]

       Recipes shouldn't use the "virtual/" string in RPROVIDES and RDEPENDS.

       That's confusing because "virtual/" has no special meaning in
       RPROVIDES and RDEPENDS (unlike in PROVIDES and DEPENDS).

       Instead, using "virtual-" instead of "virtual/"
       as already done in the glibc recipe.

We stop rproviding virtual/containerd to keep the namespace clean.
There aren't many users of this virtual provides, but we keep
it around (for now) to maintain compatibility.

At the same time we convert the RPROVIDES to virtual-containerd, to keep
it available and consistent with oe-core use virtual-libc, etc.

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2021-09-06 10:57:17 -04:00

48 lines
961 B
BlitzBasic

SUMMARY = "All packages for container host"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
inherit packagegroup
PACKAGES = "\
packagegroup-container \
packagegroup-lxc \
packagegroup-docker \
packagegroup-oci \
${@bb.utils.contains('DISTRO_FEATURES', 'seccomp', \
'packagegroup-podman', '', d)} \
packagegroup-containerd \
"
# everything and the kitchen sink, used for building/installing
# many things at once.
RDEPENDS:${PN} = " \
packagegroup-lxc \
packagegroup-docker \
packagegroup-oci \
"
RDEPENDS:packagegroup-lxc = " \
lxc \
"
RDEPENDS:packagegroup-docker = " \
docker \
"
RDEPENDS:packagegroup-podman = " \
podman \
"
RDEPENDS:packagegroup-oci = " \
virtual-runc \
oci-systemd-hook \
oci-runtime-tools \
oci-image-tools \
"
RDEPENDS:packagegroup-containerd = " \
virtual-containerd \
"