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: Fri, 29 Jun 2018 23:17:47
Message-Id: 1530314231.e6f094a16ed97dd5c316d4bd1085d3076245d9fe.bkohler@gentoo
1 commit: e6f094a16ed97dd5c316d4bd1085d3076245d9fe
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 29 23:17:11 2018 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 29 23:17:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6f094a1
7
8 app-admin/ps_mem: revbump for python-single-r1 & minor tweaks
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 app-admin/ps_mem/ps_mem-3.12-r1.ebuild | 28 ++++++++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/app-admin/ps_mem/ps_mem-3.12-r1.ebuild b/app-admin/ps_mem/ps_mem-3.12-r1.ebuild
16 new file mode 100644
17 index 00000000000..82174961a3b
18 --- /dev/null
19 +++ b/app-admin/ps_mem/ps_mem-3.12-r1.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +PYTHON_COMPAT=( python{2_7,3_5,3_6} )
27 +DISTUTILS_SINGLE_IMPL=1
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="A utility to report core memory usage per program"
31 +HOMEPAGE="https://github.com/pixelb/${PN}"
32 +SRC_URI="https://github.com/pixelb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~sparc ~x86"
37 +IUSE=""
38 +
39 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
40 +
41 +python_install() {
42 + distutils-r1_python_install --install-scripts="${EPREFIX}/usr/sbin"
43 +}
44 +
45 +python_install_all() {
46 + distutils-r1_python_install_all
47 + doman ${PN}.1
48 +}