diff options
author | Sam Van Den Berge <sam.van.den.berge@gmail.com> | 2023-10-19 10:02:54 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-10-19 07:58:51 -0700 |
commit | 2dda30d3a458ba6ac25bb8af1b91cdfd47349f0c (patch) | |
tree | 50b1dde0155efd9b61bb720d2eac9fb3d217e8c5 /meta-webserver | |
parent | 3efcb6b16d9fe8ab90b1432a980f09a15b25d9c2 (diff) | |
download | meta-openembedded-2dda30d3a458ba6ac25bb8af1b91cdfd47349f0c.tar.gz |
netdata: Upgrade 1.36.1 -> 1.43.0
libyaml dependency now required. See:
6ee42875c: Bundle libyaml
json-c also seems required now. If I don't enable it, I get compile errors.
compression and https options got renamed upstream to lz4 and openssl. See:
c74bf56ee: Code reorg and cleanup - enrichment of /api/v2
Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-webserver')
-rw-r--r-- | meta-webserver/recipes-webadmin/netdata/netdata_1.43.0.bb (renamed from meta-webserver/recipes-webadmin/netdata/netdata_1.36.1.bb) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta-webserver/recipes-webadmin/netdata/netdata_1.36.1.bb b/meta-webserver/recipes-webadmin/netdata/netdata_1.43.0.bb index 52d99e7704..07ee03d86e 100644 --- a/meta-webserver/recipes-webadmin/netdata/netdata_1.36.1.bb +++ b/meta-webserver/recipes-webadmin/netdata/netdata_1.43.0.bb | |||
@@ -5,11 +5,11 @@ HOMEPAGE = "https://github.com/netdata/netdata/" | |||
5 | LICENSE = "GPL-3.0-only" | 5 | LICENSE = "GPL-3.0-only" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fc9b848046ef54b5eaee6071947abd24" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fc9b848046ef54b5eaee6071947abd24" |
7 | 7 | ||
8 | DEPENDS += "libuv util-linux zlib" | 8 | DEPENDS += "libuv util-linux zlib libyaml json-c" |
9 | 9 | ||
10 | SRC_URI = "https://github.com/${BPN}/${BPN}/releases/download/v${PV}/${BPN}-v${PV}.tar.gz \ | 10 | SRC_URI = "https://github.com/${BPN}/${BPN}/releases/download/v${PV}/${BPN}-v${PV}.tar.gz \ |
11 | " | 11 | " |
12 | SRC_URI[sha256sum] = "f4a1233112b55e07e2862ffda0416255f0aa4c8e2b16929b76fa7ad6b69fd931" | 12 | SRC_URI[sha256sum] = "d3c66273d8eb62290d412c870dcde45ea214ad187df9d5350f682d9e6d19d426" |
13 | 13 | ||
14 | # default netdata.conf for netdata configuration | 14 | # default netdata.conf for netdata configuration |
15 | SRC_URI += "file://netdata.conf" | 15 | SRC_URI += "file://netdata.conf" |
@@ -41,10 +41,10 @@ SYSTEMD_AUTO_ENABLE:${PN} = "enable" | |||
41 | USERADD_PACKAGES = "${PN}" | 41 | USERADD_PACKAGES = "${PN}" |
42 | USERADD_PARAM:${PN} = "--system --no-create-home --home-dir ${localstatedir}/run/netdata --user-group netdata" | 42 | USERADD_PARAM:${PN} = "--system --no-create-home --home-dir ${localstatedir}/run/netdata --user-group netdata" |
43 | 43 | ||
44 | PACKAGECONFIG ??= "https" | 44 | PACKAGECONFIG ??= "openssl" |
45 | PACKAGECONFIG[cloud] = "--enable-cloud, --disable-cloud, json-c" | 45 | PACKAGECONFIG[cloud] = "--enable-cloud, --disable-cloud," |
46 | PACKAGECONFIG[compression] = "--enable-compression, --disable-compression, lz4" | 46 | PACKAGECONFIG[lz4] = "--enable-lz4, --disable-lz4, lz4" |
47 | PACKAGECONFIG[https] = "--enable-https, --disable-https, openssl" | 47 | PACKAGECONFIG[openssl] = "--enable-openssl, --disable-openssl, openssl" |
48 | 48 | ||
49 | # ebpf doesn't compile (or detect) the cross compilation well | 49 | # ebpf doesn't compile (or detect) the cross compilation well |
50 | EXTRA_OECONF += "--disable-ebpf" | 50 | EXTRA_OECONF += "--disable-ebpf" |