python-psutil: new package

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Peter Korsgaard 2014-12-03 09:42:51 +01:00 committed by Thomas Petazzoni
parent 2312af5374
commit 5be4d61943
4 changed files with 26 additions and 0 deletions

View File

@ -517,6 +517,7 @@ menu "external python modules"
source "package/python-numpy/Config.in"
source "package/python-posix-ipc/Config.in"
source "package/python-protobuf/Config.in"
source "package/python-psutil/Config.in"
source "package/python-pyasn/Config.in"
source "package/python-pycrypto/Config.in"
source "package/python-pygame/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PSUTIL
bool "python-psutil"
help
psutil is a cross-platform library for retrieving
information on running processes and system utilization
(CPU, memory, disks, network) in Python.
https://pypi.python.org/pypi/psutil

View File

@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=015a013c46bb9bc30b5c344f26dea0d3, sha256 locally computed
md5 015a013c46bb9bc30b5c344f26dea0d3 psutil-2.1.3.tar.gz
sha256 b434c75f01715777391f10f456002e33d0ca14633f96fdbd9ff9139b42d9452c psutil-2.1.3.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-psutil
#
################################################################################
PYTHON_PSUTIL_VERSION = 2.1.3
PYTHON_PSUTIL_SOURCE = psutil-$(PYTHON_PSUTIL_VERSION).tar.gz
PYTHON_PSUTIL_SITE = http://pypi.python.org/packages/source/p/psutil
PYTHON_PSUTIL_SETUP_TYPE = setuptools
PYTHON_PSUTIL_LICENSE = BSD-3c
PYTHON_PSUTIL_LICENSE_FILES = LICENSE
$(eval $(python-package))