pkgsrc/misc/py-tqdm/Makefile
adam eca4a9f957 py-tqdm: updated to 4.32.1
tqdm v4.32.1 stable
fix notebook with unknown total

tqdm v4.32.0 stable
support unit_scale in notebook
support negative update
add reset() function
add [python setup.py] make run
add and update documentation
example of dynamic usage
note writing issues
update badges
add PyData2019 slides link
add JOSS paper
update manpages
add docker install
add snapcraft install
notebooks: add binder, rename RMOTR => notebooks.ai
prettify and unify contributors/maintainers/authors
CI and release framework updates
add snapcraft snaps
add travis auto-deployment
PyPI releases
docker devel/releases
update deployment dev docs
fix travis deploy pymake
update .gitinore
add & update unit tests
automate more documentation
2019-05-15 12:04:39 +00:00

27 lines
826 B
Makefile

# $NetBSD: Makefile,v 1.5 2019/05/15 12:04:39 adam Exp $
DISTNAME= tqdm-4.32.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"