pkgsrc/comms/py-rich/Makefile
adam 31cb93ee3f py-rich: updated to 10.15.1
v10.15.1

Changed

Reverted thread-safety fix for Live that introduced deadlock potential


v10.15.0

Added

Added dynamic_progress.py to examples
Added ConsoleOptions.update_height
Fixed Padding not respecting height
Added Text.from_ansi method

Changed

Some optimizations for simple strings (with only single cell widths)

Fixed

Fixed issue with progress bar not rendering markup
Fixed race condition when exiting Live
2021-11-30 17:03:00 +00:00

30 lines
949 B
Makefile

# $NetBSD: Makefile,v 1.16 2021/11/30 17:03:00 adam Exp $
DISTNAME= rich-10.15.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= comms python
MASTER_SITES= ${MASTER_SITE_PYPI:=r/rich/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/willmcgugan/rich
COMMENT= Render rich text, tables, progress bars, syntax highlighting
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-colorama>=0.4.0:../../comms/py-colorama
DEPENDS+= ${PYPKGPREFIX}-commonmark>=0.9.0:../../textproc/py-commonmark
DEPENDS+= ${PYPKGPREFIX}-pygments>=2.6.0:../../textproc/py-pygments
PYTHON_VERSIONS_INCOMPATIBLE= 27
.include "../../lang/python/pyversion.mk"
.if ${_PYTHON_VERSION} == 36
DEPENDS+= ${PYPKGPREFIX}-dataclasses>=0.7:../../devel/py-dataclasses
.endif
.if ${_PYTHON_VERSION} < 38
DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=3.7.4:../../devel/py-typing-extensions
.endif
USE_LANGUAGES= # none
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"