mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

* fix f53b101d45
* you might want to skip whole packagegroup-netavark without
seccomp, but without this parsing world in DISTRO without
seccomp fails with:
ERROR: Nothing RPROVIDES 'netavark' (but meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb RDEPENDS on or otherwise requires it)
netavark was skipped: missing required distro feature 'seccomp' (not in DISTRO_FEATURES)
NOTE: Runtime target 'netavark' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['netavark']
ERROR: Nothing RPROVIDES 'packagegroup-docker' (but meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'packagegroup-docker'
NOTE: Runtime target 'packagegroup-docker' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['packagegroup-docker']
ERROR: Nothing RPROVIDES 'packagegroup-oci' (but meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'packagegroup-oci'
NOTE: Runtime target 'packagegroup-oci' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['packagegroup-oci']
ERROR: Nothing RPROVIDES 'packagegroup-container' (but meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'packagegroup-container'
NOTE: Runtime target 'packagegroup-container' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['packagegroup-container']
ERROR: Nothing RPROVIDES 'packagegroup-lxc' (but meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'packagegroup-lxc'
NOTE: Runtime target 'packagegroup-lxc' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['packagegroup-lxc']
ERROR: Nothing RPROVIDES 'packagegroup-cni' (but meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'packagegroup-cni'
NOTE: Runtime target 'packagegroup-cni' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['packagegroup-cni']
ERROR: Nothing RPROVIDES 'aardvark-dns' (but meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb RDEPENDS on or otherwise requires it)
aardvark-dns was skipped: missing required distro feature 'seccomp' (not in DISTRO_FEATURES)
NOTE: Runtime target 'aardvark-dns' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['aardvark-dns']
ERROR: Nothing RPROVIDES 'conmon' (but meta-virtualization/recipes-core/packagegroups/packagegroup-container.bb RDEPENDS on or otherwise requires it)
conmon was skipped: missing required distro feature 'seccomp' (not in DISTRO_FEATURES)
NOTE: Runtime target 'conmon' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['conmon']
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
77 lines
1.8 KiB
BlitzBasic
77 lines
1.8 KiB
BlitzBasic
SUMMARY = "All packages for container host"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
inherit packagegroup
|
|
|
|
COMPATIBLE_HOST = "^(?!(mips|riscv)).*"
|
|
|
|
PACKAGES = "\
|
|
packagegroup-container \
|
|
packagegroup-lxc \
|
|
packagegroup-docker \
|
|
packagegroup-oci \
|
|
packagegroup-cni \
|
|
packagegroup-netavark \
|
|
packagegroup-container-tools \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'seccomp ipv6', \
|
|
'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-cni = " \
|
|
cni \
|
|
iptables \
|
|
iproute2 \
|
|
ipset \
|
|
bridge-utils \
|
|
"
|
|
|
|
RDEPENDS:packagegroup-netavark = " \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'seccomp', 'netavark aardvark-dns', '', d)} \
|
|
"
|
|
|
|
RDEPENDS:packagegroup-container-tools = " \
|
|
skopeo \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'seccomp', 'conmon', '', d)} \
|
|
umoci \
|
|
${@bb.utils.contains('VIRTUAL-RUNTIME_container_engine','podman','podman-tui nerdctl podman-compose','',d)} \
|
|
${@bb.utils.contains_any('VIRTUAL-RUNTIME_container_engine','dcoker docker-moby','docker-compose','',d)} \
|
|
"
|
|
|
|
RDEPENDS:packagegroup-oci = " \
|
|
${VIRTUAL-RUNTIME_container_runtime} \
|
|
oci-systemd-hook \
|
|
oci-runtime-tools \
|
|
oci-image-tools \
|
|
"
|
|
|
|
RDEPENDS:packagegroup-containerd = " \
|
|
virtual-containerd \
|
|
packagegroup-cni \
|
|
containerd-cni \
|
|
nerdctl \
|
|
tini \
|
|
"
|
|
|