From owner-svn-ports-head@freebsd.org Thu Jun 30 09:14:01 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 804B3B86791; Thu, 30 Jun 2016 09:14:01 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 57F7E280C; Thu, 30 Jun 2016 09:14:01 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5U9E0Su064955; Thu, 30 Jun 2016 09:14:00 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5U9E0dW064947; Thu, 30 Jun 2016 09:14:00 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201606300914.u5U9E0dW064947@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 30 Jun 2016 09:14:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417819 - in head/misc: . py-pyprind py-pyprind/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jun 2016 09:14:01 -0000 Author: koobs Date: Thu Jun 30 09:13:59 2016 New Revision: 417819 URL: https://svnweb.freebsd.org/changeset/ports/417819 Log: [NEW] misc/py-pyprind: Python Progress Bar and Percent Indicator Utility The PyPrind (Python Progress Indicator) module provides a progress bar and a percentage indicator object that let you track the progress of a loop structure or other iterative computation. Typical applications include the processing of large data sets to provide an intuitive estimate at runtime about the progress of the computation. WWW: https://www.github.com/rasbt/pyprind PR: 207758 Submitted by: Neel Chauhan Added: head/misc/py-pyprind/ head/misc/py-pyprind/Makefile (contents, props changed) head/misc/py-pyprind/distinfo (contents, props changed) head/misc/py-pyprind/files/ head/misc/py-pyprind/files/patch-setup.py (contents, props changed) head/misc/py-pyprind/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Thu Jun 30 09:02:58 2016 (r417818) +++ head/misc/Makefile Thu Jun 30 09:13:59 2016 (r417819) @@ -375,6 +375,7 @@ SUBDIR += py-osd SUBDIR += py-pexpect SUBDIR += py-powerline-status + SUBDIR += py-pyprind SUBDIR += py-progressbar SUBDIR += py-progressbar231 SUBDIR += py-qt4-demo Added: head/misc/py-pyprind/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyprind/Makefile Thu Jun 30 09:13:59 2016 (r417819) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= pyprind +PORTVERSION= 2.9.8 +DISTVERSIONPREFIX= v +CATEGORIES= misc +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PyPrind-${PORTVERSION} + +MAINTAINER= neel@neelc.org +COMMENT= Python Progress Bar and Percent Indicator Utility + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose \ + ${PYTHON_PKGNAMEPREFIX}psutil>=0.5.1:sysutils/py-psutil + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +OPTIONS_DEFINE= PSUTIL + +PSUTIL_DESC= Support monitoring CPU and memory usage +PSUTIL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psutil>=0.5.1:sysutils/py-psutil + +test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + +.include Added: head/misc/py-pyprind/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyprind/distinfo Thu Jun 30 09:13:59 2016 (r417819) @@ -0,0 +1,3 @@ +TIMESTAMP = 1465130692 +SHA256 (PyPrind-2.9.8.tar.gz) = f07dd20388a0d21838112deeb70b1705a9ebfeb8859c5741433126e4efb439b2 +SIZE (PyPrind-2.9.8.tar.gz) = 10154 Added: head/misc/py-pyprind/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyprind/files/patch-setup.py Thu Jun 30 09:13:59 2016 (r417819) @@ -0,0 +1,10 @@ +--- setup.py.orig 2016-04-14 15:46:12 UTC ++++ setup.py +@@ -39,6 +39,7 @@ setup(name='PyPrind', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Environment :: Console'], ++ test_suite = "nose.collector", + long_description=""" + + The PyPrind (Python Progress Indicator) module provides a progress Added: head/misc/py-pyprind/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyprind/pkg-descr Thu Jun 30 09:13:59 2016 (r417819) @@ -0,0 +1,7 @@ +The PyPrind (Python Progress Indicator) module provides a progress bar +and a percentage indicator object that let you track the progress of a +loop structure or other iterative computation. Typical applications +include the processing of large data sets to provide an intuitive +estimate at runtime about the progress of the computation. + +WWW: https://www.github.com/rasbt/pyprind