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, 18 May 2021 15:55:24
Message-Id: 1621347838.f17e79e566f4260e56c78b6609b2641da9f03399.bkohler@gentoo
1 commit: f17e79e566f4260e56c78b6609b2641da9f03399
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 18 14:23:58 2021 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue May 18 14:23:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f17e79e5
7
8 app-admin/ps_mem: snapshot bump & add python3_10 support
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 app-admin/ps_mem/Manifest | 1 +
14 app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild | 30 +++++++++++++++++++++++++++
15 2 files changed, 31 insertions(+)
16
17 diff --git a/app-admin/ps_mem/Manifest b/app-admin/ps_mem/Manifest
18 index 11bf64c967a..77077acc5c2 100644
19 --- a/app-admin/ps_mem/Manifest
20 +++ b/app-admin/ps_mem/Manifest
21 @@ -1 +1,2 @@
22 DIST ps_mem-3.13_p20200417.tar.gz 18472 BLAKE2B 43e04d0357458107fb25600024243baaec703124fc58a819c011c847a52ad6fb7384ef38a5aa965e3ae88288cca6c76a15819466839eb729a63c4492eaa4ec0d SHA512 9694cec5d696a42dfe2f60dd024f541283e2f52aafb499ee2e551574133262bb0fc4bf6eb0e7075fb1b129aff6cd8fe6968f411f56ee1d31eb6f9aebff2d9852
23 +DIST ps_mem-3.13_p20201212.tar.gz 18513 BLAKE2B f3eea2008dbb60d34f8f3f1b6369f426685f35e5a39d40eb40dc682b01d20722f54cf965e3ee6a08ccaa14c17341c1c2ae3adbcb4b55c64798ed31ceb6f29ff7 SHA512 7f3f382d803ed2c5c7005f6b79ff8d19cb3d1aa1155717b5eeb94582c49886bce2e18d5ed41133294b7e3b7f2fbfe1d0a517619d0be6bbaf36fc71c7c5a181b6
24
25 diff --git a/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild b/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild
26 new file mode 100644
27 index 00000000000..28e3108ad2d
28 --- /dev/null
29 +++ b/app-admin/ps_mem/ps_mem-3.13_p20201212.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{8,9,10} )
37 +DISTUTILS_SINGLE_IMPL=1
38 +DISTUTILS_USE_SETUPTOOLS=rdepend
39 +
40 +inherit distutils-r1 vcs-snapshot
41 +
42 +COMMIT="f26d3f416430d1e25659fa6dd5e7412029d8fa9c"
43 +
44 +DESCRIPTION="A utility to report core memory usage per program"
45 +HOMEPAGE="https://github.com/pixelb/ps_mem"
46 +SRC_URI="https://github.com/pixelb/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
47 +
48 +LICENSE="LGPL-2.1"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~ppc64 ~sparc ~x86"
51 +IUSE=""
52 +
53 +python_install() {
54 + distutils-r1_python_install --install-scripts="${EPREFIX}/usr/sbin"
55 +}
56 +
57 +python_install_all() {
58 + distutils-r1_python_install_all
59 + doman ${PN}.1
60 +}