All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-hyperframe: Upgrade 6.0.0 -> 6.0.1
@ 2021-04-21  7:58 Leon Anavi
  2021-04-21  7:58 ` [meta-python][PATCH 2/5] python3-argcomplete: Upgrade 1.12.2 -> 1.12.3 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-21  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 6.0.1 with the following API changes:

- Added support for Python 3.9
- Added type hints

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...python3-hyperframe_6.0.0.bb => python3-hyperframe_6.0.1.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-connectivity/python-hyperframe/{python3-hyperframe_6.0.0.bb => python3-hyperframe_6.0.1.bb} (61%)

diff --git a/meta-python/recipes-connectivity/python-hyperframe/python3-hyperframe_6.0.0.bb b/meta-python/recipes-connectivity/python-hyperframe/python3-hyperframe_6.0.1.bb
similarity index 61%
rename from meta-python/recipes-connectivity/python-hyperframe/python3-hyperframe_6.0.0.bb
rename to meta-python/recipes-connectivity/python-hyperframe/python3-hyperframe_6.0.1.bb
index 4a936b49af..2d46e96112 100644
--- a/meta-python/recipes-connectivity/python-hyperframe/python3-hyperframe_6.0.0.bb
+++ b/meta-python/recipes-connectivity/python-hyperframe/python3-hyperframe_6.0.1.bb
@@ -4,7 +4,6 @@ LICENSE = "MIT"
 
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5bf1c68e73fbaec2b1687b7e71514393"
 
-SRC_URI[md5sum] = "30136a712e092b1a45ae3cad3ae93131"
-SRC_URI[sha256sum] = "742d2a4bc3152a340a49d59f32e33ec420aa8e7054c1444ef5c7efff255842f1"
+SRC_URI[sha256sum] = "ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914"
 
 inherit pypi setuptools3
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-python][PATCH 2/5] python3-argcomplete: Upgrade 1.12.2 -> 1.12.3
  2021-04-21  7:58 [meta-python][PATCH 1/5] python3-hyperframe: Upgrade 6.0.0 -> 6.0.1 Leon Anavi
@ 2021-04-21  7:58 ` Leon Anavi
  2021-04-22  5:49   ` [oe] " zangrc
  2021-04-21  7:58 ` [meta-python][PATCH 3/5] python3-asttokens: Upgrade 2.0.4 -> 2.0.5 Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Leon Anavi @ 2021-04-21  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.12.3:

- Help string support for fish
- Add option to use tempfiles for IPC
- Fix multiple command registration for non-bash shells
- Register auto completion for an arbitrary name using a given
  external script
- Skip completions from active subprocess completer
- Fix warnings regarding invalid escape sequences

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-argcomplete_1.12.2.bb => python3-argcomplete_1.12.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-argcomplete_1.12.2.bb => python3-argcomplete_1.12.3.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.2.bb b/meta-python/recipes-devtools/python/python3-argcomplete_1.12.3.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-argcomplete_1.12.2.bb
rename to meta-python/recipes-devtools/python/python3-argcomplete_1.12.3.bb
index a08f882ab1..3eb4e5c27c 100644
--- a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.2.bb
+++ b/meta-python/recipes-devtools/python/python3-argcomplete_1.12.3.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/kislyuk/argcomplete"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=2ee41112a44fe7014dce33e26468ba93"
 
-SRC_URI[sha256sum] = "de0e1282330940d52ea92a80fea2e4b9e0da1932aaa570f84d268939d1897b04"
+SRC_URI[sha256sum] = "2c7dbffd8c045ea534921e63b0be6fe65e88599990d8dc408ac8c542b72a5445"
 
 PYPI_PACKAGE = "argcomplete"
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-python][PATCH 3/5] python3-asttokens: Upgrade 2.0.4 -> 2.0.5
  2021-04-21  7:58 [meta-python][PATCH 1/5] python3-hyperframe: Upgrade 6.0.0 -> 6.0.1 Leon Anavi
  2021-04-21  7:58 ` [meta-python][PATCH 2/5] python3-argcomplete: Upgrade 1.12.2 -> 1.12.3 Leon Anavi
@ 2021-04-21  7:58 ` Leon Anavi
  2021-04-21  7:58 ` [meta-python][PATCH 4/5] python3-pysonos: Upgrade 0.0.42 -> 0.0.43 Leon Anavi
  2021-04-21  7:58 ` [meta-python][PATCH 5/5] python3-huey: Upgrade 2.3.1 -> 2.3.2 Leon Anavi
  3 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-21  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.0.5:

