mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

With: https://lists.openembedded.org/g/bitbake-devel/message/17508 there are WARNINGs like: WARNING: meta-virtualization/recipes-containers/netavark/netavark_1.14.1.bb: meta-virtualization/recipes-containers/netavark/netavark_1.14.1.bb:25 has a lack of whitespace around the assignment: 'PACKAGECONFIG[aardvark-dns]= ",,, aardvark-dns"' Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
67 lines
2.0 KiB
BlitzBasic
67 lines
2.0 KiB
BlitzBasic
SUMMARY = "A container network stack"
|
|
HOMEPAGE = "https://github.com/containers/netavark"
|
|
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
|
|
|
|
SRCREV = "0d623ce702eeef7584cb9841de18e1e33e325207"
|
|
|
|
# It is possible to fetch the source using the crate fetcher instead:
|
|
#SRC_URI = "crate://crates.io/${BPN}/${PV}"
|
|
SRC_URI = "git://github.com/containers/netavark.git;protocol=https;branch=v1.14 \
|
|
file://tests.patch \
|
|
file://0001-test-skip-firewalld-and-sit-module-related-cases.patch \
|
|
file://run-ptest"
|
|
require ${BPN}-crates.inc
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
PACKAGECONFIG ?= "aardvark-dns"
|
|
|
|
# From the documentation of netavark
|
|
# https://github.com/containers/netavark/blob/v1.1.0/DISTRO_PACKAGE.md#dependency-on-aardvark-dns
|
|
# The aardvark-dns will be installed by default with netavark, but
|
|
# netavark will be functional without it.
|
|
PACKAGECONFIG[aardvark-dns] = ",,, aardvark-dns"
|
|
|
|
inherit cargo cargo-update-recipe-crates features_check ptest
|
|
|
|
# Cargo installs the binary to bin so move it to where podman expects it
|
|
do_install:append() {
|
|
install -d ${D}${libexecdir}
|
|
mv ${D}${bindir} ${D}${libexecdir}/podman
|
|
}
|
|
|
|
do_install_ptest() {
|
|
cp -r ${S}/test ${D}${PTEST_PATH}
|
|
for i in 200-bridge-firewalld.bats 400-ipvlan.bats 500-plugin.bats; do
|
|
[ -f ${D}${PTEST_PATH}/test/${i} ] && mv ${D}${PTEST_PATH}/test/${i} ${D}${PTEST_PATH}/test/${i}.bak;
|
|
done
|
|
}
|
|
|
|
# rdepends on aardvark-dns which rdepends on slirp4netns
|
|
REQUIRED_DISTRO_FEATURES ?= "seccomp"
|
|
|
|
|
|
DEPENDS += "protobuf-c-native protobuf-c"
|
|
|
|
# bind-utils is used to install dig
|
|
# procps-ps is necessary because the ps from busybox is
|
|
# not having the same behavior
|
|
# iputils is used because busybox ping behaves differently
|
|
RDEPENDS:${PN}-ptest += " \
|
|
bash \
|
|
bats \
|
|
bind-utils \
|
|
coreutils \
|
|
dbus-daemon-proxy \
|
|
iproute2 \
|
|
iputils \
|
|
jq \
|
|
nftables \
|
|
${@bb.utils.contains( "TARGET_ARCH", "aarch64", "", "nmap", d)} \
|
|
procps-ps \
|
|
util-linux-nsenter \
|
|
util-linux-unshare \
|
|
"
|