diff options
| author | Alex Kiernan <alex.kiernan@gmail.com> | 2022-10-22 10:17:09 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-10-22 16:01:22 -0700 |
| commit | c782674d3f4575817c2c7222adc188ea5aca44f2 (patch) | |
| tree | ee73a5220b4dafd98d64a44a397706ad74272c80 /meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb | |
| parent | ded3e642e3da1f6b4eb6840c93273455eb218919 (diff) | |
| download | meta-openembedded-c782674d3f4575817c2c7222adc188ea5aca44f2.tar.gz | |
lldpd: Upgrade 1.0.14 -> 1.0.15
Add github-releases to make new releases discoverable.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb')
| -rw-r--r-- | meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb b/meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb new file mode 100644 index 0000000000..6a3687cf72 --- /dev/null +++ b/meta-networking/recipes-daemons/lldpd/lldpd_1.0.15.bb | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | SUMMARY = "A 802.1ab implementation (LLDP) to help you locate neighbors of all your equipments" | ||
| 2 | SECTION = "net/misc" | ||
| 3 | LICENSE = "ISC" | ||
| 4 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/ISC;md5=f3b90e78ea0cffb20bf5cca7947a896d" | ||
| 5 | |||
| 6 | DEPENDS = "libbsd libevent" | ||
| 7 | |||
| 8 | SRC_URI = "\ | ||
| 9 | http://media.luffy.cx/files/${BPN}/${BPN}-${PV}.tar.gz \ | ||
| 10 | file://lldpd.init.d \ | ||
| 11 | file://lldpd.default \ | ||
| 12 | " | ||
| 13 | |||
| 14 | SRC_URI[sha256sum] = "f7fe3a130be98a19c491479ef60f36b8ee41a9e6bc4d7f2c41033f63956a3126" | ||
| 15 | |||
| 16 | inherit autotools update-rc.d useradd systemd pkgconfig bash-completion github-releases | ||
| 17 | |||
| 18 | USERADD_PACKAGES = "${PN}" | ||
| 19 | USERADD_PARAM:${PN} = "--system -g lldpd --shell /bin/false lldpd" | ||
| 20 | GROUPADD_PARAM:${PN} = "--system lldpd" | ||
| 21 | |||
| 22 | EXTRA_OECONF += "--without-embedded-libevent \ | ||
| 23 | --disable-oldies \ | ||
| 24 | --with-privsep-user=lldpd \ | ||
| 25 | --with-privsep-group=lldpd \ | ||
| 26 | --with-systemdsystemunitdir=${systemd_system_unitdir} \ | ||
| 27 | --without-sysusersdir \ | ||
| 28 | " | ||
| 29 | |||
| 30 | PACKAGECONFIG ??= "cdp fdp edp sonmp lldpmed dot1 dot3" | ||
| 31 | PACKAGECONFIG[xml] = "--with-xml,--without-xml,libxm2" | ||
| 32 | PACKAGECONFIG[snmp] = "--with-snmp,--without-snmp,net-snmp" | ||
| 33 | PACKAGECONFIG[readline] = "--with-readline,--without-readline,readline" | ||
| 34 | PACKAGECONFIG[seccomp] = "--with-seccomp,--without-seccomp,libseccomp" | ||
| 35 | PACKAGECONFIG[cdp] = "--enable-cdp,--disable-cdp" | ||
| 36 | PACKAGECONFIG[fdp] = "--enable-fdp,--disable-fdp" | ||
| 37 | PACKAGECONFIG[edp] = "--enable-edp,--disable-edp" | ||
| 38 | PACKAGECONFIG[sonmp] = "--enable-sonmp,--disable-sonmp" | ||
| 39 | PACKAGECONFIG[lldpmed] = "--enable-lldpmed,--disable-lldpmed" | ||
| 40 | PACKAGECONFIG[dot1] = "--enable-dot1,--disable-dot1" | ||
| 41 | PACKAGECONFIG[dot3] = "--enable-dot3,--disable-dot3" | ||
| 42 | PACKAGECONFIG[custom] = "--enable-custom,--disable-custom" | ||
| 43 | |||
| 44 | INITSCRIPT_NAME = "lldpd" | ||
| 45 | INITSCRIPT_PARAMS = "defaults" | ||
| 46 | |||
| 47 | SYSTEMD_SERVICE:${PN} = "lldpd.service" | ||
| 48 | |||
| 49 | do_install:append() { | ||
| 50 | install -Dm 0755 ${WORKDIR}/lldpd.init.d ${D}${sysconfdir}/init.d/lldpd | ||
| 51 | install -Dm 0644 ${WORKDIR}/lldpd.default ${D}${sysconfdir}/default/lldpd | ||
| 52 | # Make an empty configuration file | ||
| 53 | touch ${D}${sysconfdir}/lldpd.conf | ||
| 54 | } | ||
| 55 | |||
| 56 | PACKAGES =+ "${PN}-zsh-completion" | ||
| 57 | |||
| 58 | FILES:${PN} += "${libdir}/sysusers.d" | ||
| 59 | RDEPENDS:${PN} += "os-release" | ||
| 60 | |||
| 61 | FILES:${PN}-zsh-completion += "${datadir}/zsh/" | ||
| 62 | # FIXME: zsh is broken in meta-oe so this cannot be enabled for now | ||
| 63 | #RDEPENDS:${PN}-zsh-completion += "zsh" | ||
