pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-blessed



Module Name:    pkgsrc
Committed By:   adam
Date:           Sat May 13 08:26:02 UTC 2023

Modified Files:
        pkgsrc/devel/py-blessed: DESCR Makefile distinfo

Log Message:
py-blessed: updated to 1.20.0

1.20
* introduced :meth:`~Terminal.get_fgcolor` and :meth:`~Terminal.get_bgcolor` to query
  the terminal for the currently set colors. :ghissue:`237` by :ghuser:`stefanholek`
* bugfix: Copy globals dict before iterating to avoid RuntimeError in multithreaded
  applications, :ghissue:`248` by :ghuser:`adamnovak`


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-blessed/DESCR \
    pkgsrc/devel/py-blessed/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-blessed/Makefile

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

Modified files:

Index: pkgsrc/devel/py-blessed/DESCR
diff -u pkgsrc/devel/py-blessed/DESCR:1.1 pkgsrc/devel/py-blessed/DESCR:1.2
--- pkgsrc/devel/py-blessed/DESCR:1.1   Thu Sep 15 17:51:07 2022
+++ pkgsrc/devel/py-blessed/DESCR       Sat May 13 08:26:01 2023
@@ -1,3 +1,13 @@
-Blessed is an easy, practical library for making terminal apps, by providing an
-elegant, well-documented interface to Colors, Keyboard input, and screen
-position and Location capabilities.
+Makes ANSI escape character sequences for producing colored terminal text and
+cursor positioning work under MS Windows.
+
+ANSI escape character sequences have long been used to produce colored terminal
+text and cursor positioning on Unix and Macs. Colorama makes this work on
+Windows, too, by wrapping stdout, stripping ANSI sequences it finds (which
+otherwise show up as gobbledygook in your output), and converting them into the
+appropriate win32 calls to modify the state of the terminal. On other platforms,
+Colorama does nothing.
+
+Colorama also provides some shortcuts to help generate ANSI sequences but works
+fine in conjunction with any other ANSI sequence generation library, such as
+Termcolor.
Index: pkgsrc/devel/py-blessed/distinfo
diff -u pkgsrc/devel/py-blessed/distinfo:1.1 pkgsrc/devel/py-blessed/distinfo:1.2
--- pkgsrc/devel/py-blessed/distinfo:1.1        Thu Sep 15 17:51:07 2022
+++ pkgsrc/devel/py-blessed/distinfo    Sat May 13 08:26:01 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2022/09/15 17:51:07 adam Exp $
+$NetBSD: distinfo,v 1.2 2023/05/13 08:26:01 adam Exp $
 
-BLAKE2s (blessed-1.19.1.tar.gz) = dce72cd6a04c291c84f3df43212a76da422a4bc1a77390db866a50cd5eb6d8af
-SHA512 (blessed-1.19.1.tar.gz) = 0d899c42d7c6246362081bdc5d7dd2fcb13209fe0cee7e5a4fa342bdaf16a5cc21ab7e402bc5287ab1239f7e3afb02381e0e57e2d6111b80fe3c52b92cfa0f84
-Size (blessed-1.19.1.tar.gz) = 6653802 bytes
+BLAKE2s (blessed-1.20.0.tar.gz) = c074d3319700babeae99ce84bf08461925543224af4c48ae45a367d9cb74cf14
+SHA512 (blessed-1.20.0.tar.gz) = 8567ff1c55f68ad99c6c524edbf8ee57813d23d885dcb372767debc76bc2d75642c2b0491e1ed05460f023c28403b5dabb13769dea101a1c6e3156c82e0d0355
+Size (blessed-1.20.0.tar.gz) = 6655612 bytes

Index: pkgsrc/devel/py-blessed/Makefile
diff -u pkgsrc/devel/py-blessed/Makefile:1.2 pkgsrc/devel/py-blessed/Makefile:1.3
--- pkgsrc/devel/py-blessed/Makefile:1.2        Wed Mar 29 09:34:05 2023
+++ pkgsrc/devel/py-blessed/Makefile    Sat May 13 08:26:01 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2023/03/29 09:34:05 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2023/05/13 08:26:01 adam Exp $
 
-DISTNAME=      blessed-1.19.1
+DISTNAME=      blessed-1.20.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=b/blessed/}
@@ -10,15 +10,15 @@ HOMEPAGE=   https://github.com/jquast/bles
 COMMENT=       Wrapper around terminal styling, screen positioning, and input
 LICENSE=       mit
 
+DEPENDS+=      ${PYPKGPREFIX}-curses-[0-9]*:../../devel/py-curses
 DEPENDS+=      ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six
 DEPENDS+=      ${PYPKGPREFIX}-wcwidth>=0.1.4:../../devel/py-wcwidth
 
 USE_LANGUAGES= # none
 
 .include "../../lang/python/pyversion.mk"
-
 .if ${PYTHON_VERSION} == 207
-DEPENDS+=      ${PYPKGPREFIX}-backports.functools_lru_cache-[0-9]*:../../devel/py-backports.functools_lru_cache
+DEPENDS+=      ${PYPKGPREFIX}-backports.functools_lru_cache>=1.2.1:../../devel/py-backports.functools_lru_cache
 .endif
 
 .include "../../lang/python/egg.mk"



Home | Main Index | Thread Index | Old Index