- setup.cfg: remove wheel dependency
- Handle starred expressions in tests
- Make 3.9 support official
- pypy2 instead of pypy2.7
- pypy3 instead of pypy3.5

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-asttokens_2.0.4.bb => python3-asttokens_2.0.5.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-asttokens_2.0.4.bb => python3-asttokens_2.0.5.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-asttokens_2.0.4.bb b/meta-python/recipes-devtools/python/python3-asttokens_2.0.5.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-asttokens_2.0.4.bb
rename to meta-python/recipes-devtools/python/python3-asttokens_2.0.5.bb
index c2149336fd..429a56bae6 100644
--- a/meta-python/recipes-devtools/python/python3-asttokens_2.0.4.bb
+++ b/meta-python/recipes-devtools/python/python3-asttokens_2.0.5.bb
@@ -7,7 +7,7 @@ PYPI_PACKAGE = "asttokens"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "a42e57e28f2ac1c85ed9b1f84109401427e5c63c04f61d15b8842b027eec5128"
+SRC_URI[sha256sum] = "9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5"
 
 DEPENDS += "\
     python3-setuptools-scm-native \
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-python][PATCH 4/5] python3-pysonos: Upgrade 0.0.42 -> 0.0.43
  2021-04-21  7:58 [meta-python][PATCH 1/5] python3-hyperframe: Upgrade 6.0.0 -> 6.0.1 Leon Anavi
  2021-04-21  7:58 ` [meta-python][PATCH 2/5] python3-argcomplete: Upgrade 1.12.2 -> 1.12.3 Leon Anavi
  2021-04-21  7:58 ` [meta-python][PATCH 3/5] python3-asttokens: Upgrade 2.0.4 -> 2.0.5 Leon Anavi
@ 2021-04-21  7:58 ` Leon Anavi
  2021-04-21  7:58 ` [meta-python][PATCH 5/5] python3-huey: Upgrade 2.3.1 -> 2.3.2 Leon Anavi
  3 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-21  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.0.43:

- Downgrade asyncio log severity

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-pysonos_0.0.42.bb => python3-pysonos_0.0.43.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pysonos_0.0.42.bb => python3-pysonos_0.0.43.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-pysonos_0.0.42.bb b/meta-python/recipes-devtools/python/python3-pysonos_0.0.43.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-pysonos_0.0.42.bb
rename to meta-python/recipes-devtools/python/python3-pysonos_0.0.43.bb
index 25defabc51..dbb6a8d8f6 100644
--- a/meta-python/recipes-devtools/python/python3-pysonos_0.0.42.bb
+++ b/meta-python/recipes-devtools/python/python3-pysonos_0.0.43.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=07b0e2ca9ac77cd65cd4edf2e13367ea"
 
-SRC_URI[sha256sum] = "20b45fa1779a01325e67822d243e1a3f7657d8b515308d84c1eb3c805cc3bdb5"
+SRC_URI[sha256sum] = "47be2b37defc856f15d7e7a419cfb939e9822750efe968db192156ebeba31684"
 
 inherit pypi setuptools3
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-python][PATCH 5/5] python3-huey: Upgrade 2.3.1 -> 2.3.2
  2021-04-21  7:58 [meta-python][PATCH 1/5] python3-hyperframe: Upgrade 6.0.0 -> 6.0.1 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-04-21  7:58 ` [meta-python][PATCH 4/5] python3-pysonos: Upgrade 0.0.42 -> 0.0.43 Leon Anavi
@ 2021-04-21  7:58 ` Leon Anavi
  3 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-21  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.3.2:

- Add hook (Huey.build_error_result) for customizing the error
  result metadata.
- Avoid crashing if another module already modified/set the
  multiprocessing start method.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-huey_2.3.1.bb => python3-huey_2.3.2.bb}     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-huey_2.3.1.bb => python3-huey_2.3.2.bb} (70%)

diff --git a/meta-python/recipes-devtools/python/python3-huey_2.3.1.bb b/meta-python/recipes-devtools/python/python3-huey_2.3.2.bb
similarity index 70%
rename from meta-python/recipes-devtools/python/python3-huey_2.3.1.bb
rename to meta-python/recipes-devtools/python/python3-huey_2.3.2.bb
index d8141c8e81..4ef80c4a85 100644
--- a/meta-python/recipes-devtools/python/python3-huey_2.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-huey_2.3.2.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=5cac039fcc82f01141cc170b48f315d4"
 
 PYPI_PACKAGE = "huey"
 
