From owner-svn-ports-all@FreeBSD.ORG Mon Feb 24 10:38:52 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A3184A6; Mon, 24 Feb 2014 10:38:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DF2C712BF; Mon, 24 Feb 2014 10:38:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1OAcpW8058783; Mon, 24 Feb 2014 10:38:51 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1OAcpHO058780; Mon, 24 Feb 2014 10:38:51 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201402241038.s1OAcpHO058780@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 24 Feb 2014 10:38:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345803 - head/misc/py-progressbar 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.17 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: Mon, 24 Feb 2014 10:38:52 -0000 Author: sunpoet Date: Mon Feb 24 10:38:50 2014 New Revision: 345803 URL: http://svnweb.freebsd.org/changeset/ports/345803 QAT: https://qat.redports.org/buildarchive/r345803/ Log: - Update to 2.3 - Update LICENSE - Remove leading indefinite article from COMMENT - Reformat pkg-descr and fix typo - Take maintainership Changes: https://code.google.com/p/python-progressbar/source/browse/ChangeLog.yaml Modified: head/misc/py-progressbar/Makefile head/misc/py-progressbar/distinfo head/misc/py-progressbar/pkg-descr Modified: head/misc/py-progressbar/Makefile ============================================================================== --- head/misc/py-progressbar/Makefile Mon Feb 24 10:36:21 2014 (r345802) +++ head/misc/py-progressbar/Makefile Mon Feb 24 10:38:50 2014 (r345803) @@ -2,24 +2,20 @@ # $FreeBSD$ PORTNAME= progressbar -PORTVERSION= 2.2 -PORTREVISION= 1 +PORTVERSION= 2.3 CATEGORIES= misc python -MASTER_SITES= CHEESESHOP +MASTER_SITES= GOOGLE_CODE PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= A text progressbar library for python +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Text progressbar library for python -LICENSE= LGPL21 -LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE= BSD3CLAUSE -USE_PYTHON= yes -USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes +USE_PYDISTUTILS=yes +USE_PYTHON= 2 -post-patch: - @${REINPLACE_CMD} -E -e 's|/usr/bin/python|${PYTHON_CMD}|' \ - ${WRKSRC}/${PORTNAME}.py +PROJECTHOST= python-${PORTNAME} .include Modified: head/misc/py-progressbar/distinfo ============================================================================== --- head/misc/py-progressbar/distinfo Mon Feb 24 10:36:21 2014 (r345802) +++ head/misc/py-progressbar/distinfo Mon Feb 24 10:38:50 2014 (r345803) @@ -1,2 +1,2 @@ -SHA256 (progressbar-2.2.tar.gz) = dfee5201237ca0e942baa4d451fee8bf8a54065a337fabe7378b8585aeda56a3 -SIZE (progressbar-2.2.tar.gz) = 5118 +SHA256 (progressbar-2.3.tar.gz) = 00a316c1a99b70a803d7430fd088da24f37dbfb64f81c4772b97fbc1e8031de4 +SIZE (progressbar-2.3.tar.gz) = 9802 Modified: head/misc/py-progressbar/pkg-descr ============================================================================== --- head/misc/py-progressbar/pkg-descr Mon Feb 24 10:36:21 2014 (r345802) +++ head/misc/py-progressbar/pkg-descr Mon Feb 24 10:38:50 2014 (r345803) @@ -1,4 +1,4 @@ -This library provides a text mode progressbar. This is tipically +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. @@ -7,13 +7,10 @@ line is given by a number of widgets. A 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 - + it's update method is called; and - a ProgressBarWidgetHFill, which is like ProgressBarWidget, except -it expands to fill the remaining width of the line. + it expands to fill the remaining width of the line. -WWW: https://pypi.python.org/pypi/progressbar/ +WWW: http://code.google.com/p/python-progressbar