diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2020-08-10 17:43:17 +0300 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-08-11 09:42:45 -0700 |
| commit | 83da8507ef39364284a79f100169ae5bbf77eea5 (patch) | |
| tree | 654d692cef078cffcb43a721a3f5e43251385afb /meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.6.bb | |
| parent | c53a62a4a1c9945c8b3a8642bd50ff19002bb5ed (diff) | |
| download | meta-openembedded-83da8507ef39364284a79f100169ae5bbf77eea5.tar.gz | |
python3-prompt-toolkit: Upgrade 3.0.5 -> 3.0.6
Upgrade to release 3.0.6:
New features:
- The SSH/Telnet adaptors have been refactored and improved in
several ways.
* Handle terminal types for both telnet and SSH sessions.
* Added pipe input abstraction. (base class for `PosixPipeInput`
and `Win32PipeInput`).
* The color depth logic has been refactored and moved to the
`Output` implementations. Added `get_default_color_depth`
method to `Output` objects.
* All line feets are now preceded by a carriage return in the
telnet connection stdout.
- Introduce `REPLACE_SINGLE` input mode for Vi key bindings.
- Improvements to the checkbox implementation:
* Hide the scrollbar for a single checkbox.
* Added a "checked" setter to the checkbox.
- Expose `KeyPressEvent` in key_binding/__init__.py (often used in
type annotations).
- The renderer has been optimized so that no trailing spaces are
generated (this improves copying in some terminals).
Fixes:
- Ignore F21..F24 key bindings by default.
- Fix auto_suggest key bindings when suggestion text is empty.
- Bugfix in SIGWINCH handling.
- Handle bug in HSplit/VSplit when the number of children is zero.
- Bugfix in CPR handling in renderer. Proper cancellation of
pending tasks.
- Ensure rprompt aligns with input.
- Use `sys.stdin.encoding` for decoding stdin stream.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.6.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.6.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.6.bb b/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.6.bb new file mode 100644 index 0000000000..806e67c091 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.6.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | SUMMARY = "Library for building powerful interactive command lines in Python" | ||
| 2 | HOMEPAGE = "https://python-prompt-toolkit.readthedocs.io/" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b2cde7da89f0c1f3e49bf968d00d554f" | ||
| 5 | |||
| 6 | SRC_URI[md5sum] = "e50cb328715b338480d8d29dda54ff5d" | ||
| 7 | SRC_URI[sha256sum] = "7630ab85a23302839a0f26b31cc24f518e6155dea1ed395ea61b42c45941b6a6" | ||
| 8 | |||
| 9 | inherit pypi setuptools3 | ||
| 10 | |||
| 11 | PYPI_PACKAGE = "prompt_toolkit" | ||
| 12 | |||
| 13 | RDEPENDS_${PN} += " \ | ||
| 14 | ${PYTHON_PN}-core \ | ||
| 15 | ${PYTHON_PN}-six \ | ||
| 16 | ${PYTHON_PN}-terminal \ | ||
| 17 | ${PYTHON_PN}-threading \ | ||
| 18 | ${PYTHON_PN}-wcwidth \ | ||
| 19 | ${PYTHON_PN}-datetime \ | ||
| 20 | ${PYTHON_PN}-shell \ | ||
| 21 | ${PYTHON_PN}-image \ | ||
| 22 | " | ||
| 23 | |||
| 24 | BBCLASSEXTEND = "native nativesdk" | ||
