Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ps_mem/
Date: Tue, 31 May 2022 16:34:33
Message-Id: 1654014859.743c5acff06f47bbd076bf493d9b184624bcd081.bkohler@gentoo
1 commit: 743c5acff06f47bbd076bf493d9b184624bcd081
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 31 12:10:34 2022 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue May 31 16:34:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=743c5acf
7
8 app-admin/ps_mem: add 3.14
9
10 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
11
12 app-admin/ps_mem/Manifest | 1 +
13 app-admin/ps_mem/ps_mem-3.14.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/app-admin/ps_mem/Manifest b/app-admin/ps_mem/Manifest
17 index ad90d18a1f2a..299b1ced0165 100644
18 --- a/app-admin/ps_mem/Manifest
19 +++ b/app-admin/ps_mem/Manifest
20 @@ -1 +1,2 @@
21 DIST ps_mem-3.13_p20201212.tar.gz 18513 BLAKE2B f3eea2008dbb60d34f8f3f1b6369f426685f35e5a39d40eb40dc682b01d20722f54cf965e3ee6a08ccaa14c17341c1c2ae3adbcb4b55c64798ed31ceb6f29ff7 SHA512 7f3f382d803ed2c5c7005f6b79ff8d19cb3d1aa1155717b5eeb94582c49886bce2e18d5ed41133294b7e3b7f2fbfe1d0a517619d0be6bbaf36fc71c7c5a181b6
22 +DIST ps_mem-3.14.tar.gz 18539 BLAKE2B 29046d2bcef7eafea72921440664ec40b235ddb45d068e1b2edbb40e8318b0245ec320dd6d3b96e3aad9dc2666dd8bdf88686e4bab5ccff832a4de30e4644a15 SHA512 53d9e87e6a35f48b013c7280a954fb95373668e30f41fe3e5a9d2af9b7fb9060f113a80ac5ee3af6e23370058ff3afc8b2c88c99e1666d8422e3c73dc848ee81
23
24 diff --git a/app-admin/ps_mem/ps_mem-3.14.ebuild b/app-admin/ps_mem/ps_mem-3.14.ebuild
25 new file mode 100644
26 index 000000000000..33c8ca96a668
27 --- /dev/null
28 +++ b/app-admin/ps_mem/ps_mem-3.14.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{8,9,10} )
36 +DISTUTILS_SINGLE_IMPL=1
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A utility to report core memory usage per program"
41 +HOMEPAGE="https://github.com/pixelb/ps_mem"
42 +SRC_URI="https://github.com/pixelb/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="LGPL-2.1"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~ppc64 ~sparc ~x86"
47 +IUSE=""
48 +
49 +python_install() {
50 + distutils-r1_python_install --install-scripts="${EPREFIX}/usr/sbin"
51 +}
52 +
53 +python_install_all() {
54 + distutils-r1_python_install_all
55 + doman ${PN}.1
56 +}