sys-process/glances: add 4.5.4

This commmit drops the dependency on `orjson` which is deprecated in
Gentoo. This dep was made optional in 4.2.0 and Glances thru fall back
to the stdlib at a performance penalty. This is done at runtime, so
consumers may treat `orjson` as an optfeature, however due to the
deprecation of the dependency this has not been added to the optfeature
block in `pkg_postinst`.

Signed-off-by: Matt Jolly <kangie@gentoo.org>
This commit is contained in:
Matt Jolly
2026-05-31 15:29:39 +10:00
parent dd5c2d9ab6
commit 6bc4fe5b11
2 changed files with 70 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST glances-4.1.2.1.gh.tar.gz 6579592 BLAKE2B 2c22bd5bc4c1a162b92dcb016363dcf789c13b0fbeaab091f0f84d5538885b7c7e20347620491cc248242e25f81806119d82395ee72623ca2a80ffab78cddf56 SHA512 a440e6fb39c6aac3fa846e49268170e2a7c1a331a7b319dbe9d5cadf8aa9975146a5fae7d99abc085a9f9aadc739281073f5a99f95f456132a2e78b14898f340
DIST glances-4.3.1.gh.tar.gz 7041565 BLAKE2B 1aa115c7fe0c651ed8bd7b2a3b46bd7434494701508e01089815bb1a06e6e8de5e9250eab2693e4a2bc2771ddba8911bb5e572e8e3be0abba3816cee3070908d SHA512 5721f1f02a8fe0946d3c87210464337b1565884377e7dfffb0f208407a4ec4dc1bf16d4acf2139bfb4a09f195591f908e4c72368f76646d8ab7dcaed7a457e31
DIST glances-4.5.4.gh.tar.gz 7697791 BLAKE2B c3f06a309f10b290379dc905fb45e562d20bef28c37f933f2d5abd8f2bc86564fd961e8911514cd27bde82a3eac4399cf85235a131effb6c42f128fef1b97a0a SHA512 077a8068395ff972ab019b59ca842ee15b4b6fb3fc43bebb03f51f3798b221eb30fad543a83d0fd94f7cebaecd67fd35b6f2054736a670a9703a1a595ae1e35d

View File

@@ -0,0 +1,69 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_SINGLE_IMPL=1
PYTHON_COMPAT=( python3_{10..14} )
PYTHON_REQ_USE="ncurses"
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 linux-info optfeature
DESCRIPTION="CLI curses based monitoring tool"
HOMEPAGE="https://github.com/nicolargo/glances"
SRC_URI="https://github.com/nicolargo/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
RDEPEND="
$(python_gen_cond_dep '
dev-python/defusedxml[${PYTHON_USEDEP}]
>=dev-python/jinja2-3.1.6[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
>=dev-python/psutil-7.2.2[${PYTHON_USEDEP}]
')
"
# PYTHON_USEDEP omitted on purpose
BDEPEND="doc? ( dev-python/sphinx-rtd-theme )
test? ( $(python_gen_cond_dep 'dev-python/selenium[${PYTHON_USEDEP}]') )"
CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS"
PATCHES=(
"${FILESDIR}/${PN}-4.3.1-disable-update-check.patch"
)
distutils_enable_tests pytest
distutils_enable_sphinx docs --no-autodoc
pkg_setup() {
linux-info_pkg_setup
python-single-r1_pkg_setup
}
python_test() {
"${EPYTHON}" -m pytest ./tests/test_core.py || die "tests failed with ${EPYTHON}"
}
src_install() {
distutils-r1_src_install
mv "${ED}/usr/share/doc/${PN}"/* "${ED}/usr/share/doc/${PF}" || die
rmdir "${ED}/usr/share/doc/${PN}" || die
}
pkg_postinst() {
optfeature "Autodiscover mode" dev-python/zeroconf
optfeature "Cloud support" dev-python/requests
optfeature "Docker monitoring support" dev-python/docker
optfeature "SVG graph support" dev-python/pygal
optfeature "IP plugin" dev-python/netifaces
optfeature "RAID monitoring" dev-python/pymdstat
optfeature "RAID support" dev-python/pymdstat
optfeature "SNMP support" dev-python/pysnmp
optfeature "Web GUI" dev-python/fastapi dev-python/requests dev-python/uvicorn
}