From owner-svn-ports-all@FreeBSD.ORG Wed Mar 19 01:08:39 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E4F2E419; Wed, 19 Mar 2014 01:08:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C4925962; Wed, 19 Mar 2014 01:08:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2J18cBG047706; Wed, 19 Mar 2014 01:08:38 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2J18cfQ047702; Wed, 19 Mar 2014 01:08:38 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201403190108.s2J18cfQ047702@svn.freebsd.org> From: Steve Wills Date: Wed, 19 Mar 2014 01:08:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348603 - in head/sysutils: . py-psutil121 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 01:08:39 -0000 Author: swills Date: Wed Mar 19 01:08:37 2014 New Revision: 348603 URL: http://svnweb.freebsd.org/changeset/ports/348603 QAT: https://qat.redports.org/buildarchive/r348603/ Log: psutil is a module providing an interface for retrieving information on running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by tools like ps, top and Windows task manager. This older version will be required by py-glances. WWW: http://code.google.com/p/psutil/ WWW: http://pypi.python.org/pypi/psutil/ Added: head/sysutils/py-psutil121/ head/sysutils/py-psutil121/Makefile (contents, props changed) head/sysutils/py-psutil121/distinfo (contents, props changed) head/sysutils/py-psutil121/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Mar 19 00:55:31 2014 (r348602) +++ head/sysutils/Makefile Wed Mar 19 01:08:37 2014 (r348603) @@ -736,6 +736,7 @@ SUBDIR += py-nagiosplugin SUBDIR += py-plumbum SUBDIR += py-psutil + SUBDIR += py-psutil121 SUBDIR += py-pytsk SUBDIR += py-ranger SUBDIR += py-salt Added: head/sysutils/py-psutil121/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-psutil121/Makefile Wed Mar 19 01:08:37 2014 (r348603) @@ -0,0 +1,20 @@ +# Created by: Ju Pengfei +# $FreeBSD$ + +PORTNAME= psutil +PORTVERSION= 1.2.1 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PKGNAMESUFFIX= 121 + +MAINTAINER= swills@FreeBSD.org +COMMENT= Process utilities module for Python + +LICENSE= BSD3CLAUSE + +PYDISTUTILS_AUTOPLIST= yes +USE_PYDISTUTILS=yes +USE_PYTHON= yes + +.include Added: head/sysutils/py-psutil121/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-psutil121/distinfo Wed Mar 19 01:08:37 2014 (r348603) @@ -0,0 +1,2 @@ +SHA256 (psutil-1.2.1.tar.gz) = 508e4a44c8253a386a0f86d9c9bd4a1b4cbb2f94e88d49a19c1513653ca66c45 +SIZE (psutil-1.2.1.tar.gz) = 167397 Added: head/sysutils/py-psutil121/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/py-psutil121/pkg-descr Wed Mar 19 01:08:37 2014 (r348603) @@ -0,0 +1,7 @@ +psutil is a module providing an interface for retrieving information +on running processes and system utilization (CPU, memory) in a portable +way by using Python, implementing many functionalities offered by tools +like ps, top and Windows task manager. + +WWW: http://code.google.com/p/psutil/ +WWW: http://pypi.python.org/pypi/psutil/