diff options
| -rw-r--r-- | meta-networking/recipes-connectivity/netplan/netplan_0.98.bb | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/netplan/netplan_0.98.bb b/meta-networking/recipes-connectivity/netplan/netplan_0.98.bb new file mode 100644 index 0000000000..860762c494 --- /dev/null +++ b/meta-networking/recipes-connectivity/netplan/netplan_0.98.bb | |||
| @@ -0,0 +1,58 @@ | |||
| 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 = "GPLv3" | ||
| 11 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/git" | ||
| 14 | SRCREV = "5d22e9d22c4a3724d27b80b0cd9b898ae8f59d2b" | ||
| 15 | PV = "0.98+git${SRCPV}" | ||
| 16 | |||
| 17 | SRC_URI = " \ | ||
| 18 | git://github.com/CanonicalLtd/netplan.git \ | ||
| 19 | " | ||
| 20 | |||
| 21 | DEPENDS = "glib-2.0 libyaml" | ||
| 22 | RDEPENDS_${PN} = "python3 python3-core python3-pyyaml python3-netifaces python3-nose python3-coverage python3-pycodestyle python-pyflakes util-linux-libuuid" | ||
| 23 | |||
| 24 | inherit pkgconfig systemd | ||
| 25 | |||
| 26 | TARGET_CC_ARCH += "${LDFLAGS}" | ||
| 27 | |||
| 28 | EXTRA_OEMAKE = "generate" | ||
| 29 | EXTRA_OEMAKE =+ "${@bb.utils.contains('DISTRO_FEATURES','systemd','netplan-dbus dbus/io.netplan.Netplan.service','',d)}" | ||
| 30 | |||
| 31 | do_install() { | ||
| 32 | install -d ${D}${sbindir} ${D}${base_libdir}/netplan ${D}${datadir}/netplan/netplan/cli/commands ${D}${sysconfdir}/netplan | ||
| 33 | install -m 755 ${S}/generate ${D}${base_libdir}/netplan/ | ||
| 34 | install -m 644 ${S}/netplan/*.py ${D}${datadir}/netplan/netplan | ||
| 35 | install -m 644 ${S}/netplan/cli/*.py ${D}${datadir}/netplan/netplan/cli | ||
| 36 | install -m 644 ${S}/netplan/cli/commands/*.py ${D}${datadir}/netplan/netplan/cli/commands | ||
| 37 | install -m 755 ${S}/src/netplan.script ${D}${datadir}/netplan/ | ||
| 38 | ln -srf ${D}${datadir}/netplan/netplan.script ${D}${sbindir}/netplan | ||
| 39 | |||
| 40 | install -d ${D}/${systemd_unitdir}/system ${D}${systemd_unitdir}/system-generators | ||
| 41 | install -m 644 ${S}/src/netplan-wpa@.service ${D}${systemd_unitdir}/system/ | ||
| 42 | ln -srf ${D}/${base_libdir}/netplan/generate ${D}${systemd_unitdir}/system-generators | ||
| 43 | |||
| 44 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | ||
| 45 | install -d ${D}${datadir}/dbus-1/system.d ${D}${datadir}/dbus-1/system-services | ||
| 46 | install -m 755 ${S}/netplan-dbus ${D}${base_libdir}/netplan | ||
| 47 | install -m 644 ${S}/dbus/io.netplan.Netplan.conf ${D}${datadir}/dbus-1/system.d | ||
| 48 | install -m 644 ${S}/dbus/io.netplan.Netplan.service ${D}${datadir}/dbus-1/system-services | ||
| 49 | fi | ||
| 50 | } | ||
| 51 | |||
| 52 | SYSTEMD_SERVICE_${PN} = "netplan-wpa@.service" | ||
| 53 | SYSTEMD_AUTO_ENABLE = "disable" | ||
| 54 | |||
| 55 | PACKAGES += "${PN}-dbus" | ||
| 56 | |||
| 57 | FILES_${PN} = "${sbindir} ${base_libdir}/netplan/generate ${datadir}/netplan ${sysconfdir}/netplan ${systemd_unitdir}" | ||
| 58 | FILES_${PN}-dbus = "${base_libdir}/netplan/netplan-dbus ${datadir}/dbus-1" | ||
