mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

* 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>
48 lines
1.0 KiB
BlitzBasic
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)}"
|