From 4d6e62169088985f3f4bb386012d6164cfc909cc Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 22 Oct 2021 05:08:26 +0800 Subject: [PATCH 01/15] python3-cachetools: upgrade 4.2.2 -> 4.2.4 v4.2.4 (2021-09-30) =================== - Add submodule shims for backward compatibility. v4.2.3 (2021-09-29) =================== - Add documentation and tests for using ``TTLCache`` with ``datetime``. - Link to typeshed typing stubs. - Flatten package file hierarchy. Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...{python3-cachetools_4.2.2.bb => python3-cachetools_4.2.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-cachetools_4.2.2.bb => python3-cachetools_4.2.4.bb} (88%) diff --git a/meta-python/recipes-devtools/python/python3-cachetools_4.2.2.bb b/meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb similarity index 88% rename from meta-python/recipes-devtools/python/python3-cachetools_4.2.2.bb rename to meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb index 58994d70967..1040dc7e5aa 100644 --- a/meta-python/recipes-devtools/python/python3-cachetools_4.2.2.bb +++ b/meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb @@ -27,6 +27,6 @@ do_install_ptest() { cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ } -SRC_URI[sha256sum] = "61b5ed1e22a0924aed1d23b478f37e8d52549ff8a961de2909c69bf950020cff" +SRC_URI[sha256sum] = "89ea6f1b638d5a73a4f9226be57ac5e4f399d22770b92355f92dcb0f7f001693" BBCLASSEXTEND = "native nativesdk" From b8ade2c1e6ae029ff6fa44472876c889b4ea3622 Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 22 Oct 2021 05:08:49 +0800 Subject: [PATCH 02/15] python3-cbor2: upgrade 5.4.1 -> 5.4.2 Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-cbor2_5.4.1.bb => python3-cbor2_5.4.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-cbor2_5.4.1.bb => python3-cbor2_5.4.2.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-cbor2_5.4.1.bb b/meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-cbor2_5.4.1.bb rename to meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb index 9f0242de487..d3f6cd8c16c 100644 --- a/meta-python/recipes-devtools/python/python3-cbor2_5.4.1.bb +++ b/meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb @@ -4,7 +4,7 @@ DEPENDS +="${PYTHON_PN}-setuptools-scm-native" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" -SRC_URI[sha256sum] = "a8bf432f6cb595f50aeb8fed2a4aa3b3f7caa7f135fb57e4378eaa39242feac9" +SRC_URI[sha256sum] = "e283e70b55a049ff364cc5e648fde587e4d9b0e87e4b2664c69e639135e6b3b8" inherit pypi setuptools3 ptest From d800c283b45d35ed186af4453346468b31ee4cbb Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 22 Oct 2021 05:09:21 +0800 Subject: [PATCH 03/15] python3-click: upgrade 8.0.1 -> 8.0.3 Version 8.0.3 ------------- Released 2021-10-10 - Fix issue with ``Path(resolve_path=True)`` type creating invalid paths. :issue:`2088` - Importing ``readline`` does not cause the ``confirm()`` prompt to disappear when pressing backspace. :issue:`2092` - Any default values injected by ``invoke()`` are cast to the corresponding parameter's type. :issue:`2089, 2090` Version 8.0.2 ------------- Released 2021-10-08 - ``is_bool_flag`` is not set to ``True`` if ``is_flag`` is ``False``. :issue:`1925` - Bash version detection is locale independent. :issue:`1940` - Empty ``default`` value is not shown for ``multiple=True``. :issue:`1969` - Fix shell completion for arguments that start with a forward slash such as absolute file paths. :issue:`1929` - ``Path`` type with ``resolve_path=True`` resolves relative symlinks to be relative to the containing directory. :issue:`1921` - Completion does not skip Python's resource cleanup when exiting, avoiding some unexpected warning output. :issue:`1738, 2017` - Fix type annotation for ``type`` argument in ``prompt`` function. :issue:`2062` - Fix overline and italic styles, which were incorrectly added when adding underline. :pr:`2058` - An option with ``count=True`` will not show "[x>=0]" in help text. :issue:`2072` - Default values are not cast to the parameter type twice during processing. :issue:`2085` - Options with ``multiple`` and ``flag_value`` use the flag value instead of leaving an internal placeholder. :issue:`2001` Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-click_8.0.1.bb => python3-click_8.0.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-click_8.0.1.bb => python3-click_8.0.3.bb} (92%) diff --git a/meta-python/recipes-devtools/python/python3-click_8.0.1.bb b/meta-python/recipes-devtools/python/python3-click_8.0.3.bb similarity index 92% rename from meta-python/recipes-devtools/python/python3-click_8.0.1.bb rename to meta-python/recipes-devtools/python/python3-click_8.0.3.bb index c8b9a429ed7..c31d0656730 100644 --- a/meta-python/recipes-devtools/python/python3-click_8.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-click_8.0.3.bb @@ -8,7 +8,7 @@ HOMEPAGE = "http://click.pocoo.org/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=1fa98232fd645608937a0fdc82e999b8" -SRC_URI[sha256sum] = "8c04c11192119b1ef78ea049e0a6f0463e4c48ef00a30160c704337586f3ad7a" +SRC_URI[sha256sum] = "410e932b050f5eed773c4cda94de75971c89cdb3155a72a0831139a79e5ecb5b" inherit pypi setuptools3 ptest From b2e7c91f6da5127969d3665951370e93b8364a97 Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 22 Oct 2021 05:09:52 +0800 Subject: [PATCH 04/15] python3-configargparse : upgrade 1.5.2 -> 1.5.3 Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...-configargparse_1.5.2.bb => python3-configargparse_1.5.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-configargparse_1.5.2.bb => python3-configargparse_1.5.3.bb} (85%) diff --git a/meta-python/recipes-devtools/python/python3-configargparse_1.5.2.bb b/meta-python/recipes-devtools/python/python3-configargparse_1.5.3.bb similarity index 85% rename from meta-python/recipes-devtools/python/python3-configargparse_1.5.2.bb rename to meta-python/recipes-devtools/python/python3-configargparse_1.5.3.bb index e4b67971820..7d21375548f 100644 --- a/meta-python/recipes-devtools/python/python3-configargparse_1.5.2.bb +++ b/meta-python/recipes-devtools/python/python3-configargparse_1.5.3.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/bw2/ConfigArgParse" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=da746463714cc35999ed9a42339f2943" -SRC_URI[sha256sum] = "c39540eb4843883d526beeed912dc80c92481b0c13c9787c91e614a624de3666" +SRC_URI[sha256sum] = "1b0b3cbf664ab59dada57123c81eff3d9737e0d11d8cf79e3d6eb10823f1739f" PYPI_PACKAGE = "ConfigArgParse" From c1a661dcc7f8eef00d63c4798b2eec843f309aff Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 22 Oct 2021 05:10:12 +0800 Subject: [PATCH 05/15] python3-flask: upgrade 2.0.1 -> 2.0.2 Version 2.0.2 ------------- Released 2021-10-04 - Fix type annotation for ``teardown_*`` methods. :issue:`4093` - Fix type annotation for ``before_request`` and ``before_app_request`` decorators. :issue:`4104` - Fixed the issue where typing requires template global decorators to accept functions with no arguments. :issue:`4098` - Support View and MethodView instances with async handlers. :issue:`4112` - Enhance typing of ``app.errorhandler`` decorator. :issue:`4095` - Fix registering a blueprint twice with differing names. :issue:`4124` - Fix the type of ``static_folder`` to accept ``pathlib.Path``. :issue:`4150` - ``jsonify`` handles ``decimal.Decimal`` by encoding to ``str``. :issue:`4157` - Correctly handle raising deferred errors in CLI lazy loading. :issue:`4096` - The CLI loader handles ``**kwargs`` in a ``create_app`` function. :issue:`4170` - Fix the order of ``before_request`` and other callbacks that trigger before the view returns. They are called from the app down to the closest nested blueprint. :issue:`4229` Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-flask_2.0.1.bb => python3-flask_2.0.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-flask_2.0.1.bb => python3-flask_2.0.2.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-flask_2.0.1.bb b/meta-python/recipes-devtools/python/python3-flask_2.0.2.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-flask_2.0.1.bb rename to meta-python/recipes-devtools/python/python3-flask_2.0.2.bb index f1c0461470a..e3f1df35626 100644 --- a/meta-python/recipes-devtools/python/python3-flask_2.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-flask_2.0.2.bb @@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/mitsuhiko/flask/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75" -SRC_URI[sha256sum] = "1c4c257b1892aec1398784c63791cbaa43062f1f7aeb555c4da961b20ee68f55" +SRC_URI[sha256sum] = "7b2fb8e934ddd50731893bdcdb00fc8c0315916f9fcd50d22c7cc1a95ab634e2" PYPI_PACKAGE = "Flask" From 06e3e7ee24696ed2b55308dab4c2db38cfb084c5 Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 22 Oct 2021 05:11:15 +0800 Subject: [PATCH 06/15] python3-pyscaffold: upgrade 4.1 -> 4.1.1 Version 4.1.1, 2021-10-18 ------------------------- - Ensure required extensions are installed on ``--update``, :pr:`512` - Prevent extension from crashing when persisting ``None`` in ``setup.cfg``, :pr:`510` - Prevent multi-line descriptions to crash ``putup``, :pr:`509` - Warn users about empty namespaces, :pr:`508` - Prevent parsing errors during dependency deduplication, :pr:`518` - Add ``license_files`` to ``setup.cfg`` template, :issue:`524` Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-pyscaffold_4.1.bb => python3-pyscaffold_4.1.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pyscaffold_4.1.bb => python3-pyscaffold_4.1.1.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-pyscaffold_4.1.bb b/meta-python/recipes-devtools/python/python3-pyscaffold_4.1.1.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-pyscaffold_4.1.bb rename to meta-python/recipes-devtools/python/python3-pyscaffold_4.1.1.bb index 61737c78c27..9769cd6b98c 100644 --- a/meta-python/recipes-devtools/python/python3-pyscaffold_4.1.bb +++ b/meta-python/recipes-devtools/python/python3-pyscaffold_4.1.1.bb @@ -12,7 +12,7 @@ inherit pypi setuptools3 PYPI_PACKAGE = "PyScaffold" -SRC_URI[sha256sum] = "ff83ea4e585b29a746857c49a4dcba80795af130f62ff3f722d9f39aa4ff2a75" +SRC_URI[sha256sum] = "8972252fda90d1020a93f1e99db370c002d18f52ff2fca9c3cc2a0aee74d07ad" BBCLASSEXTEND = "native nativesdk" From c7ecea5f5109a8ce0bfdca7e43649c46a947fc78 Mon Sep 17 00:00:00 2001 From: zhengruoqin Date: Fri, 22 Oct 2021 02:17:11 +0800 Subject: [PATCH 07/15] python3-socketio: upgrade 5.4.0 -> 5.4.1 Signed-off-by: Zheng Ruoqin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-socketio_5.4.0.bb => python3-socketio_5.4.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-socketio_5.4.0.bb => python3-socketio_5.4.1.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-socketio_5.4.0.bb b/meta-python/recipes-devtools/python/python3-socketio_5.4.1.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-socketio_5.4.0.bb rename to meta-python/recipes-devtools/python/python3-socketio_5.4.1.bb index cd2c436a5c4..bf8ce4c7bf8 100644 --- a/meta-python/recipes-devtools/python/python3-socketio_5.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-socketio_5.4.1.bb @@ -9,7 +9,7 @@ inherit pypi setuptools3 PYPI_PACKAGE = "python-socketio" -SRC_URI[sha256sum] = "ca807c9e1f168e96dea412d64dd834fb47c470d27fd83da0504aa4b248ba2544" +SRC_URI[sha256sum] = "ef4e273ddfebb421144a228cbab1e7e27ffe8d372514fa561e57d590ea6627b0" PACKAGECONFIG ?= "asyncio_client client" PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp ${PYTHON_PN}-websockets" From f74642dd355150ad27b88c6a0aa48d44ec49bf21 Mon Sep 17 00:00:00 2001 From: zhengruoqin Date: Fri, 22 Oct 2021 02:18:06 +0800 Subject: [PATCH 08/15] python3-sqlalchemy: upgrade 1.4.23 -> 1.4.26 Signed-off-by: Zheng Ruoqin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...ython3-sqlalchemy_1.4.23.bb => python3-sqlalchemy_1.4.26.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.4.23.bb => python3-sqlalchemy_1.4.26.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.23.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.26.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.23.bb rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.26.bb index 4bfaf656d93..e00015629bb 100644 --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.23.bb +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.26.bb @@ -4,7 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=3359ed561ac16aaa25b6c6eff84df595" -SRC_URI[sha256sum] = "76ff246881f528089bf19385131b966197bb494653990396d2ce138e2a447583" +SRC_URI[sha256sum] = "6bc7f9d7d90ef55e8c6db1308a8619cd8f40e24a34f759119b95e7284dca351a" PYPI_PACKAGE = "SQLAlchemy" inherit pypi setuptools3 From c16683cce3adeb38721369fe1ccaa36a505470a1 Mon Sep 17 00:00:00 2001 From: zhengruoqin Date: Fri, 22 Oct 2021 02:17:49 +0800 Subject: [PATCH 09/15] python3-stevedore: upgrade 3.4.0 -> 3.5.0 3.5.0 ----- * Add Python3 yoga unit tests * Update master for stable/xena * Rely on member access, the preferred access since importlib\_metadata 4.8 Signed-off-by: Zheng Ruoqin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-stevedore_3.4.0.bb => python3-stevedore_3.5.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-stevedore_3.4.0.bb => python3-stevedore_3.5.0.bb} (80%) diff --git a/meta-python/recipes-devtools/python/python3-stevedore_3.4.0.bb b/meta-python/recipes-devtools/python/python3-stevedore_3.5.0.bb similarity index 80% rename from meta-python/recipes-devtools/python/python3-stevedore_3.4.0.bb rename to meta-python/recipes-devtools/python/python3-stevedore_3.5.0.bb index e2f43048e6b..8d345e66e57 100644 --- a/meta-python/recipes-devtools/python/python3-stevedore_3.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-stevedore_3.5.0.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://docs.openstack.org/stevedore/latest/" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" -SRC_URI[sha256sum] = "59b58edb7f57b11897f150475e7bc0c39c5381f0b8e3fa9f5c20ce6c89ec4aa1" +SRC_URI[sha256sum] = "f40253887d8712eaa2bb0ea3830374416736dc8ec0e22f5a65092c1174c44335" DEPENDS += "${PYTHON_PN}-pbr-native" From 6afaa15c822a45b8efde81a77fe25fefc7d85533 Mon Sep 17 00:00:00 2001 From: zangrc Date: Fri, 22 Oct 2021 05:11:32 +0800 Subject: [PATCH 10/15] python3-werkzeug: upgrade 2.0.1 -> 2.0.2 Version 2.0.2 ------------- Released 2021-10-05 - Handle multiple tokens in ``Connection`` header when routing WebSocket requests. :issue:`2131` - Set the debugger pin cookie secure flag when on https. :pr:`2150` - Fix type annotation for ``MultiDict.update`` to accept iterable values :pr:`2142` - Prevent double encoding of redirect URL when ``merge_slash=True`` for ``Rule.match``. :issue:`2157` - ``CombinedMultiDict.to_dict`` with ``flat=False`` considers all component dicts when building value lists. :issue:`2189` - ``send_file`` only sets a detected ``Content-Encoding`` if ``as_attachment`` is disabled to avoid browsers saving decompressed ``.tar.gz`` files. :issue:`2149` - Fix type annotations for ``TypeConversionDict.get`` to not return an ``Optional`` value if both ``default`` and ``type`` are not ``None``. :issue:`2169` - Fix type annotation for routing rule factories to accept ``Iterable[RuleFactory]`` instead of ``Iterable[Rule]`` for the ``rules`` parameter. :issue:`2183` - Add missing type annotation for ``FileStorage.__getattr__`` :issue:`2155` - The debugger pin cookie is set with ``SameSite`` set to ``Strict`` instead of ``None`` to be compatible with modern browser security. :issue:`2156` - Type annotations use ``IO[bytes]`` and ``IO[str]`` instead of ``BinaryIO`` and ``TextIO`` for wider type compatibility. :issue:`2130` - Ad-hoc TLS certs are generated with SAN matching CN. :issue:`2158` - Fix memory usage for locals when using Python 3.6 or pre 0.4.17 greenlet versions. :pr:`2212` - Fix type annotation in ``CallbackDict``, because it is not utilizing a bound TypeVar. :issue:`2235` - Fix setting CSP header options on the response. :pr:`2237` - Fix an issue with with the interactive debugger where lines would not expand on click for very long tracebacks. :pr:`2239` - The interactive debugger handles displaying an exception that does not have a traceback, such as from ``ProcessPoolExecutor``. :issue:`2217` Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-werkzeug_2.0.1.bb => python3-werkzeug_2.0.2.bb} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-werkzeug_2.0.1.bb => python3-werkzeug_2.0.2.bb} (90%) diff --git a/meta-python/recipes-devtools/python/python3-werkzeug_2.0.1.bb b/meta-python/recipes-devtools/python/python3-werkzeug_2.0.2.bb similarity index 90% rename from meta-python/recipes-devtools/python/python3-werkzeug_2.0.1.bb rename to meta-python/recipes-devtools/python/python3-werkzeug_2.0.2.bb index 57db204649b..4c221cc41f3 100644 --- a/meta-python/recipes-devtools/python/python3-werkzeug_2.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-werkzeug_2.0.2.bb @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=5dc88300786f1c214c1e9827a5229462" PYPI_PACKAGE = "Werkzeug" -SRC_URI[sha256sum] = "1de1db30d010ff1af14a009224ec49ab2329ad2cde454c8a708130642d579c42" +SRC_URI[sha256sum] = "aa2bb6fc8dee8d6c504c0ac1e7f5f7dc5810a9903e793b6f715a9f015bdadb9a" inherit pypi setuptools3 @@ -35,4 +35,5 @@ RDEPENDS:${PN} += " \ ${PYTHON_PN}-threading \ ${PYTHON_PN}-unixadmin \ ${PYTHON_PN}-misc \ + ${PYTHON_PN}-profile \ " From bc89959c03752c9fda41cffe182201293d2eb5c2 Mon Sep 17 00:00:00 2001 From: Oleksandr Kravchuk Date: Sat, 23 Oct 2021 22:36:32 +0200 Subject: [PATCH 11/15] python3-h5py: update to 3.5.0 Signed-off-by: Oleksandr Kravchuk Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-h5py_3.4.0.bb => python3-h5py_3.5.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-h5py_3.4.0.bb => python3-h5py_3.5.0.bb} (90%) diff --git a/meta-python/recipes-devtools/python/python3-h5py_3.4.0.bb b/meta-python/recipes-devtools/python/python3-h5py_3.5.0.bb similarity index 90% rename from meta-python/recipes-devtools/python/python3-h5py_3.4.0.bb rename to meta-python/recipes-devtools/python/python3-h5py_3.5.0.bb index 89000b79364..aad2f917776 100644 --- a/meta-python/recipes-devtools/python/python3-h5py_3.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-h5py_3.5.0.bb @@ -4,7 +4,7 @@ SECTION = "devel/python" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=113251d71fb0384712c719b567261c5c" -SRC_URI[sha256sum] = "ee1c683d91ab010d5e85cb61e8f9e7ee0d8eab545bf3dd50a9618f1d0e8f615e" +SRC_URI[sha256sum] = "77c7be4001ac7d3ed80477de5b6942501d782de1bbe4886597bdfec2a7ab821f" SRC_URI:append = " \ file://0001-setup_build.py-avoid-absolute-path.patch \ From 919ea0bb0d7dbfcec23597d89898d1e47f0719e1 Mon Sep 17 00:00:00 2001 From: Oleksandr Kravchuk Date: Sat, 23 Oct 2021 22:36:26 +0200 Subject: [PATCH 12/15] python3-pybind11-json: update to 0.2.11 Signed-off-by: Oleksandr Kravchuk Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...3-pybind11-json_0.2.6.bb => python3-pybind11-json_0.2.11.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pybind11-json_0.2.6.bb => python3-pybind11-json_0.2.11.bb} (84%) diff --git a/meta-python/recipes-devtools/python/python3-pybind11-json_0.2.6.bb b/meta-python/recipes-devtools/python/python3-pybind11-json_0.2.11.bb similarity index 84% rename from meta-python/recipes-devtools/python/python3-pybind11-json_0.2.6.bb rename to meta-python/recipes-devtools/python/python3-pybind11-json_0.2.11.bb index c56c70ad379..838447120dc 100644 --- a/meta-python/recipes-devtools/python/python3-pybind11-json_0.2.6.bb +++ b/meta-python/recipes-devtools/python/python3-pybind11-json_0.2.11.bb @@ -2,7 +2,7 @@ SUMMARY = "Using nlohmann::json with pybind11" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=0e25ff0ec476d06d366439e1120cce98" -SRCREV = "d1d00888bc0eb7c50dde6cff1a5eb4586e620b65" +SRCREV = "0fbbe3bbb27bd07a5ec7d71cbb1f17eaf4d37702" SRC_URI = "git://github.com/pybind/pybind11_json" DEPENDS += "nlohmann-json python3-pybind11" From b62e71aff41ff1e36affe4c39a46006b7d027375 Mon Sep 17 00:00:00 2001 From: Oleksandr Kravchuk Date: Sat, 23 Oct 2021 22:36:21 +0200 Subject: [PATCH 13/15] python3-pychromecast: update to 9.3.1 Signed-off-by: Oleksandr Kravchuk Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...hon3-pychromecast_9.2.1.bb => python3-pychromecast_9.3.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pychromecast_9.2.1.bb => python3-pychromecast_9.3.1.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_9.2.1.bb b/meta-python/recipes-devtools/python/python3-pychromecast_9.3.1.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-pychromecast_9.2.1.bb rename to meta-python/recipes-devtools/python/python3-pychromecast_9.3.1.bb index 1fd76ed39d8..77b032ae2be 100644 --- a/meta-python/recipes-devtools/python/python3-pychromecast_9.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-pychromecast_9.3.1.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/balloob/pychromecast" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5" -SRC_URI[sha256sum] = "883d6e836ff5f1068a8bd00364a15b4c9854293086495e9fd9cacd9b4d54c0bf" +SRC_URI[sha256sum] = "a1d6807ae0fc455aaeecd2def87c31bb86679a2920cacfa7910db9c9db5085d4" PYPI_PACKAGE = "PyChromecast" From 453a581bf7c9aaf5e0b10d644a1b2fc5e8ddad04 Mon Sep 17 00:00:00 2001 From: Oleksandr Kravchuk Date: Sat, 23 Oct 2021 22:36:12 +0200 Subject: [PATCH 14/15] python3-tzlocal: update to 4.0.1 Signed-off-by: Oleksandr Kravchuk Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-tzlocal_3.0.bb => python3-tzlocal_4.0.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-tzlocal_3.0.bb => python3-tzlocal_4.0.1.bb} (73%) diff --git a/meta-python/recipes-devtools/python/python3-tzlocal_3.0.bb b/meta-python/recipes-devtools/python/python3-tzlocal_4.0.1.bb similarity index 73% rename from meta-python/recipes-devtools/python/python3-tzlocal_3.0.bb rename to meta-python/recipes-devtools/python/python3-tzlocal_4.0.1.bb index a9d372ee980..f8339bb2e88 100644 --- a/meta-python/recipes-devtools/python/python3-tzlocal_3.0.bb +++ b/meta-python/recipes-devtools/python/python3-tzlocal_4.0.1.bb @@ -3,6 +3,6 @@ HOMEPAGE = "https://pypi.org/project/tzlocal/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=57e0bd61643d81d05683cdce65b11d10" -SRC_URI[sha256sum] = "f4e6e36db50499e0d92f79b67361041f048e2609d166e93456b50746dc4aef12" +SRC_URI[sha256sum] = "8560aabba61b5d2a5e1697bb781f682e6eaa3ce386cee85a09a458cc0003f836" inherit pypi setuptools3 From a622bab504b0b0e18cef648020d90c77f8fdef6f Mon Sep 17 00:00:00 2001 From: Oleksandr Kravchuk Date: Sat, 23 Oct 2021 22:36:05 +0200 Subject: [PATCH 15/15] python3-zeroconf: update to 0.36.9 Signed-off-by: Oleksandr Kravchuk Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-zeroconf_0.36.0.bb => python3-zeroconf_0.36.9.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-zeroconf_0.36.0.bb => python3-zeroconf_0.36.9.bb} (79%) diff --git a/meta-python/recipes-devtools/python/python3-zeroconf_0.36.0.bb b/meta-python/recipes-devtools/python/python3-zeroconf_0.36.9.bb similarity index 79% rename from meta-python/recipes-devtools/python/python3-zeroconf_0.36.0.bb rename to meta-python/recipes-devtools/python/python3-zeroconf_0.36.9.bb index 5f6f0a29876..8258ddd51dd 100644 --- a/meta-python/recipes-devtools/python/python3-zeroconf_0.36.0.bb +++ b/meta-python/recipes-devtools/python/python3-zeroconf_0.36.9.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/jstasiak/python-zeroconf" LICENSE = "LGPL-2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=3bb705b228ea4a14ea2728215b780d80" -SRC_URI[sha256sum] = "549f685a318c06d5345ed6533f54f33b206816b564ed7f7876e7b9522e77bf29" +SRC_URI[sha256sum] = "023ebc58b765537edcb0395367b732e5271e2659760b1d5c6119aaacaeb7b390" inherit pypi setuptools3