pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-prompt_toolkit2



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed May  5 08:41:33 UTC 2021

Modified Files:
        pkgsrc/devel/py-prompt_toolkit2: Makefile PLIST distinfo

Log Message:
py-prompt_toolkit: updated to 3.0.18

3.0.18: 2021-03-22
------------------
New features:
- Added `in_thread` parameter to `Application.run`.
  This is useful for running an application in a background thread, while the
  main thread blocks. This way, we are sure not to interfere with an event loop
  in the current thread. (This simplifies some code in ptpython and fixes an
  issue regarding leaking file descriptors due to not closing the event loop
  that was created in this background thread.)

3.0.17: 2021-03-11
------------------
New features:
- Accept `style` parameter in `print_container` utility.
- On Windows, handle Control-Delete.

Fixes:
- Avoid leaking file descriptors in SSH server.

3.0.16: 2021-02-11
------------------
New features:
- Added `ScrollablePane`: a scrollable layout container.
  This allows applications to build a layout, larger than the terminal, with a
  vertical scroll bar. The vertical scrolling will be done automatically when
  certain widgets receive the focus.
- Added `DeduplicateCompleter and `ConditionalCompleter`.
- Added `deduplicate` argument to `merge_completers`.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/py-prompt_toolkit2/Makefile \
    pkgsrc/devel/py-prompt_toolkit2/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-prompt_toolkit2/PLIST

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-prompt_toolkit2/Makefile
diff -u pkgsrc/devel/py-prompt_toolkit2/Makefile:1.14 pkgsrc/devel/py-prompt_toolkit2/Makefile:1.15
--- pkgsrc/devel/py-prompt_toolkit2/Makefile:1.14       Thu Feb 11 12:44:02 2021
+++ pkgsrc/devel/py-prompt_toolkit2/Makefile    Wed May  5 08:41:33 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2021/02/11 12:44:02 adam Exp $
+# $NetBSD: Makefile,v 1.15 2021/05/05 08:41:33 adam Exp $
 
-DISTNAME=      prompt_toolkit-3.0.15
+DISTNAME=      prompt_toolkit-3.0.18
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/prompt_toolkit/}
Index: pkgsrc/devel/py-prompt_toolkit2/distinfo
diff -u pkgsrc/devel/py-prompt_toolkit2/distinfo:1.14 pkgsrc/devel/py-prompt_toolkit2/distinfo:1.15
--- pkgsrc/devel/py-prompt_toolkit2/distinfo:1.14       Thu Feb 11 12:44:02 2021
+++ pkgsrc/devel/py-prompt_toolkit2/distinfo    Wed May  5 08:41:33 2021
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.14 2021/02/11 12:44:02 adam Exp $
+$NetBSD: distinfo,v 1.15 2021/05/05 08:41:33 adam Exp $
 
-SHA1 (prompt_toolkit-3.0.15.tar.gz) = fa3ca29a24ee3ee442a6e710f61313088f7c8a42
-RMD160 (prompt_toolkit-3.0.15.tar.gz) = 4f086b5e49270065dc6860d6fc02e25a2f3c722e
-SHA512 (prompt_toolkit-3.0.15.tar.gz) = a8e2078f01a5e4b5f50fbdd16a4aa98e34322460da64be416a127234736074ae851d2be62a19bc98064376f49afc24aef40e4d568c43e92a16d55e31e7551c71
-Size (prompt_toolkit-3.0.15.tar.gz) = 3027170 bytes
+SHA1 (prompt_toolkit-3.0.18.tar.gz) = 19c0b8e4f4210d8596deca156c91f4eb41ece4d3
+RMD160 (prompt_toolkit-3.0.18.tar.gz) = 222de988a081e6e3d51ec661b29c170b35ee0956
+SHA512 (prompt_toolkit-3.0.18.tar.gz) = be2dbd72a1e08553c0e50453958b6085a7d743464acd02b303e5002e1174d672d2cadd7a992e71d0445aa2f2be7565411ae4d00c3677c275eca056a20ad9efc8
+Size (prompt_toolkit-3.0.18.tar.gz) = 3034754 bytes

Index: pkgsrc/devel/py-prompt_toolkit2/PLIST
diff -u pkgsrc/devel/py-prompt_toolkit2/PLIST:1.4 pkgsrc/devel/py-prompt_toolkit2/PLIST:1.5
--- pkgsrc/devel/py-prompt_toolkit2/PLIST:1.4   Tue Aug 11 06:34:53 2020
+++ pkgsrc/devel/py-prompt_toolkit2/PLIST       Wed May  5 08:41:33 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2020/08/11 06:34:53 adam Exp $
+@comment $NetBSD: PLIST,v 1.5 2021/05/05 08:41:33 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -49,6 +49,9 @@ ${PYSITELIB}/prompt_toolkit/completion/_
 ${PYSITELIB}/prompt_toolkit/completion/base.py
 ${PYSITELIB}/prompt_toolkit/completion/base.pyc
 ${PYSITELIB}/prompt_toolkit/completion/base.pyo
+${PYSITELIB}/prompt_toolkit/completion/deduplicate.py
+${PYSITELIB}/prompt_toolkit/completion/deduplicate.pyc
+${PYSITELIB}/prompt_toolkit/completion/deduplicate.pyo
 ${PYSITELIB}/prompt_toolkit/completion/filesystem.py
 ${PYSITELIB}/prompt_toolkit/completion/filesystem.pyc
 ${PYSITELIB}/prompt_toolkit/completion/filesystem.pyo
@@ -304,6 +307,9 @@ ${PYSITELIB}/prompt_toolkit/layout/proce
 ${PYSITELIB}/prompt_toolkit/layout/screen.py
 ${PYSITELIB}/prompt_toolkit/layout/screen.pyc
 ${PYSITELIB}/prompt_toolkit/layout/screen.pyo
+${PYSITELIB}/prompt_toolkit/layout/scrollable_pane.py
+${PYSITELIB}/prompt_toolkit/layout/scrollable_pane.pyc
+${PYSITELIB}/prompt_toolkit/layout/scrollable_pane.pyo
 ${PYSITELIB}/prompt_toolkit/layout/utils.py
 ${PYSITELIB}/prompt_toolkit/layout/utils.pyc
 ${PYSITELIB}/prompt_toolkit/layout/utils.pyo



Home | Main Index | Thread Index | Old Index