diff options
author | 2014-05-06 03:51:44 +0000 | |
---|---|---|
committer | 2014-05-06 03:51:44 +0000 | |
commit | d12357beb8dc57a70ff82b4d2ee985136af673ed (patch) | |
tree | 7511d9482ce21c84153363e4e1226b3c433432ab /dev-python/psutil | |
parent | Version bump (diff) | |
download | gentoo-2-d12357beb8dc57a70ff82b4d2ee985136af673ed.tar.gz gentoo-2-d12357beb8dc57a70ff82b4d2ee985136af673ed.tar.bz2 gentoo-2-d12357beb8dc57a70ff82b4d2ee985136af673ed.zip |
Version bump.
(Portage version: 2.2.10/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-2.1.1.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/dev-python/psutil/ChangeLog b/dev-python/psutil/ChangeLog index dda6164ddf95..5e88000da209 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.36 2014/04/12 04:54:36 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/psutil/ChangeLog,v 1.37 2014/05/06 03:51:44 radhermit Exp $ + +*psutil-2.1.1 (06 May 2014) + + 06 May 2014; Tim Harder <radhermit@gentoo.org> +psutil-2.1.1.ebuild: + Version bump. 12 Apr 2014; Tim Harder <radhermit@gentoo.org> -psutil-0.7.1.ebuild, -psutil-1.0.0.ebuild, -psutil-1.0.1.ebuild, -psutil-1.1.0.ebuild, diff --git a/dev-python/psutil/psutil-2.1.1.ebuild b/dev-python/psutil/psutil-2.1.1.ebuild new file mode 100644 index 000000000000..50bb794a58cd --- /dev/null +++ b/dev-python/psutil/psutil-2.1.1.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.1.ebuild,v 1.1 2014/05/06 03:51:44 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,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}" +} |