1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

misc/py-progressbar231: text progress bar library for Python

This is a fork of the real py-progressbar with a few additions.
This commit is contained in:
William Grzybowski 2015-07-14 01:51:23 +00:00
parent f23aae075b
commit cb76938c43
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=391965
4 changed files with 38 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,2 @@
SHA256 (progressbar231-2.3.1.tar.gz) = 55b5e5c6b0077b21d14cf2166f3ee74758f89ec75175a6fce4e3f78366771148
SIZE (progressbar231-2.3.1.tar.gz) = 10402

View File

@ -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