mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
f23c8d7362
Reference: https://nvd.nist.gov/vuln/detail/CVE-2022-4968 Upstream-patch: https://github.com/canonical/netplan/commit/4c39b75b5c6ae7d976bda6da68da60d9a7f085ee Signed-off-by: Jinfeng Wang <jinfeng.wang.cn@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
55 lines
2.0 KiB
BlitzBasic
55 lines
2.0 KiB
BlitzBasic
SUMMARY = "The network configuration abstraction renderer"
|
|
DESCRIPTION = "Netplan is a utility for easily configuring networking on a \
|
|
linux system. You simply create a YAML description of the required network \
|
|
interfaces and what each should be configured to do. From this description \
|
|
Netplan will generate all the necessary configuration for your chosen renderer \
|
|
tool."
|
|
HOMEPAGE = "https://netplan.io"
|
|
SECTION = "net/misc"
|
|
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
inherit meson pkgconfig systemd python3targetconfig features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "systemd"
|
|
|
|
SRC_URI = "git://github.com/CanonicalLtd/netplan.git;branch=main;protocol=https \
|
|
file://0001-meson.build-drop-unnecessary-build-dependencies.patch \
|
|
file://0002-meson.build-do-not-use-Werror.patch \
|
|
file://CVE-2022-4968.patch \
|
|
"
|
|
|
|
SRC_URI:append:libc-musl = " file://0001-don-t-fail-if-GLOB_BRACE-is-not-defined.patch"
|
|
SRC_URI:append:toolchain-clang = " file://0001-networkd.c-define-scope-specific-to-case-statement.patch"
|
|
|
|
SRCREV = "45f7cd1569896d9e316c130bf5c60b7ccfc8211d"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "glib-2.0 libyaml util-linux-libuuid \
|
|
systemd python3-cffi-native \
|
|
"
|
|
|
|
EXTRA_OEMESON = "-Dunit_testing=false"
|
|
|
|
RDEPENDS:${PN} = "python3-core python3-netifaces python3-pyyaml \
|
|
python3-dbus python3-rich python3-cffi \
|
|
python3-json python3-fcntl \
|
|
util-linux-libuuid libnetplan \
|
|
"
|
|
|
|
do_install:append() {
|
|
install -d -m 755 ${D}${sysconfdir}/netplan
|
|
}
|
|
|
|
PACKAGES += "${PN}-dbus libnetplan"
|
|
|
|
FILES:libnetplan = "${libdir}/libnetplan.so.*"
|
|
FILES:${PN} = "${sbindir} ${libexecdir}/netplan/generate \
|
|
${datadir}/netplan ${datadir}/bash-completion \
|
|
${systemd_unitdir} ${PYTHON_SITEPACKAGES_DIR} \
|
|
${sysconfdir}/netplan \
|
|
"
|
|
FILES:${PN}-dbus = "${libexecdir}/netplan/netplan-dbus ${datadir}/dbus-1"
|