mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
f6998200a5
Changelog: ========== -Publish on PyPI -Add a new --dstat option to emulate old functionality -Remove code paths for Python 2.x as we're 100% Python 3.x now (and have been for a long time) -Add documentation about bits vs bytes to refer tickets to when we get questions -Fixes for long names on --top-io-adv plugin -The --freespace plugin can now optionally take a comma separate list of mount points now Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
799 B
BlitzBasic
24 lines
799 B
BlitzBasic
SUMMARY = "Dool is a Python3 compatible fork of Dstat"
|
|
DESCRIPTION = "Dool is a command line tool to monitor many aspects of your system: \
|
|
CPU, Memory, Network, Load Average, etc. It also includes a robust plug-in architecture \
|
|
to allow monitoring other system metrics."
|
|
HOMEPAGE = "http://dag.wiee.rs/home-made/dstat"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1ebbd3e34237af26da5dc08a4e440464"
|
|
|
|
DEPENDS += "asciidoc-native xmlto-native"
|
|
RDEPENDS:${PN} += "python3-core python3-misc python3-resource python3-shell python3-six python3-unixadmin"
|
|
|
|
SRC_URI = "git://github.com/scottchiefbaker/dool.git;branch=master;protocol=https \
|
|
"
|
|
|
|
SRCREV = "b2862905be841232c9e36ce1e059d3fe34ef0cdf"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
}
|
|
|
|
|