diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-02-18 08:54:20 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-02-18 10:01:07 +0100 |
commit | b503e5abf891e03306ba0063b1a969dc5c55d1fd (patch) | |
tree | 09b27303180a98ebf648afe314e3c640646cf78b /dev-python/psutil | |
parent | sci-mathematics/dataplot: Version Bump (diff) | |
download | gentoo-b503e5abf891e03306ba0063b1a969dc5c55d1fd.tar.gz gentoo-b503e5abf891e03306ba0063b1a969dc5c55d1fd.tar.bz2 gentoo-b503e5abf891e03306ba0063b1a969dc5c55d1fd.zip |
dev-python/psutil: Version Bump
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/psutil')
-rw-r--r-- | dev-python/psutil/Manifest | 1 | ||||
-rw-r--r-- | dev-python/psutil/psutil-4.0.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-python/psutil/Manifest b/dev-python/psutil/Manifest index 775f3f90d30c..8f03bfeab241 100644 --- a/dev-python/psutil/Manifest +++ b/dev-python/psutil/Manifest @@ -5,3 +5,4 @@ DIST psutil-3.1.1.tar.gz 247284 SHA256 d3290bd4a027fa0b3a2e2ee87728056fe49d41126 DIST psutil-3.2.2.tar.gz 253502 SHA256 f9d848e5bd475ffe7fa3ab1c20d249807e648568af64bb0058412296ec990a0c SHA512 d1649e020fe9ba093c6948252e2eb205005700ac575ec85c696d1bd995af6b3bedad3dab0054859102aa69315905ca3390b268ce4eff5014c746a5a1713a37e5 WHIRLPOOL c4a34d7b3b369d8153de180cc2187921fbd33f26d63086d4868bfc61cf7d1965ae98425a6f9f454987b5df9ff42269a76a012047e679f4387286b127db73769d DIST psutil-3.3.0.tar.gz 261983 SHA256 421b6591d16b509aaa8d8c15821d66bb94cb4a8dc4385cad5c51b85d4a096d85 SHA512 dd6542b8900f0884d0bdfdc6668d884f5b77f0054d3c1358d5c9d78ed54ebed7f9caf2d6c2f954f57e06931cc485d9146a3f1f1a3a1f416f66f11fa26df1f2f0 WHIRLPOOL 09905d0893b165243471ad9befd5ae7e1e2399ecbf793b19c7b8c8fa5547db24d9e843abd40bb9cf13bcd84095981a386fc9ad910d51dab426b059aa8ff3d32c DIST psutil-3.4.2.tar.gz 274361 SHA256 b17fa01aa766daa388362d0eda5c215d77e03a8d37676b68971f37bf3913b725 SHA512 95c246ed4ce68a476f83868312101d88dafa9d4cef96ff60af646a443c00e6cc447d37cc1ac4e85224db16c24390575174bb7ef76f48cb839fe2e93749107ffb WHIRLPOOL ce5162eaf06b831788b7647b0558e331986085a0ad98a525781206bff9c0cc07021142d619b219dab488a66bcacfb7e78f013d2eab519f58fe5ad2dc66a963cc +DIST psutil-4.0.0.tar.gz 293800 SHA256 1a7c672f9ee79c84ff16b8de6f6040080f0e25002ac47f115f4a54aa88e5cfcd SHA512 08bd93549660e8ce5816391a1028bc3737165d060e7c12543aab6e9b3e0d8268cd31929f61bcae845d8929d6f5ecd52e2cd62708ed0c860958b78f9937e7443d WHIRLPOOL ea9c04e80a91c5805efa41e0bf8e25cfbb685b34da9c8dfd4be79f26251d4626715cfc7e0867283d2ba557255d636e661e99ab5526d59b6ccf028533d34103e3 diff --git a/dev-python/psutil/psutil-4.0.0.ebuild b/dev-python/psutil/psutil-4.0.0.ebuild new file mode 100644 index 000000000000..1152af09316f --- /dev/null +++ b/dev-python/psutil/psutil-4.0.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Retrieve information on running processes and system utilization" +HOMEPAGE="https://github.com/giampaolo/psutil https://pypi.python.org/pypi/psutil/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +RESTRICT="test" + +python_test() { + ${PYTHON} psutil/tests/runner.py || die +} |