HOMEPAGE = "https://github.com/containernetworking/cni" SUMMARY = "Container Network Interface - networking for Linux containers" DESCRIPTION = "CNI (Container Network Interface), a Cloud Native Computing \ Foundation project, consists of a specification and libraries for writing \ plugins to configure network interfaces in Linux containers, along with a \ number of supported plugins. CNI concerns itself only with network connectivity \ of containers and removing allocated resources when the container is deleted. \ Because of this focus, CNI has a wide range of support and the specification \ is simple to implement. \ " SRCREV_cni = "35efaabf93d23a28fb2fb01dccbe80caed196d19" # Version 0.9.1 SRCREV_plugins = "b8a10bbe111e9db72433f357c37077554ada7ca1" SRCREV_flannel_plugin = "076c4462d6c6887614fc881b806b690b9e56ceb2" SRCREV_FORMAT = "cni_plugins" SRC_URI = "\ git://github.com/containernetworking/cni.git;nobranch=1;name=cni;protocol=https \ git://github.com/containernetworking/plugins.git;nobranch=1;destsuffix=${S}/src/github.com/containernetworking/plugins;name=plugins;protocol=https \ git://github.com/flannel-io/cni-plugin;branch=main;name=flannel_plugin;protocol=https;destsuffix=${S}/src/github.com/containernetworking/plugins/plugins/meta/flannel \ " LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=fa818a259cbed7ce8bc2a22d35a464fc" GO_IMPORT = "import" PV = "v1.0.1+git${SRCREV_cni}" inherit go inherit goarch do_compile() { mkdir -p ${S}/src/github.com/containernetworking ln -sfr ${S}/src/import ${S}/src/github.com/containernetworking/cni export GO111MODULE=off cd ${B}/src/github.com/containernetworking/cni/libcni ${GO} build cd ${B}/src/github.com/containernetworking/cni/cnitool ${GO} build cd ${B}/src/github.com/containernetworking/plugins PLUGINS="$(ls -d plugins/meta/*; ls -d plugins/ipam/*; ls -d plugins/main/* | grep -v windows)" mkdir -p ${B}/plugins/bin/ for p in $PLUGINS; do plugin="$(basename "$p")" echo "building: $p" ${GO} build -o ${B}/plugins/bin/$plugin github.com/containernetworking/plugins/$p done } do_install() { localbindir="${libexecdir}/cni/" install -d ${D}${localbindir} install -d ${D}/${sysconfdir}/cni/net.d install -m 755 ${S}/src/import/cnitool/cnitool ${D}/${localbindir} install -m 755 -D ${B}/plugins/bin/* ${D}/${localbindir} # Parts of k8s expect the cni binaries to be available in /opt/cni install -d ${D}/opt/cni ln -sf ${libexecdir}/cni/ ${D}/opt/cni/bin } FILES:${PN} += "${libexecdir}/cni/* /opt/cni/bin" INSANE_SKIP:${PN} += "ldflags already-stripped" deltask compile_ptest_base RDEPENDS:${PN} += " ca-certificates"