Wed Nov 9 07:56:56 2022 UTC ()
py-colorama: revert DESCR


(adam)
diff -r1.2 -r1.3 pkgsrc/comms/py-colorama/DESCR

cvs diff -r1.2 -r1.3 pkgsrc/comms/py-colorama/DESCR (expand / switch to context diff)
--- pkgsrc/comms/py-colorama/DESCR 2022/11/09 07:55:44 1.2
+++ pkgsrc/comms/py-colorama/DESCR 2022/11/09 07:56:56 1.3
@@ -1,3 +1,13 @@
-Blessed is an easy, practical library for making terminal apps, by providing an
+Makes ANSI escape character sequences for producing colored terminal text and
-elegant, well-documented interface to Colors, Keyboard input, and screen
+cursor positioning work under MS Windows.
-position and Location capabilities.
+
+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.