From b65fd5a100124a2aa175d70865d6e152d358550b Mon Sep 17 00:00:00 2001 From: Max Brazhnikov Date: Tue, 27 Mar 2018 16:38:38 +0000 Subject: Add new port misc/py-progressbar2: Text mode progressbar library for Python WWW: https://pypi.python.org/pypi/progressbar2 --- misc/Makefile | 1 + misc/py-progressbar2/Makefile | 26 ++++++++++++++++++++++++++ misc/py-progressbar2/distinfo | 3 +++ misc/py-progressbar2/pkg-descr | 6 ++++++ 4 files changed, 36 insertions(+) create mode 100644 misc/py-progressbar2/Makefile create mode 100644 misc/py-progressbar2/distinfo create mode 100644 misc/py-progressbar2/pkg-descr diff --git a/misc/Makefile b/misc/Makefile index 232323ad6080..f91781c48b52 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -397,6 +397,7 @@ SUBDIR += py-pexpect SUBDIR += py-powerline-status SUBDIR += py-progressbar + SUBDIR += py-progressbar2 SUBDIR += py-progressbar231 SUBDIR += py-pyfiglet SUBDIR += py-pyprind diff --git a/misc/py-progressbar2/Makefile b/misc/py-progressbar2/Makefile new file mode 100644 index 000000000000..3d0586cc611e --- /dev/null +++ b/misc/py-progressbar2/Makefile @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= progressbar2 +PORTVERSION= 3.36.0 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= makc@FreeBSD.org +COMMENT= Text mode progressbar library for Python + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}python-utils>=2.3.0:misc/py-python-utils@${FLAVOR} + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist concurrent distutils + +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}progressbar \ + ${PYTHON_PKGNAMEPREFIX}progressbar231 + +.include diff --git a/misc/py-progressbar2/distinfo b/misc/py-progressbar2/distinfo new file mode 100644 index 000000000000..6cd034c52dc6 --- /dev/null +++ b/misc/py-progressbar2/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1521332690 +SHA256 (progressbar2-3.36.0.tar.gz) = 8600401956fc07852b309483590b424529ada8566447b2900a565218c66ee32c +SIZE (progressbar2-3.36.0.tar.gz) = 113869 diff --git a/misc/py-progressbar2/pkg-descr b/misc/py-progressbar2/pkg-descr new file mode 100644 index 000000000000..a034181ce99c --- /dev/null +++ b/misc/py-progressbar2/pkg-descr @@ -0,0 +1,6 @@ +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. + +WWW: https://pypi.python.org/pypi/progressbar2 +WWW: https://github.com/WoLpH/python-progressbar -- cgit