meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb
Martin Jansa 04f8621d82 cri-o, podman, packagegroup-container: replace anonymous python function calling bb.parse.SkipRecipe with conditional PNBLACKLISTs
* PNBLACKLISTs are IMHO a bit easier to read and easier to override from distro
  which e.g. provides own recipe for libseccomp

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2021-04-06 20:34:26 -04:00

48 lines
1.0 KiB
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 \
packagegroup-podman \
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 \
"
PNBLACKLIST[packagegroup-container] ?= "${@bb.utils.contains('BBFILE_COLLECTIONS', 'security', '', 'Depends on podman which depends on libseccomp from meta-security which is not included', d)}"