svn commit: r391965 - in head/misc: . py-progressbar231

William Grzybowski wg at FreeBSD.org
Tue Jul 14 01:51:26 UTC 2015


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


More information about the svn-ports-all mailing list