Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/psutil/
Date: Thu, 22 Feb 2018 19:59:22
Message-Id: 1519329536.85fc318456e5321b2535e20d3e12c39fb1430575.prometheanfire@gentoo
1 commit: 85fc318456e5321b2535e20d3e12c39fb1430575
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 22 19:19:12 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 22 19:58:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85fc3184
7
8 dev-python/psutil: 5.4.3 bup
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/psutil/Manifest | 1 +
13 dev-python/psutil/psutil-5.4.3.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-python/psutil/Manifest b/dev-python/psutil/Manifest
17 index 0e84cd13a7b..7bab1c3d842 100644
18 --- a/dev-python/psutil/Manifest
19 +++ b/dev-python/psutil/Manifest
20 @@ -1 +1,2 @@
21 DIST psutil-5.4.1.tar.gz 408489 BLAKE2B 867dd9b535134ff2ef5960f774891eb4743afc5857c4e0ba7306bd4feb42f3b255a6174a092eff2814f3e2ec9d29179d23ffe495ca85dba56fc42616e67c9a8b SHA512 84d9f61cc6c51798d98ac2f727a50d85de32171645d01abf85d4f8c58bdb3b40997ab717f859de3ea21cf5b24867e1a416ee3036d6167d3fe735eca4607a110f
22 +DIST psutil-5.4.3.tar.gz 412550 BLAKE2B c12a8418e7a7573d23a2599c6a4df9a3aa3bbe6b9cbef9e0f48b0379944e2aa06ed498adfddc30e8d9ba8e02a08f79d4867dc1e313a62040ad3550d69d62664f SHA512 f2a0f3089c3436df52d509576795e1de14c4127918fbe63b8f116f7c097ba4d67e3b55a8da167a88c6ffd340bb443109d4887c03371810997ced4478b295f960
23
24 diff --git a/dev-python/psutil/psutil-5.4.3.ebuild b/dev-python/psutil/psutil-5.4.3.ebuild
25 new file mode 100644
26 index 00000000000..0f47dc7a64c
27 --- /dev/null
28 +++ b/dev-python/psutil/psutil-5.4.3.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Retrieve information on running processes and system utilization"
40 +HOMEPAGE="https://github.com/giampaolo/psutil https://pypi.python.org/pypi/psutil/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 +IUSE="test"
47 +
48 +DEPEND="
49 + dev-python/setuptools[${PYTHON_USEDEP}]
50 + test? ( dev-python/mock[${PYTHON_USEDEP}] )
51 +"
52 +
53 +RESTRICT="test"
54 +
55 +python_test() {
56 + ${PYTHON} psutil/tests/runner.py || die
57 +}