diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-07-10 18:34:20 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-07-10 18:34:20 +0000 |
commit | 13992372fdda6d88dd7bdff00e670601feec481a (patch) | |
tree | 3d22967f76d8977a346b08dc59b213cda445a709 /dev-python/psutil | |
parent | Stable for amd64 wrt bug #476342 (diff) | |
download | gentoo-2-13992372fdda6d88dd7bdff00e670601feec481a.tar.gz gentoo-2-13992372fdda6d88dd7bdff00e670601feec481a.tar.bz2 gentoo-2-13992372fdda6d88dd7bdff00e670601feec481a.zip |
Version bump.
(Portage version: 2.2.0_alpha187/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/psutil')
-rw-r--r-- | dev-python/psutil/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/psutil/psutil-1.0.0.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/dev-python/psutil/ChangeLog b/dev-python/psutil/ChangeLog index 931d7f41ea96..0f38dfb4aa4d 100644 --- a/dev-python/psutil/ChangeLog +++ b/dev-python/psutil/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/psutil # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/ChangeLog,v 1.19 2013/05/12 18:07:23 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/ChangeLog,v 1.20 2013/07/10 18:34:20 radhermit Exp $ + +*psutil-1.0.0 (10 Jul 2013) + + 10 Jul 2013; Tim Harder <radhermit@gentoo.org> +psutil-1.0.0.ebuild: + Version bump. 12 May 2013; Mike Gilbert <floppym@gentoo.org> psutil-0.7.1.ebuild: Add setuptools dependency and restore python3. diff --git a/dev-python/psutil/psutil-1.0.0.ebuild b/dev-python/psutil/psutil-1.0.0.ebuild new file mode 100644 index 000000000000..6d821941766e --- /dev/null +++ b/dev-python/psutil/psutil-1.0.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/psutil-1.0.0.ebuild,v 1.1 2013/07/10 18:34:20 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} ) + +inherit distutils-r1 + +DESCRIPTION="Retrieve information on running processes and system utilization" +HOMEPAGE="http://code.google.com/p/psutil/ http://pypi.python.org/pypi/psutil" +SRC_URI="http://psutil.googlecode.com/files/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +RESTRICT="test" + +python_test() { + esetup.py test +} |