svn commit: r417819 - in head/misc: . py-pyprind py-pyprind/files

Kubilay Kocak koobs at FreeBSD.org
Thu Jun 30 09:14:01 UTC 2016


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 <neel neelc org>

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 at 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 <bsd.port.mk>

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


More information about the svn-ports-head mailing list