From df100a7daa11076594b3e4b13a54b4dd2250324d Mon Sep 17 00:00:00 2001 From: zhengruoqin Date: Fri, 16 Jul 2021 14:29:11 +0800 Subject: [PATCH 01/13] python3-pymisp: upgrade 2.4.143 -> 2.4.144 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v2.4.144 (2021-06-07) --------------------- Changes ~~~~~~~ - Bump version. [Raphaël Vinot] - Bump object templates. [Raphaël Vinot] - Bump deps. [Raphaël Vinot] - Bump deps. [Raphaël Vinot] - Bump deps. [Raphaël Vinot] Other ~~~~~ - Fix misp API response content parsing. [Silvian I] Signed-off-by: Zheng Ruoqin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-pymisp_2.4.143.bb => python3-pymisp_2.4.144.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pymisp_2.4.143.bb => python3-pymisp_2.4.144.bb} (92%) diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.143.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.144.bb similarity index 92% rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.143.bb rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.144.bb index 1e3ef27a795..1e97b27aeda 100644 --- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.143.bb +++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.144.bb @@ -4,7 +4,7 @@ LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20" SRC_URI = "git://github.com/MISP/PyMISP.git;protocol=https;branch=main" -SRCREV = "c2e9663765e83f1a4aa70099546bec653ed770e7" +SRCREV = "7dbaf665d9288f2a2692bee3d6207bb6abe3c51f" S = "${WORKDIR}/git" inherit setuptools3 From b9f6eb63658b3a6bd2dde2ee7a25e159033b0342 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 16 Jul 2021 12:21:16 +0300 Subject: [PATCH 02/13] python3-requests: Upgrade 2.25.1 -> 2.26.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade to release 2.26.0: - Requests now supports Brotli compression, if either the `brotli` or `brotlicffi` package is installed - `Session.send` now correctly resolves proxy configurations from both the Session and Request. Behavior now matches `Session.request`. - Fixed a race condition in zip extraction when using Requests in parallel from zip archive. - Requests now supports `idna` 3.x on Python 3. `idna` 2.x will continue to be used on Python 2 installations Drop setup.py-Support-idna-version-3.1.patch because the issue with idna version has been solved in the upstream for Python 3. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../setup.py-Support-idna-version-3.1.patch | 40 ------------------- ...s_2.25.1.bb => python3-requests_2.26.0.bb} | 4 +- 2 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-requests/setup.py-Support-idna-version-3.1.patch rename meta-python/recipes-devtools/python/{python3-requests_2.25.1.bb => python3-requests_2.26.0.bb} (79%) diff --git a/meta-python/recipes-devtools/python/python3-requests/setup.py-Support-idna-version-3.1.patch b/meta-python/recipes-devtools/python/python3-requests/setup.py-Support-idna-version-3.1.patch deleted file mode 100644 index 26332249daa..00000000000 --- a/meta-python/recipes-devtools/python/python3-requests/setup.py-Support-idna-version-3.1.patch +++ /dev/null @@ -1,40 +0,0 @@ -From fc45beed40a86c8fc38fc430765c1c5d2c9961c2 Mon Sep 17 00:00:00 2001 -From: Fabio Berton -Date: Thu, 4 Mar 2021 09:26:48 -0300 -Subject: [PATCH] setup.py: Support idna version 3.1 -Organization: O.S. Systems Software LTDA. - -Change idna required version to use python3-idna recipe that currently -is on version 3.1. - -Without this change python-request doesn't work as the idna version -doesn't match the required versions. When bump python-request recipe, -verify if the upstream project bumped the idna version and drop this -patch. - -As this recipe was tested with python3-idna_3.1 don't allow higher -versions. - -Upstream-Status: Inappropriate [embedded specific] - -Signed-off-by: Fabio Berton ---- - setup.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/setup.py b/setup.py -index 7ba4b2a2..9d3b973e 100755 ---- a/setup.py -+++ b/setup.py -@@ -43,7 +43,7 @@ packages = ['requests'] - - requires = [ - 'chardet>=3.0.2,<5', -- 'idna>=2.5,<3', -+ 'idna>=2.5,<3.2', - 'urllib3>=1.21.1,<1.27', - 'certifi>=2017.4.17' - --- -2.30.1 - diff --git a/meta-python/recipes-devtools/python/python3-requests_2.25.1.bb b/meta-python/recipes-devtools/python/python3-requests_2.26.0.bb similarity index 79% rename from meta-python/recipes-devtools/python/python3-requests_2.25.1.bb rename to meta-python/recipes-devtools/python/python3-requests_2.26.0.bb index cea8fd5178b..95e6e1a6b6b 100644 --- a/meta-python/recipes-devtools/python/python3-requests_2.25.1.bb +++ b/meta-python/recipes-devtools/python/python3-requests_2.26.0.bb @@ -3,9 +3,7 @@ HOMEPAGE = "http://python-requests.org" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" -SRC_URI += "file://setup.py-Support-idna-version-3.1.patch" - -SRC_URI[sha256sum] = "27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804" +SRC_URI[sha256sum] = "b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7" inherit pypi setuptools3 From 64045d5dea8c02d97400dabc7c307fcdc753914f Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 16 Jul 2021 12:21:17 +0300 Subject: [PATCH 03/13] python3-websocket-client: Upgrade 1.0.1 -> 1.1.0 Upgrade to release 1.1.0: - Set enable_multithread to True by default - Performance improvement in _mask() function - Performance improvement in recv_strict() function - Performance improvement by removing numpy-related code - Support uppercase no_proxy, http_proxy, https_proxy env vars - Add sslopt 'server_hostname' support - Replace deprecated ssl.PROTOCOL_SSLv23 with ssl.PROTOCOL_TLS - Update documentation, README Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...socket-client_1.0.1.bb => python3-websocket-client_1.1.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-websocket-client_1.0.1.bb => python3-websocket-client_1.1.0.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-websocket-client_1.0.1.bb b/meta-python/recipes-devtools/python/python3-websocket-client_1.1.0.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-websocket-client_1.0.1.bb rename to meta-python/recipes-devtools/python/python3-websocket-client_1.1.0.bb index da4e05f3085..b46392aeef6 100644 --- a/meta-python/recipes-devtools/python/python3-websocket-client_1.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-websocket-client_1.1.0.bb @@ -7,7 +7,7 @@ HOMEPAGE = "https://github.com/websocket-client/websocket-client" LICENSE = "LGPLv2.1" LIC_FILES_CHKSUM = "file://LICENSE;md5=c96ca6c1de8adc025adfada81d06fba5" -SRC_URI[sha256sum] = "3e2bf58191d4619b161389a95bdce84ce9e0b24eb8107e7e590db682c2d0ca81" +SRC_URI[sha256sum] = "b68e4959d704768fa20e35c9d508c8dc2bbc041fd8d267c0d7345cffe2824568" inherit pypi setuptools3 From f4843ed07ea37f532dde3f046599bd1b4665c09c Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Fri, 16 Jul 2021 09:27:36 -0400 Subject: [PATCH 04/13] python3-geomet: add recipe GeoMet - Convert GeoJSON to WKT/WKB, and vice versa Release 0.3.0 notes: - Add support for GeoPackage binary format (#56) - Add support for EsriJSON (#63, #66) - Migrate CI/CD/release automation to CircleCI, away from - Travis-CI (#62) - Automate releases to PyPI through CircleCI (#62, #67) - Fix parsing for empty geometries (#53, #49) - Improve test coverage (#54) Signed-off-by: Trevor Gamblin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/python3-geomet_0.3.0.bb | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-geomet_0.3.0.bb diff --git a/meta-python/recipes-devtools/python/python3-geomet_0.3.0.bb b/meta-python/recipes-devtools/python/python3-geomet_0.3.0.bb new file mode 100644 index 00000000000..bf2db495ca9 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-geomet_0.3.0.bb @@ -0,0 +1,21 @@ +SUMMARY = "Convert GeoJSON to WKT/WKB (Well-Known Text/Binary), and vice versa." +DESCRIPTION = "Convert GeoJSON to WKT/WKB (Well-Known Text/Binary), and vice versa." +HOMEPAGE = "https://github.com/geomet/geomet" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314" +SRCNAME = "geomet" + +SRC_URI[sha256sum] = "cb52411978ee01ff104ab48f108d7333b14423ae7a15a65fee25b7d29bda2e1b" + +S = "${WORKDIR}/git" +SRC_URI = "git://github.com/geomet/geomet.git;protocol=https;branch=release-${PV} \ + " +SRCREV = "73ec5ec96cca32f2e2461d3964fc3d4ab80248f9" + +inherit setuptools3 + +RDEPENDS_${PN} += "\ + ${PYTHON_PN}-click \ + ${PYTHON_PN}-six \ +" From 186c211cef0a765ae32340eaf11105175df736f1 Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Fri, 16 Jul 2021 09:27:37 -0400 Subject: [PATCH 05/13] python3-cassandra-driver: add geomet to RDEPENDS, remove DISTUTILS options python3-cassandra-driver is failing on do_install because the recipe is trying to pull sources while installing, but it can no longer do this because a recent change to python3-setuptools removing support for the deprecated ssl.match_hostname method. Since this only seems to occur when the DISTUTILS = "--no-libev" option to disable the libev extension is given, remove that from the recipe and let the extension be compiled into the package. Additionally, add python3-geomet (the dependency that cassandra-driver was trying to pull during do_install) to the RDEPENDS now that it exists as a recipe. Signed-off-by: Trevor Gamblin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/python3-cassandra-driver_3.25.0.bb | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/meta-python/recipes-devtools/python/python3-cassandra-driver_3.25.0.bb b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.25.0.bb index a1941bf3cbd..ad446d6efa1 100644 --- a/meta-python/recipes-devtools/python/python3-cassandra-driver_3.25.0.bb +++ b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.25.0.bb @@ -10,17 +10,11 @@ SRCNAME = "cassandra-driver" SRC_URI[sha256sum] = "8ad7d7c090eb1cac6110b3bfc1fd2d334ac62f415aac09350ebb8d241b7aa7ee" -DISTUTILS_BUILD_ARGS += " \ - --no-libev \ -" -DISTUTILS_INSTALL_ARGS += " \ - --no-libev \ -" - inherit pypi setuptools3 RDEPENDS_${PN} += "\ ${PYTHON_PN}-cython \ + ${PYTHON_PN}-geomet \ ${PYTHON_PN}-json \ ${PYTHON_PN}-misc \ ${PYTHON_PN}-multiprocessing \ From 2b8540f667ba3d1928642fe2a84ed2ba03f01fc6 Mon Sep 17 00:00:00 2001 From: zhengruoqin Date: Fri, 16 Jul 2021 14:27:28 +0800 Subject: [PATCH 06/13] python3-protobuf: upgrade 3.17.0 -> 3.17.3 C++ Introduce FieldAccessListener. Stop emitting boilerplate {Copy/Merge}From in each ProtoBuf class Fixed some uninitialized variable warnings in generated_message_reflection.cc. Kotlin Fix duplicate proto files error (#8699) Java Fixed parser to check that we are at a proper limit when a sub-message has finished parsing. General Support M1 (#8557) Signed-off-by: Zheng Ruoqin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-protobuf_3.17.0.bb => python3-protobuf_3.17.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-protobuf_3.17.0.bb => python3-protobuf_3.17.3.bb} (92%) diff --git a/meta-python/recipes-devtools/python/python3-protobuf_3.17.0.bb b/meta-python/recipes-devtools/python/python3-protobuf_3.17.3.bb similarity index 92% rename from meta-python/recipes-devtools/python/python3-protobuf_3.17.0.bb rename to meta-python/recipes-devtools/python/python3-protobuf_3.17.3.bb index be846f7993c..b3f9f6f21b2 100644 --- a/meta-python/recipes-devtools/python/python3-protobuf_3.17.0.bb +++ b/meta-python/recipes-devtools/python/python3-protobuf_3.17.3.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=19e8f490f9526b1de8 inherit pypi setuptools3 -SRC_URI[sha256sum] = "05dfe9319939a8473c21b469f34f6486646e54fb8542637cf7ed8e2fbfe21538" +SRC_URI[sha256sum] = "72804ea5eaa9c22a090d2803813e280fb273b62d5ae497aaf3553d141c4fdd7b" # http://errors.yoctoproject.org/Errors/Details/184715/ # Can't find required file: ../src/google/protobuf/descriptor.proto From bc1dd066221c0d900213e2a4f90eb104fde34913 Mon Sep 17 00:00:00 2001 From: zhengruoqin Date: Fri, 16 Jul 2021 14:28:49 +0800 Subject: [PATCH 07/13] python3-pulsectl: upgrade 21.5.17 -> 21.5.18 Signed-off-by: Zheng Ruoqin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...{python3-pulsectl_21.5.17.bb => python3-pulsectl_21.5.18.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pulsectl_21.5.17.bb => python3-pulsectl_21.5.18.bb} (84%) diff --git a/meta-python/recipes-devtools/python/python3-pulsectl_21.5.17.bb b/meta-python/recipes-devtools/python/python3-pulsectl_21.5.18.bb similarity index 84% rename from meta-python/recipes-devtools/python/python3-pulsectl_21.5.17.bb rename to meta-python/recipes-devtools/python/python3-pulsectl_21.5.18.bb index 3c0a9c0e5bc..d039b7ee301 100644 --- a/meta-python/recipes-devtools/python/python3-pulsectl_21.5.17.bb +++ b/meta-python/recipes-devtools/python/python3-pulsectl_21.5.18.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/mk-fg/python-pulse-control" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://COPYING;md5=f1d10048469ff90123263eb5e214061d" -SRC_URI[sha256sum] = "3f782b3adf6d91b2398504002d248b36aa047bd04d5acd0ae5d4e2d3c8e746a0" +SRC_URI[sha256sum] = "14e34563cdad5f01d193f1ef7cd859a0fbdaa846726d44b0b68f4451a7458458" RDEPENDS_${PN} += " \ libpulse \ From 334953f4da2ae01ecc9208ebd04c648bfdcb1549 Mon Sep 17 00:00:00 2001 From: zhengruoqin Date: Fri, 16 Jul 2021 14:27:43 +0800 Subject: [PATCH 08/13] python3-pytun: upgrade 2.3.0 -> 2.4.1 Signed-off-by: Zheng Ruoqin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-pytun_2.3.0.bb => python3-pytun_2.4.1.bb} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename meta-python/recipes-connectivity/python3-pytun/{python3-pytun_2.3.0.bb => python3-pytun_2.4.1.bb} (57%) diff --git a/meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.3.0.bb b/meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.4.1.bb similarity index 57% rename from meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.3.0.bb rename to meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.4.1.bb index bc11d705f4c..08ec2cf670a 100644 --- a/meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.3.0.bb +++ b/meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.4.1.bb @@ -2,8 +2,7 @@ SUMMARY = "Python TUN/TAP tunnel module" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=13f7629e8e4989b66b4a913ab05a91de" -SRC_URI[md5sum] = "adcaeea56d0ed06814487cdbde32d198" -SRC_URI[sha256sum] = "5ead86b3391acef239535ebcabeb04d2cdc6b40ab14580d28c6da193c2d1fe53" +SRC_URI[sha256sum] = "20b53ea7a09dfe173c00ec0a00eea508b05e959f5dc4b4bb698aa52252192f8f" PYPI_PACKAGE = "python-pytun" From d891fa19111a23962bd8131f2f932c085670d4e6 Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Fri, 16 Jul 2021 14:39:08 -0400 Subject: [PATCH 09/13] python3-geomet: Add missing RDEPENDS; add to packagegroup-meta-python Signed-off-by: Trevor Gamblin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../recipes-core/packagegroups/packagegroup-meta-python.bb | 1 + meta-python/recipes-devtools/python/python3-geomet_0.3.0.bb | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb index 72ca86b047a..063b6e4f2ce 100644 --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb @@ -145,6 +145,7 @@ RDEPENDS_packagegroup-meta-python3 = "\ python3-future \ python3-gast \ python3-geojson \ + python3-geomet \ python3-gevent \ python3-gmpy2 \ python3-gmqtt \ diff --git a/meta-python/recipes-devtools/python/python3-geomet_0.3.0.bb b/meta-python/recipes-devtools/python/python3-geomet_0.3.0.bb index bf2db495ca9..de05534b165 100644 --- a/meta-python/recipes-devtools/python/python3-geomet_0.3.0.bb +++ b/meta-python/recipes-devtools/python/python3-geomet_0.3.0.bb @@ -17,5 +17,9 @@ inherit setuptools3 RDEPENDS_${PN} += "\ ${PYTHON_PN}-click \ + ${PYTHON_PN}-core \ + ${PYTHON_PN}-io \ + ${PYTHON_PN}-json \ + ${PYTHON_PN}-logging \ ${PYTHON_PN}-six \ " From e90ce3780114740553636fdc66049d5761d8ef22 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 19 Jul 2021 15:41:39 +0300 Subject: [PATCH 10/13] python3-pysonos: Upgrade 0.0.51 -> 0.0.53 Upgrade to release 0.0.53: - Merge current SoCo master - Reinstate workaround for pre-10.1 firmware versions Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-pysonos_0.0.51.bb => python3-pysonos_0.0.53.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pysonos_0.0.51.bb => python3-pysonos_0.0.53.bb} (79%) diff --git a/meta-python/recipes-devtools/python/python3-pysonos_0.0.51.bb b/meta-python/recipes-devtools/python/python3-pysonos_0.0.53.bb similarity index 79% rename from meta-python/recipes-devtools/python/python3-pysonos_0.0.51.bb rename to meta-python/recipes-devtools/python/python3-pysonos_0.0.53.bb index 53465f53986..dc7f676657f 100644 --- a/meta-python/recipes-devtools/python/python3-pysonos_0.0.51.bb +++ b/meta-python/recipes-devtools/python/python3-pysonos_0.0.53.bb @@ -4,7 +4,7 @@ SECTION = "devel/python" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=07b0e2ca9ac77cd65cd4edf2e13367ea" -SRC_URI[sha256sum] = "828ad17a671dca2c52976efd9404254ad667f75482e33ce2de2e68e89d0e56ef" +SRC_URI[sha256sum] = "e24ea33f4ab810ff5e698d5e577d382413a2994565439ebc67fb42614f899e93" inherit pypi setuptools3 From 7af663a98197e897bdb04db9b22476cc75d7347c Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 19 Jul 2021 15:41:40 +0300 Subject: [PATCH 11/13] python3-bitarray: Upgrade 2.2.1 -> 2.2.2 Upgrade to release 2.2.2: - Speedup slice assignment - Speedup bitwise operations - Optimize `getbit()` and `setbit()` in `bitarray.h` - Fix TypeError messages when bitarray or int (0, 1) are expected (bool is a subclass of int) - Add and improve tests Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-bitarray_2.2.1.bb => python3-bitarray_2.2.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-bitarray_2.2.1.bb => python3-bitarray_2.2.2.bb} (77%) diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.2.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.2.2.bb similarity index 77% rename from meta-python/recipes-devtools/python/python3-bitarray_2.2.1.bb rename to meta-python/recipes-devtools/python/python3-bitarray_2.2.2.bb index e1f3e17b7a1..01f474d0bb6 100644 --- a/meta-python/recipes-devtools/python/python3-bitarray_2.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-bitarray_2.2.2.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray" LICENSE = "PSF" LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d" -SRC_URI[sha256sum] = "31b40d716a1f0642ea9e2741c29b756299075db2e1d1ebe750e3e2c1469f589d" +SRC_URI[sha256sum] = "5ed37f0482199de5a3e096405a646ab3f45dd020d234c42539b3c11ea0e2278d" inherit setuptools3 pypi From 53b301730c180559c3006eb9d6257e542c179c4d Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 19 Jul 2021 19:24:37 +0300 Subject: [PATCH 12/13] python3-pyusb: Upgrade 1.2.0 -> 1.2.1 Upgrade to release 1.2.1: - core: make Device hashable again Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-pyusb_1.2.0.bb => python3-pyusb_1.2.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pyusb_1.2.0.bb => python3-pyusb_1.2.1.bb} (81%) diff --git a/meta-python/recipes-devtools/python/python3-pyusb_1.2.0.bb b/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb similarity index 81% rename from meta-python/recipes-devtools/python/python3-pyusb_1.2.0.bb rename to meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb index 777aa2bc79a..30b2c6d8869 100644 --- a/meta-python/recipes-devtools/python/python3-pyusb_1.2.0.bb +++ b/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb @@ -9,7 +9,7 @@ RDEPENDS_${PN} += " \ python3-logging \ " -SRC_URI[sha256sum] = "d68597d2cf7df766bdf816b1a337b72ab8233c19825e170ae18714f16b838cbc" +SRC_URI[sha256sum] = "a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9" inherit pypi setuptools3 From af50811fab3ee2930ea5825fe3fdaba4e53c1676 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 19 Jul 2021 19:24:38 +0300 Subject: [PATCH 13/13] python3-zeroconf: Upgrade 0.31.0 -> 0.33.1 Upgrade to release 0.33.1: - Version number change only with less restrictive directory permissions - Let connection_lost close the underlying socket - Removed duplicate unregister_all_services code License-Update: License remains LGPL Version 2.1 Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...python3-zeroconf_0.31.0.bb => python3-zeroconf_0.33.1.bb} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-zeroconf_0.31.0.bb => python3-zeroconf_0.33.1.bb} (56%) diff --git a/meta-python/recipes-devtools/python/python3-zeroconf_0.31.0.bb b/meta-python/recipes-devtools/python/python3-zeroconf_0.33.1.bb similarity index 56% rename from meta-python/recipes-devtools/python/python3-zeroconf_0.31.0.bb rename to meta-python/recipes-devtools/python/python3-zeroconf_0.33.1.bb index cb4c03329d6..a0af8420f43 100644 --- a/meta-python/recipes-devtools/python/python3-zeroconf_0.31.0.bb +++ b/meta-python/recipes-devtools/python/python3-zeroconf_0.33.1.bb @@ -1,12 +1,13 @@ SUMMARY = "Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)" HOMEPAGE = "https://github.com/jstasiak/python-zeroconf" LICENSE = "LGPL-2.1" -LIC_FILES_CHKSUM = "file://COPYING;md5=27818cd7fd83877a8e3ef82b82798ef4" +LIC_FILES_CHKSUM = "file://COPYING;md5=3bb705b228ea4a14ea2728215b780d80" -SRC_URI[sha256sum] = "53a180248471c6f81bd1fffcbce03ed93d7d8eaf10905c9121ac1ea996d19844" +SRC_URI[sha256sum] = "ac88738639669f924859a4e01d9742f3783e619e710103f4a0d321a47f260fd2" inherit pypi setuptools3 RDEPENDS_${PN} += " \ ${PYTHON_PN}-ifaddr \ + ${PYTHON_PN}-asyncio \ "