pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/comms/py-rich



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Apr 21 07:43:12 UTC 2022

Modified Files:
        pkgsrc/comms/py-rich: Makefile PLIST distinfo

Log Message:
py-rich: updated to 12.2.0

12.2.0

Changed

Bumped typing-extensions minimum to 4.0.0
Bumped minimum Python version to 3.6.3

12.1.0

Added

Progress.open and Progress.wrap_file method to track the progress while reading from a file or file-like object
SVG export functionality
Adding Indonesian translation

Fixed

Add missing end keyword argument to Text.from_markup
Fallback to text lexer when no lexer guessed
Fixed issue with decoding ANSI reset

12.0.1

Changed

Improve performance of cell_length
Improve performance of chop_cells

Fixed

Fix capturing stdout on legacy Windows

12.0.0

Added

Added options to TimeRemainingColumn to render a compact time format and render elapsed time when a task is finished.
Added ProgressColumn MofNCompleteColumn to display raw completed/total column (similar to DownloadColumn, but displays values as ints, does not convert to floats or add bit/bytes units).
Replace Colorama with win32 renderer
Add support for namedtuples to Pretty

Fixed

In Jupyter mode make the link target be set to "_blank"
Fix some issues with markup handling around "[" characters
Fix syntax lexer guessing.
Fixed Pretty measure not respecting expand_all
Collapsed definitions for single-character spinners, to save memory and reduce import time.
Fix print_json indent type in __init__.py
Fix error when inspecting object defined in REPL
Fix incorrect highlighting of non-indented JSON
Fixed height reset in complex renderables

Changed

Improved support for enum.Flag in ReprHighlighter
Tree now respects justify=None, i.e. won't pad to right
Removed rich.tabulate which was marked for deprecation
Deprecated rich.align.AlignValues in favor of AlignMethod


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/comms/py-rich/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/comms/py-rich/PLIST
cvs rdiff -u -r1.20 -r1.21 pkgsrc/comms/py-rich/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/comms/py-rich/Makefile
diff -u pkgsrc/comms/py-rich/Makefile:1.23 pkgsrc/comms/py-rich/Makefile:1.24
--- pkgsrc/comms/py-rich/Makefile:1.23  Mon Feb 21 17:15:36 2022
+++ pkgsrc/comms/py-rich/Makefile       Thu Apr 21 07:43:12 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2022/02/21 17:15:36 adam Exp $
+# $NetBSD: Makefile,v 1.24 2022/04/21 07:43:12 adam Exp $
 
-DISTNAME=      rich-11.2.0
+DISTNAME=      rich-12.2.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    comms python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=r/rich/}
@@ -10,7 +10,6 @@ HOMEPAGE=     https://github.com/willmcgugan
 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
 

Index: pkgsrc/comms/py-rich/PLIST
diff -u pkgsrc/comms/py-rich/PLIST:1.3 pkgsrc/comms/py-rich/PLIST:1.4
--- pkgsrc/comms/py-rich/PLIST:1.3      Sun Aug 29 08:40:59 2021
+++ pkgsrc/comms/py-rich/PLIST  Thu Apr 21 07:43:12 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2021/08/29 08:40:59 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2022/04/21 07:43:12 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -52,9 +52,15 @@ ${PYSITELIB}/rich/_stack.pyo
 ${PYSITELIB}/rich/_timer.py
 ${PYSITELIB}/rich/_timer.pyc
 ${PYSITELIB}/rich/_timer.pyo
+${PYSITELIB}/rich/_win32_console.py
+${PYSITELIB}/rich/_win32_console.pyc
+${PYSITELIB}/rich/_win32_console.pyo
 ${PYSITELIB}/rich/_windows.py
 ${PYSITELIB}/rich/_windows.pyc
 ${PYSITELIB}/rich/_windows.pyo
+${PYSITELIB}/rich/_windows_renderer.py
+${PYSITELIB}/rich/_windows_renderer.pyc
+${PYSITELIB}/rich/_windows_renderer.pyo
 ${PYSITELIB}/rich/_wrap.py
 ${PYSITELIB}/rich/_wrap.pyc
 ${PYSITELIB}/rich/_wrap.pyo
@@ -209,9 +215,6 @@ ${PYSITELIB}/rich/syntax.pyo
 ${PYSITELIB}/rich/table.py
 ${PYSITELIB}/rich/table.pyc
 ${PYSITELIB}/rich/table.pyo
-${PYSITELIB}/rich/tabulate.py
-${PYSITELIB}/rich/tabulate.pyc
-${PYSITELIB}/rich/tabulate.pyo
 ${PYSITELIB}/rich/terminal_theme.py
 ${PYSITELIB}/rich/terminal_theme.pyc
 ${PYSITELIB}/rich/terminal_theme.pyo

Index: pkgsrc/comms/py-rich/distinfo
diff -u pkgsrc/comms/py-rich/distinfo:1.20 pkgsrc/comms/py-rich/distinfo:1.21
--- pkgsrc/comms/py-rich/distinfo:1.20  Mon Feb 21 17:15:36 2022
+++ pkgsrc/comms/py-rich/distinfo       Thu Apr 21 07:43:12 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.20 2022/02/21 17:15:36 adam Exp $
+$NetBSD: distinfo,v 1.21 2022/04/21 07:43:12 adam Exp $
 
-BLAKE2s (rich-11.2.0.tar.gz) = 2bdfd9fbdf4dd62b46b005e1c46f85f86ce33bfbb9378636a595723766766496
-SHA512 (rich-11.2.0.tar.gz) = 7e6307041bba9dab03a9b513e99f14246f3e735e91a3a6d3bfce35fe1843e044e68255da336b20fcf50d2fd1037b7a43ea9bd4012159805d61afb2b8a391c737
-Size (rich-11.2.0.tar.gz) = 200464 bytes
+BLAKE2s (rich-12.2.0.tar.gz) = 001574c251a1fc1fdee7418eabb38db994fd669db5a7e23aea28f8a1a355d76b
+SHA512 (rich-12.2.0.tar.gz) = cf36aaba23d7f2a8b9752a0c7664c4f6beabd93ef5b9bbe6ab73d595962913c8bb58c0b7dad990139e43f0ceafaa8e29942d7f581191b78cbf997b5273f25692
+Size (rich-12.2.0.tar.gz) = 212235 bytes



Home | Main Index | Thread Index | Old Index