# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{6..8} ) inherit distutils-r1 DESCRIPTION="Suite of network stack performance tunning utilities" HOMEPAGE="https://github.com/strizhechenko/netutils-linux" SRC_URI="https://github.com/strizhechenko/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="dev-python/colorama[${PYTHON_USEDEP}] dev-python/configargparse[${PYTHON_USEDEP}] dev-python/prettytable[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] dev-python/pyyaml[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}]" DEPEND="${RDEPEND}" src_prepare() { default # Rename due collision with net-analyzer/net-snmp mv utils/snmptop utils/snmp-top || die "snmptop rename failed" sed -i '/snmptop/s/snmptop/snmp-top/' tests/utils_runnable \ || die "sed for utils_runnable failed" sed -i '/snmptop/s/snmptop/snmp-top/' README.rst \ || die "sed for README.rst failed" } python_test() { # Run only tests not affected by #659348 "${EPYTHON}" -m unittest discover -v netutils_linux_monitoring/ \ || die "tests failed with ${EPYTHON}" "${EPYTHON}" -m unittest discover -v netutils_linux_tuning/ \ || die "tests failed with ${EPYTHON}" }