Date: Tue, 14 Jul 2015 01:51:24 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391965 - in head/misc: . py-progressbar231 Message-ID: <201507140151.t6E1pOoE026501@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Tue Jul 14 01:51:23 2015 New Revision: 391965 URL: https://svnweb.freebsd.org/changeset/ports/391965 Log: misc/py-progressbar231: text progress bar library for Python This is a fork of the real py-progressbar with a few additions. Added: head/misc/py-progressbar231/ head/misc/py-progressbar231/Makefile (contents, props changed) head/misc/py-progressbar231/distinfo (contents, props changed) head/misc/py-progressbar231/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Mon Jul 13 21:53:23 2015 (r391964) +++ head/misc/Makefile Tue Jul 14 01:51:23 2015 (r391965) @@ -371,6 +371,7 @@ SUBDIR += py-osd SUBDIR += py-pexpect SUBDIR += py-progressbar + SUBDIR += py-progressbar231 SUBDIR += py-qt4-demo SUBDIR += py-qt4-doc SUBDIR += py-yolk Added: head/misc/py-progressbar231/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-progressbar231/Makefile Tue Jul 14 01:51:23 2015 (r391965) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= progressbar231 +PORTVERSION= 2.3.1 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Text progressbar library for python + +LICENSE= BSD3CLAUSE + +USE_PYTHON= autoplist distutils +USES= python:2 + +CONFLICTS= py*-progressbar + +.include <bsd.port.mk> Added: head/misc/py-progressbar231/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-progressbar231/distinfo Tue Jul 14 01:51:23 2015 (r391965) @@ -0,0 +1,2 @@ +SHA256 (progressbar231-2.3.1.tar.gz) = 55b5e5c6b0077b21d14cf2166f3ee74758f89ec75175a6fce4e3f78366771148 +SIZE (progressbar231-2.3.1.tar.gz) = 10402 Added: head/misc/py-progressbar231/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-progressbar231/pkg-descr Tue Jul 14 01:51:23 2015 (r391965) @@ -0,0 +1,16 @@ +This library provides a text mode progressbar. This is typically +used to display the progress of a long running operation, providing +a visual clue that processing is underway. + +The ProgressBar class manages the progress, and the format of the +line is given by a number of widgets. A widget is an object that +may display diferently depending on the state of the progress. + +There are three types of widget: +- a string, which always shows itself; +- a ProgressBarWidget, which may return a diferent value every time + it's update method is called; and +- a ProgressBarWidgetHFill, which is like ProgressBarWidget, except + it expands to fill the remaining width of the line. + +WWW: https://pypi.python.org/pypi/progressbar231
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507140151.t6E1pOoE026501>