From owner-svn-ports-all@freebsd.org Tue Jul 14 01:51:26 2015 Return-Path: Delivered-To: svn-ports-all@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 41A45998EAA; Tue, 14 Jul 2015 01:51:26 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 20915112C; Tue, 14 Jul 2015 01:51:26 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6E1pPYj026505; Tue, 14 Jul 2015 01:51:25 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6E1pOoE026501; Tue, 14 Jul 2015 01:51:24 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201507140151.t6E1pOoE026501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 14 Jul 2015 01:51:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391965 - in head/misc: . py-progressbar231 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jul 2015 01:51:26 -0000 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 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