Index: head/misc/py-progressbar/Makefile =================================================================== --- head/misc/py-progressbar/Makefile (revision 345802) +++ head/misc/py-progressbar/Makefile (revision 345803) @@ -1,25 +1,21 @@ # Created by: Mario Sergio Fujikawa Ferreira # $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 Index: head/misc/py-progressbar/distinfo =================================================================== --- head/misc/py-progressbar/distinfo (revision 345802) +++ head/misc/py-progressbar/distinfo (revision 345803) @@ -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 Index: head/misc/py-progressbar/pkg-descr =================================================================== --- head/misc/py-progressbar/pkg-descr (revision 345802) +++ head/misc/py-progressbar/pkg-descr (revision 345803) @@ -1,19 +1,16 @@ -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. 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 - + 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