diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-09-21 23:58:47 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-09-21 23:58:47 +0000 |
commit | b4ac475bc2e3940a679ec5a755f78f429276f1ec (patch) | |
tree | 7ceb1befa1ef74ec626252bee5a470b8ee4726f8 /dev-python/psutil | |
parent | new ebuild for holland-fixes bug #339614 (diff) | |
download | gentoo-2-b4ac475bc2e3940a679ec5a755f78f429276f1ec.tar.gz gentoo-2-b4ac475bc2e3940a679ec5a755f78f429276f1ec.tar.bz2 gentoo-2-b4ac475bc2e3940a679ec5a755f78f429276f1ec.zip |
Version bump.
(Portage version: 2.2.13/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)
Diffstat (limited to 'dev-python/psutil')
-rw-r--r-- | dev-python/psutil/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/psutil/psutil-2.1.2.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/dev-python/psutil/ChangeLog b/dev-python/psutil/ChangeLog index 5e88000da209..4a8a683e675e 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.37 2014/05/06 03:51:44 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/ChangeLog,v 1.38 2014/09/21 23:58:47 radhermit Exp $ + +*psutil-2.1.2 (21 Sep 2014) + + 21 Sep 2014; Tim Harder <radhermit@gentoo.org> +psutil-2.1.2.ebuild: + Version bump. *psutil-2.1.1 (06 May 2014) diff --git a/dev-python/psutil/psutil-2.1.2.ebuild b/dev-python/psutil/psutil-2.1.2.ebuild new file mode 100644 index 000000000000..d9276ef81545 --- /dev/null +++ b/dev-python/psutil/psutil-2.1.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/psutil-2.1.2.ebuild,v 1.1 2014/09/21 23:58:47 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Retrieve information on running processes and system utilization" +HOMEPAGE="http://code.google.com/p/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}" +} |