diff options
author | Tim Harder <radhermit@gentoo.org> | 2015-01-10 07:26:43 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2015-01-10 07:26:43 +0000 |
commit | c6d0aef0b457281e7753f140fdc016266ac3bd15 (patch) | |
tree | adba79436d30c9d6bacd049c837e3d9503c35a44 /dev-python/psutil | |
parent | Version bump. (diff) | |
download | gentoo-2-c6d0aef0b457281e7753f140fdc016266ac3bd15.tar.gz gentoo-2-c6d0aef0b457281e7753f140fdc016266ac3bd15.tar.bz2 gentoo-2-c6d0aef0b457281e7753f140fdc016266ac3bd15.zip |
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/psutil')
-rw-r--r-- | dev-python/psutil/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/psutil/psutil-2.2.0.ebuild | 26 |
2 files changed, 33 insertions, 2 deletions
diff --git a/dev-python/psutil/ChangeLog b/dev-python/psutil/ChangeLog index 6f8678bff3b0..1b56286c34fd 100644 --- a/dev-python/psutil/ChangeLog +++ b/dev-python/psutil/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/psutil -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/ChangeLog,v 1.43 2014/12/05 10:16:50 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/ChangeLog,v 1.44 2015/01/10 07:26:43 radhermit Exp $ + +*psutil-2.2.0 (10 Jan 2015) + + 10 Jan 2015; Tim Harder <radhermit@gentoo.org> +psutil-2.2.0.ebuild: + Version bump. 05 Dec 2014; Agostino Sarubbo <ago@gentoo.org> psutil-2.1.3.ebuild: Stable for x86, wrt bug #530550 diff --git a/dev-python/psutil/psutil-2.2.0.ebuild b/dev-python/psutil/psutil-2.2.0.ebuild new file mode 100644 index 000000000000..76990b71828a --- /dev/null +++ b/dev-python/psutil/psutil-2.2.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/psutil-2.2.0.ebuild,v 1.1 2015/01/10 07:26:43 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +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 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +RESTRICT="test" + +python_test() { + nosetests -v || die "Tests fail with ${EPYTHON}" +} |