pkgsrc/misc/py-tqdm/Makefile
adam 629e134879 py-tqdm: updated to 4.31.1
v4.31.1:
fix file.encoding==None
add tests
tidy code, update authors and tests
add setup.py test to CI

v4.31.0:
Write bytes to stdout/stderr in py2
Add write_bytes parameter for py2/3 default override
support custom bar characters vias ascii parameter
implement, document and test custom bar spinners
support custom bar_format with unknown total
fix TypeError when unit_scale and unknown total
document format_dict
expose elapsed_s, remaining_s to bar_format
add unit option to bar_format
auto README.rst generation framework
add notes in CONTRIBUTING.md
update tests
update documentation
misc code tidy
2019-02-21 10:23:39 +00:00

27 lines
826 B
Makefile

# $NetBSD: Makefile,v 1.4 2019/02/21 10:23:39 adam Exp $
DISTNAME= tqdm-4.31.1
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"