diff options
Diffstat (limited to 'meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_1.1.2.bb')
-rw-r--r-- | meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_1.1.2.bb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_1.1.2.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_1.1.2.bb new file mode 100644 index 0000000000..ef1945b4fe --- /dev/null +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_1.1.2.bb | |||
@@ -0,0 +1,50 @@ | |||
1 | SUMMARY = "The network configuration abstraction renderer" | ||
2 | DESCRIPTION = "Netplan is a utility for easily configuring networking on a \ | ||
3 | linux system. You simply create a YAML description of the required network \ | ||
4 | interfaces and what each should be configured to do. From this description \ | ||
5 | Netplan will generate all the necessary configuration for your chosen renderer \ | ||
6 | tool." | ||
7 | HOMEPAGE = "https://netplan.io" | ||
8 | SECTION = "net/misc" | ||
9 | |||
10 | LICENSE = "GPL-3.0-only" | ||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
12 | |||
13 | inherit meson pkgconfig systemd python3targetconfig features_check | ||
14 | |||
15 | REQUIRED_DISTRO_FEATURES = "systemd" | ||
16 | |||
17 | SRC_URI = "git://github.com/CanonicalLtd/netplan.git;branch=stable/1.1;protocol=https \ | ||
18 | file://0001-meson.build-do-not-use-Werror.patch \ | ||
19 | " | ||
20 | |||
21 | SRC_URI:append:libc-musl = " file://0001-don-t-fail-if-GLOB_BRACE-is-not-defined.patch" | ||
22 | |||
23 | SRCREV = "01045f683b9419beb90119497cd1b2be44e83b8e" | ||
24 | |||
25 | |||
26 | DEPENDS = "glib-2.0 libyaml util-linux-libuuid \ | ||
27 | systemd python3-cffi-native \ | ||
28 | " | ||
29 | |||
30 | EXTRA_OEMESON = "-Dtesting=false -Dunit_testing=false" | ||
31 | |||
32 | RDEPENDS:${PN} = "python3-core python3-netifaces python3-pyyaml \ | ||
33 | python3-dbus python3-rich python3-cffi \ | ||
34 | python3-json python3-fcntl \ | ||
35 | util-linux-libuuid libnetplan \ | ||
36 | " | ||
37 | |||
38 | do_install:append() { | ||
39 | install -d -m 755 ${D}${sysconfdir}/netplan | ||
40 | } | ||
41 | |||
42 | PACKAGES += "${PN}-dbus libnetplan" | ||
43 | |||
44 | FILES:libnetplan = "${libdir}/libnetplan.so.*" | ||
45 | FILES:${PN} = "${sbindir} ${libexecdir}/netplan/generate \ | ||
46 | ${datadir}/netplan ${datadir}/bash-completion \ | ||
47 | ${systemd_unitdir} ${PYTHON_SITEPACKAGES_DIR} \ | ||
48 | ${sysconfdir}/netplan \ | ||
49 | " | ||
50 | FILES:${PN}-dbus = "${libexecdir}/netplan/netplan-dbus ${datadir}/dbus-1" | ||