summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/iotop/iotop_1.27.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-01-20 16:13:40 +0800
committerKhem Raj <raj.khem@gmail.com>2025-01-24 18:20:00 -0800
commit52c479025c4a45f150adec31bb2b0fd1fb73c286 (patch)
tree561fe369e0d787997cbeb8a40e35a8cf961c4aed /meta-oe/recipes-extended/iotop/iotop_1.27.bb
parent966cdcf793d0ef198ea0a18591c2b2ff9dfdb05f (diff)
downloadmeta-openembedded-52c479025c4a45f150adec31bb2b0fd1fb73c286.tar.gz
iotop: upgrade 1.26 -> 1.27
License-Update: Copyright year updated to 1.27 Changelog: src/iotop: correct pg_cb signature Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/iotop/iotop_1.27.bb')
-rw-r--r--meta-oe/recipes-extended/iotop/iotop_1.27.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/iotop/iotop_1.27.bb b/meta-oe/recipes-extended/iotop/iotop_1.27.bb
new file mode 100644
index 0000000000..60157305c5
--- /dev/null
+++ b/meta-oe/recipes-extended/iotop/iotop_1.27.bb
@@ -0,0 +1,25 @@
1SUMMARY = "A top utility for I/O"
2LICENSE = "GPL-2.0-or-later"
3LIC_FILES_CHKSUM = "file://LICENSE;md5=3154adaa1a9ca0d8dcc1944518ece1b9"
4
5DEPENDS = "ncurses"
6
7SRC_URI = "git://github.com/Tomas-M/iotop.git;branch=master;protocol=https"
8SRCREV = "4e32789e496a027201e66b5773a9d7955f7c638b"
9
10S = "${WORKDIR}/git"
11
12inherit pkgconfig
13
14EXTRA_OEMAKE = "V=1 STRIP=true"
15# Fixes llvm-bc70b5.o: can't link soft-float modules with double-float modules
16EXTRA_OEMAKE:append:toolchain-clang:riscv64 = " NO_FLTO=1"
17EXTRA_OEMAKE:append:toolchain-clang:riscv32 = " NO_FLTO=1"
18
19# Workaround BFD linker crash with clang on arm
20# revisit when upgrading binutils and see if its fixed
21LDFLAGS:append:toolchain-clang:arm = " -fuse-ld=lld"
22
23do_install() {
24 oe_runmake install DESTDIR=${D}
25}