6cb66e624d
v4.64.0 (2022-04-04) 🎉 add contrib.slack v4.63.2 (2022-04-04) 🎉 rich: expose options kwargs 🔨 autonotebook: re-enable VSCode 📘 misc docs typos 🔨 update dev dependencies v4.63.1 (2022-03-23) 🧯 fix stderr/stdout missing flush() ⚡ misc speed improvements/optimisations v4.63.0 (2022-02-28) 🎉 add __reversed__() 🎉 add efficient __contains__() ⚡ improve CLI startup time (replace pkg_resources => importlib) ⚠️ tqdm.autonotebook warning & std fallback on missing ipywidgets ⚠️ warn on positional CLI arguments 🛠 misc build/test framework updates enable py3.10 tests add conda dependencies update pre-commit hooks fix pytest config (nbval, asyncio) fix dependencies & tests fix site deployment
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.37 2022/04/21 07:51:04 adam Exp $
|
|
|
|
DISTNAME= tqdm-4.64.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
|
|
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
|
|
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
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-tox-[0-9]*:../../devel/py-tox
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYSETUPTESTTARGET= pytest
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
USE_PKG_RESOURCES= yes
|
|
|
|
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
|
|
|
|
CHECK_INTERPRETER_SKIP+= ${PYSITELIB}/tqdm/completion.sh
|
|
|
|
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"
|