Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/bpytop/
Date: Sat, 29 Jan 2022 19:49:30
Message-Id: 1643485760.2418aff6c39849c986cba64e4bd5a1e8cab4cb9d.chutzpah@gentoo
1 commit: 2418aff6c39849c986cba64e4bd5a1e8cab4cb9d
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 29 19:49:20 2022 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 29 19:49:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2418aff6
7
8 sys-process/bpytop: Version bump to 1.0.68
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
12
13 sys-process/bpytop/Manifest | 1 +
14 sys-process/bpytop/bpytop-1.0.68.ebuild | 33 +++++++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/sys-process/bpytop/Manifest b/sys-process/bpytop/Manifest
18 index 5f7978c3acfb..4bc16f0e6212 100644
19 --- a/sys-process/bpytop/Manifest
20 +++ b/sys-process/bpytop/Manifest
21 @@ -1,3 +1,4 @@
22 DIST bpytop-1.0.61.tar.gz 626468 BLAKE2B 84a9bbaec6af27b06af53acbe2e735421de3bc4567fcf7fb29d05f801f7414b4e035e67a2fecb27a45d4d91c1d6ef527a16775f44c2e5620ecf797794969a2d2 SHA512 639e0d94bd500477b8288400c6fa1769f1b7327733bec8292e72eb3024e26f6242901970dfc539d9fb309f69299ea934e02ab93226f907ddbbefb670bffb027c
23 DIST bpytop-1.0.63.tar.gz 627729 BLAKE2B a61d7c101c05d8e706b5c89f3c52dd02cf99e126d73f4cdb58adf8e474774e618abce7184a6fcf1c1b69f4c491b088c4c715d7b803c56933e1a8eeb8efa77fec SHA512 85334a43137466992fe3003f7f29b6a66b41732d1953fd5653ce277d35735127eef97607599906c0d0cfc7323852da75541b2ae79db22f843892097a2d3398e4
24 DIST bpytop-1.0.67.tar.gz 628491 BLAKE2B 9ce35332dde806d132fee42f04f787e9220f05644e938d83725369157032a556c89d216a393a52a26fa6c6841a2b91b8212ee122ba734e1aedc912f7a02d350b SHA512 bfd6b365d4d76521cb5d1edccfd858732143a1a9273dc0e17d348c824c125df904b1160d9e7f81d718f880c4f3eea33d045a684706039bceb7f95ed67df2b56b
25 +DIST bpytop-1.0.68.tar.gz 632649 BLAKE2B a32a3b583b31c2c2013f4d2bb8834cf02a8702d37f723e304691eecdebcf32e21f639428abe7f5251c075aa73ed46f610e47c4241092455351001c31b2a051b5 SHA512 88a8be5cb5bbf5516dbafeb4d513d6a489ae9a8a84de316e2331a428cd4f338f8e01ed2eedd92c610b722c06dd968d85baf27692316f905855aca3d8a67a731d
26
27 diff --git a/sys-process/bpytop/bpytop-1.0.68.ebuild b/sys-process/bpytop/bpytop-1.0.68.ebuild
28 new file mode 100644
29 index 000000000000..9cd9d1c11448
30 --- /dev/null
31 +++ b/sys-process/bpytop/bpytop-1.0.68.ebuild
32 @@ -0,0 +1,33 @@
33 +# Copyright 2020-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +PYTHON_COMPAT=( python3_{7..10} )
39 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Linux/OSX/FreeBSD resource monitor"
43 +HOMEPAGE="https://github.com/aristocratos/bpytop"
44 +SRC_URI="https://github.com/aristocratos/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~x86"
49 +IUSE="test"
50 +
51 +RDEPEND="
52 + >=dev-python/psutil-5.7.1[${PYTHON_USEDEP}]
53 +"
54 +
55 +distutils_enable_tests pytest
56 +
57 +PATCHES=(
58 + "${FILESDIR}/bpytop-1.0.63-tests.patch"
59 +)
60 +
61 +src_install() {
62 + insinto "/usr/share/${PN}/themes"
63 + doins bpytop-themes/*.theme
64 + distutils-r1_src_install
65 +}