tqdm v4.45.0 stable propagate and close() on exceptions fix nested clear() rework nested close() reduces screen flicker/blank space at the cost of ordering update all documentation & demos add and update tests dev framework: add pre-commit helper tqdm v4.44.1 stable fix _utils ImportError => DeprecationWarning tqdm v4.44.0 stable add automatic nrows and expose for manual override expose and warn about small chunksize in tqdm.contrib.concurrent.process_map fix py2 file stream comparison deprecate utils._environ_cols_wrapper add and update tests add documentation
27 lines
827 B
Makefile
27 lines
827 B
Makefile
# $NetBSD: Makefile,v 1.17 2020/04/10 08:04:52 adam Exp $
|
|
|
|
DISTNAME= tqdm-4.45.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= misc python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=t/tqdm/}
|
|
|
|
MAINTAINER= kamelderouiche@yahoo.com
|
|
HOMEPAGE= https://github.com/tqdm/tqdm
|
|
COMMENT= Fast, extensible progress bar for Python
|
|
LICENSE= mit
|
|
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-flake8-[0-9]*:../../devel/py-flake8
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX} && \
|
|
${MV} bin/tqdm bin/tqdm-${PYVERSSUFFIX} && \
|
|
${MV} ${PYSITELIB}/tqdm/tqdm.1 ${PKGMANDIR}/man1/tqdm-${PYVERSSUFFIX}.1 || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|