diff options
| author | Trevor Gamblin <tgamblin@baylibre.com> | 2023-07-25 10:15:57 -0400 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-07-25 08:43:53 -0700 |
| commit | e3e0f46aa7b6a24f7b3f3fc67df77f316ccbd432 (patch) | |
| tree | ae58373a81325f55662eb4157fa52bad41067a18 /meta-python/recipes-devtools/python/python3-sh_2.0.4.bb | |
| parent | 2b488648deb7a21f4923a79be45167a820da013f (diff) | |
| download | meta-openembedded-e3e0f46aa7b6a24f7b3f3fc67df77f316ccbd432.tar.gz | |
python3-sh: upgrade 1.14.3 -> 2.0.4
- The project uses poetry now, so inherit python_poetry_core
- Add python3-asyncio and python3-compression to RDEPENDS
Changelog (https://github.com/amoffat/sh/blob/develop/CHANGELOG.md):
2.0.4 - 5/13/22
- Allow ok_code to be used with fg #665
- Make sure new_group never creates a new session #675
2.0.2 / 2.0.3 (misversioned) - 2/13/22
- Performance regression when using a generator with _in #650
- Adding test support for python 3.11
2.0.0 - 2/9/22
- Executed commands now return a unicode string by default
- Removed magical module-like execution contexts #636
- Added basic asyncio support via _async
- Dropped support for Python < 3.8
- Bumped default tty size to more standard (24, 80)
- First argument being a RunningCommand no longer automatically passes it as stdin
- RunningCommand.__eq__ no longer has the side effect of executing the command #518
- _tee now supports both "err" and "out" #215
- Removed the builtin override cd link
- Altered process launching model to behave more expectedly #495
- Bugfix where _no_out isn't allowed with _iter="err" #638
- Allow keyword arguments to have a list of values #529
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-sh_2.0.4.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-sh_2.0.4.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-sh_2.0.4.bb b/meta-python/recipes-devtools/python/python3-sh_2.0.4.bb new file mode 100644 index 0000000000..fa9f97a8f9 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-sh_2.0.4.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | SUMMARY = "Python subprocess replacement" | ||
| 2 | HOMEPAGE = "https://github.com/amoffat/sh" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5317094292296f03405f59ae5f6544b6" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "a18920f0839991bc9dfddb6dcc006c360b1064ba96257359f0ea356e9fa75a60" | ||
| 7 | |||
| 8 | PYPI_PACKAGE = "sh" | ||
| 9 | |||
| 10 | inherit pypi python_poetry_core | ||
| 11 | |||
| 12 | RDEPENDS:${PN} += " \ | ||
| 13 | ${PYTHON_PN}-asyncio \ | ||
| 14 | ${PYTHON_PN}-codecs \ | ||
| 15 | ${PYTHON_PN}-compression \ | ||
| 16 | ${PYTHON_PN}-core \ | ||
| 17 | ${PYTHON_PN}-io \ | ||
| 18 | ${PYTHON_PN}-logging \ | ||
| 19 | ${PYTHON_PN}-resource \ | ||
| 20 | ${PYTHON_PN}-shell \ | ||
| 21 | ${PYTHON_PN}-terminal \ | ||
| 22 | ${PYTHON_PN}-threading \ | ||
| 23 | ${PYTHON_PN}-unixadmin \ | ||
| 24 | ${PYTHON_PN}-fcntl \ | ||
| 25 | " | ||
