Updated dool to 1.3.2.
This commit is contained in:
parent
8f4b6dfce6
commit
6a9f60316d
|
@ -1,3 +1,5 @@
|
|||
DIST dool-1.3.2.tar.gz 152959 BLAKE2B cd0cc6f82b89ba80cd7934d609aedaeb28bdcb10b332a70b7b706bf153668645b1a042c2da7f7e4c399e5119935b2db602ee651dc2ea85c900e254e27fd89d07 SHA512 792bec7c777746e68737b1c95dac02575262fe341a75da62fcd0ef1e09185779ac376389daa45e6407be06befb003b53f2ca16982302f6e24230bd0bed70ab06
|
||||
DIST dool-20190910.tar.gz 141224 BLAKE2B 9c1d733b340b3f1d51798ce85698e7fc526aea349b500431d348d413c1fd93d07d8ccb8241e671a40363275b8c4025ed2f4983b4dfc70f5e166178635935337e SHA512 5204eb1c0a37b225d447830048e5f2372dd3973d50cbd3fbc42972782a4853b809e566550e752c857502f86ceed7ea31620ea27059f9f334d27f28cc61abd968
|
||||
EBUILD dool-1.3.2.ebuild 1137 BLAKE2B ebf49b3a5546005cb352645ea2da666ae45fdd4115e917e2c096f6090dd6646a1c12f62ba2c49e19f14e919755486112a4588751436da46f2d1b61bce5afdffc SHA512 157d46f829d99cac5b7aaf8eff0bfa330ef8f8785d9e1d6b133a7ec7808c1d52e8f4f4d48e820bd06558ecd61afd9b1f613794f65c65edf9f14636c374fefa49
|
||||
EBUILD dool-20190910.ebuild 1279 BLAKE2B 238810297eeabff1ded622a60cd2f31f0955610edc405d9022aafb2eebd9235935e8e5eb6802392849345eaf8489aa0e5747be003fb66acf9a4c3c02b3007e46 SHA512 51dacbdd87d35faec9c5d956c11a06c2e98843d0f867732c025bb7dcdd2cb603713b9fbcb21339a9195482f6242da90f75b119c929daf13475bee0242d841575
|
||||
MISC metadata.xml 872 BLAKE2B b3fb30b6fb84a1e571bb5e98be057145cb60d569af897a4cebd6378ee0aa30862895cdc12f452e6b50f11b70eae34b6d7931644a7e2aa9764a93e757888ca4a1 SHA512 a096e2a58480088661b4f3b6b0c79445ea0ed534f225d9111a1139b35e9a746654628b1d4a2c03eec42fd469ec47701120422e1fffde95023a6ad05d31cfd0e9
|
||||
|
|
60
sys-apps/dool/dool-1.3.2.ebuild
Normal file
60
sys-apps/dool/dool-1.3.2.ebuild
Normal file
|
@ -0,0 +1,60 @@
|
|||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit python-r1
|
||||
|
||||
DESCRIPTION="Versatile replacement for vmstat, iostat and ifstat (clone of dstat)"
|
||||
HOMEPAGE="https://github.com/scottchiefbaker/dool"
|
||||
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
EGIT_REPO_URI="https://github.com/scottchiefbaker/dool.git"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="
|
||||
https://github.com/scottchiefbaker/dool/archive/refs/tags/v${PV}.tar.gz
|
||||
-> ${P}.tar.gz
|
||||
"
|
||||
fi
|
||||
|
||||
if [[ "${PV}" != "9999" ]]; then
|
||||
KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="doc examples"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_compile() {
|
||||
:
|
||||
}
|
||||
|
||||
src_install() {
|
||||
python_foreach_impl python_doscript "${PN}"
|
||||
|
||||
insinto "/usr/share/${PN}"
|
||||
newins "${PN}" "${PN}.py"
|
||||
doins plugins/${PN}_*.py
|
||||
|
||||
doman "docs/${PN}.1"
|
||||
|
||||
einstalldocs
|
||||
|
||||
if use examples; then
|
||||
dodoc examples/{mstat,read}.py
|
||||
fi
|
||||
if use doc; then
|
||||
dodoc docs/*.html
|
||||
fi
|
||||
}
|
||||
|
||||
src_test() {
|
||||
python_foreach_impl emake test
|
||||
}
|
Loading…
Reference in a new issue