-SRC_URI[sha256sum] = "de9b6d0fd59794378fe05813d302be68038044ef3b68274b84ca8d285e20f803"
+SRC_URI[sha256sum] = "7176acb113850824490da5a31f328cc48a2002a59bfb396efbab8ecbd3573910"
 
 inherit pypi setuptools3
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [oe] [meta-python][PATCH 2/5] python3-argcomplete: Upgrade 1.12.2 -> 1.12.3
  2021-04-21  7:58 ` [meta-python][PATCH 2/5] python3-argcomplete: Upgrade 1.12.2 -> 1.12.3 Leon Anavi
@ 2021-04-22  5:49   ` zangrc
  2021-04-22  9:45     ` Leon Anavi
  0 siblings, 1 reply; 7+ messages in thread
From: zangrc @ 2021-04-22  5:49 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

Hello, this update needs to add RDEPENDS of python3-io. When you update python3-*, you need to runtime test, for example:

root@qemux86-64 :~# python3
Python 3.9.4 (default, Apr 4 2021, 18:23:51)
[GCC 10.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import argcomplete
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/argcomplete/shell_ integration.py ", line 4, in <module>
from shlex import quote
ModuleNotFoundError: No module named 'shlex'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python3.9/site-packages/argcomplete/__ init__ .py", line 11, in <module>
from .shell_ integration import shellcode
File "/usr/lib/python3.9/site-packages/argcomplete/shell_ integration.py ", line 6, in <module>
from pipes import quote
ModuleNotFoundError: No module named 'pipes'

> -----Original Message-----
> From: openembedded-devel@lists.openembedded.org
> <openembedded-devel@lists.openembedded.org> On Behalf Of Leon Anavi
> Sent: Wednesday, April 21, 2021 3:59 PM
> To: openembedded-devel@lists.openembedded.org
> Cc: Leon Anavi <leon.anavi@konsulko.com>
> Subject: [oe] [meta-python][PATCH 2/5] python3-argcomplete: Upgrade 1.12.2 ->
> 1.12.3
> 
> Upgrade to release 1.12.3:
> 
> - Help string support for fish
> - Add option to use tempfiles for IPC
> - Fix multiple command registration for non-bash shells
> - Register auto completion for an arbitrary name using a given
>   external script
> - Skip completions from active subprocess completer
> - Fix warnings regarding invalid escape sequences
> 
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>  ...hon3-argcomplete_1.12.2.bb => python3-argcomplete_1.12.3.bb} | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)  rename
> meta-python/recipes-devtools/python/{python3-argcomplete_1.12.2.bb =>
> python3-argcomplete_1.12.3.bb} (82%)
> 
> diff --git
> a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.2.bb
> b/meta-python/recipes-devtools/python/python3-argcomplete_1.12.3.bb
> similarity index 82%
> rename from
> meta-python/recipes-devtools/python/python3-argcomplete_1.12.2.bb
> rename to
> meta-python/recipes-devtools/python/python3-argcomplete_1.12.3.bb
> index a08f882ab1..3eb4e5c27c 100644
> --- a/meta-python/recipes-devtools/python/python3-argcomplete_1.12.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-argcomplete_1.12.3.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/kislyuk/argcomplete"
>  LICENSE = "Apache-2.0"
>  LIC_FILES_CHKSUM =
> "file://LICENSE.rst;md5=2ee41112a44fe7014dce33e26468ba93"
> 
> -SRC_URI[sha256sum] =
> "de0e1282330940d52ea92a80fea2e4b9e0da1932aaa570f84d268939d1897b04
> "
> +SRC_URI[sha256sum] =
> "2c7dbffd8c045ea534921e63b0be6fe65e88599990d8dc408ac8c542b72a5445"
> 
>  PYPI_PACKAGE = "argcomplete"
> 
> --
> 2.17.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [oe] [meta-python][PATCH 2/5] python3-argcomplete: Upgrade 1.12.2 -> 1.12.3
  2021-04-22  5:49   ` [oe] " zangrc
@ 2021-04-22  9:45     ` Leon Anavi
  0 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-22  9:45 UTC (permalink / raw)
  To: zangrc.fnst, openembedded-devel

Hi,

On 22.04.21 г. 8:49, zangrc.fnst@fujitsu.com wrote:
> Hello, this update needs to add RDEPENDS of python3-io.

Thank you. My bad. I've just fixed the patch and submitted it again as v2.

Thanks,
Leon

-- 
Leon Anavi
Software Engineer
konsulko.com


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-04-22  9:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-21  7:58 [meta-python][PATCH 1/5] python3-hyperframe: Upgrade 6.0.0 -> 6.0.1 Leon Anavi
2021-04-21  7:58 ` [meta-python][PATCH 2/5] python3-argcomplete: Upgrade 1.12.2 -> 1.12.3 Leon Anavi
2021-04-22  5:49   ` [oe] " zangrc
2021-04-22  9:45     ` Leon Anavi
2021-04-21  7:58 ` [meta-python][PATCH 3/5] python3-asttokens: Upgrade 2.0.4 -> 2.0.5 Leon Anavi
2021-04-21  7:58 ` [meta-python][PATCH 4/5] python3-pysonos: Upgrade 0.0.42 -> 0.0.43 Leon Anavi
2021-04-21  7:58 ` [meta-python][PATCH 5/5] python3-huey: Upgrade 2.3.1 -> 2.3.2 Leon Anavi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.