From bbb42608522d54bbfb53406ecb57d78375c2eb42 Mon Sep 17 00:00:00 2001 From: Xu Huan Date: Thu, 24 Mar 2022 17:17:56 +0800 Subject: [PATCH 1/8] python3-alembic: upgrade 1.7.6 -> 1.7.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit changelog: =============================================================================== -[bug] [operations] Fixed issue where using Operations.create_table() in conjunction with a CheckConstraint that referred to table-bound Column objects rather than string expressions would be added to the parent table potentially multiple times, resulting in an incorrect DDL sequence. Pull request courtesy Nicolas CANIART. -[bug] [environment] The logging.fileConfig() line in env.py templates, which is used to setup Python logging for the migration run, is now conditional on Config.config_file_name not being None. Otherwise, the line is skipped as there is no default logging configuration present. -[bug] [mssql] Fixed bug where an Operations.alter_column() operation would change a “NOT NULL” column to “NULL” by emitting an ALTER COLUMN statement that did not specify “NOT NULL”. (In the absence of “NOT NULL” T-SQL was implicitly assuming “NULL”). An Operations.alter_column() operation that specifies Operations.alter_column.type should also specify include either Operations.alter_column.nullable or Operations.alter_column.existing_nullable to inform Alembic as to whether the emitted DDL should include “NULL” or “NOT NULL”; a warning is now emitted if this is missing under this scenario. Signed-off-by: Xu Huan Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-alembic_1.7.6.bb => python3-alembic_1.7.7.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-alembic_1.7.6.bb => python3-alembic_1.7.7.bb} (81%) diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.7.6.bb b/meta-python/recipes-devtools/python/python3-alembic_1.7.7.bb similarity index 81% rename from meta-python/recipes-devtools/python/python3-alembic_1.7.6.bb rename to meta-python/recipes-devtools/python/python3-alembic_1.7.7.bb index 822b3c02b8a..6b7ac4a99ca 100644 --- a/meta-python/recipes-devtools/python/python3-alembic_1.7.6.bb +++ b/meta-python/recipes-devtools/python/python3-alembic_1.7.7.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=f5a8522010db1a393833988dbe2c7f0b" inherit pypi setuptools3 -SRC_URI[sha256sum] = "6c0c05e9768a896d804387e20b299880fe01bc56484246b0dffe8075d6d3d847" +SRC_URI[sha256sum] = "4961248173ead7ce8a21efb3de378f13b8398e6630fab0eb258dc74a8af24c58" PYPI_PACKAGE = "alembic" From d26f61f21db9ef17763e6b579982e33c8434f4e1 Mon Sep 17 00:00:00 2001 From: Xu Huan Date: Thu, 24 Mar 2022 17:17:57 +0800 Subject: [PATCH 2/8] python3-arpeggio: upgrade 1.10.2 -> 2.0.0 changelog: Added eval_attrs call to NoMatch exceptions (ebfd60). Dropped support for deprecated Python versions. The lowest supported version is 3.6. Signed-off-by: Xu Huan Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-arpeggio_1.10.2.bb => python3-arpeggio_2.0.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-arpeggio_1.10.2.bb => python3-arpeggio_2.0.0.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-arpeggio_1.10.2.bb b/meta-python/recipes-devtools/python/python3-arpeggio_2.0.0.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-arpeggio_1.10.2.bb rename to meta-python/recipes-devtools/python/python3-arpeggio_2.0.0.bb index 468e6d5fdec..96d6de6a69a 100644 --- a/meta-python/recipes-devtools/python/python3-arpeggio_1.10.2.bb +++ b/meta-python/recipes-devtools/python/python3-arpeggio_2.0.0.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://pypi.org/project/Arpeggio/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=33b8d1ba459a2fa4d801acfd1d1b7ceb" -SRC_URI[sha256sum] = "bfe349f252f82f82d84cb886f1d5081d1a31451e6045275e9f90b65d0daa06f1" +SRC_URI[sha256sum] = "d6b03839019bb8a68785f9292ee6a36b1954eb84b925b84a6b8a5e1e26d3ed3d" PYPI_PACKAGE = "Arpeggio" inherit pypi setuptools3 From 4b32f597170d6b51c757ac06ba0a3f4113e98190 Mon Sep 17 00:00:00 2001 From: Xu Huan Date: Thu, 24 Mar 2022 17:17:58 +0800 Subject: [PATCH 3/8] python3-cachetools: upgrade 4.2.4 -> 5.0.0 changelog: =============================================================================== -Require Python 3.7 or later (breaking change). -Remove deprecated submodules (breaking change). The cache, fifo, lfu, lru, mru, rr and ttl submodules have been deleted. Therefore, statements like from cachetools.ttl import TTLCache will no longer work. Use from cachetools import TTLCacheinstead. -Pass self to @cachedmethod key function (breaking change). The key function passed to the @cachedmethod decorator is now called as key (self, *args, **kwargs). The default key function has been changed to ignore its first argument, so this should only affect applications using custom key functions with the @cachedmethod decorator. -Change exact time of expiration in TTLCache (breaking change). TTLCache items now get expired if their expiration time is less than or equal to timer(). For applications using the default timer(), this should be barely noticable, but it may affect the use of custom timers with larger tick intervals. Note that this also implies that a TTLCache with ttl=0 can no longer hold any items, since they will expire immediately. -Change Cache.__repr__() format (breaking change). String representations of cache instances now use a more compact and efficient format, e.g.LRUCache({1: 1, 2: 2}, maxsize=10, currsize=2) -Add TLRU cache implementation. -Documentation improvements. Signed-off-by: Xu Huan Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...{python3-cachetools_4.2.4.bb => python3-cachetools_5.0.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-cachetools_4.2.4.bb => python3-cachetools_5.0.0.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb b/meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb rename to meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb index bf225e60e04..f2974f7e34a 100644 --- a/meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb +++ b/meta-python/recipes-devtools/python/python3-cachetools_5.0.0.bb @@ -27,6 +27,6 @@ do_install_ptest() { cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ } -SRC_URI[sha256sum] = "89ea6f1b638d5a73a4f9226be57ac5e4f399d22770b92355f92dcb0f7f001693" +SRC_URI[sha256sum] = "486471dfa8799eb7ec503a8059e263db000cdda20075ce5e48903087f79d5fd6" BBCLASSEXTEND = "native nativesdk" From 0e469258cfd70a827381bc0607ff93c984406e93 Mon Sep 17 00:00:00 2001 From: Xu Huan Date: Thu, 24 Mar 2022 17:17:59 +0800 Subject: [PATCH 4/8] python3-cantools: upgrade 37.0.1 -> 37.0.7 Signed-off-by: Xu Huan Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...{python3-cantools_37.0.1.bb => python3-cantools_37.0.7.bb} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-cantools_37.0.1.bb => python3-cantools_37.0.7.bb} (71%) diff --git a/meta-python/recipes-devtools/python/python3-cantools_37.0.1.bb b/meta-python/recipes-devtools/python/python3-cantools_37.0.7.bb similarity index 71% rename from meta-python/recipes-devtools/python/python3-cantools_37.0.1.bb rename to meta-python/recipes-devtools/python/python3-cantools_37.0.7.bb index 9642bc52874..c179071afa7 100644 --- a/meta-python/recipes-devtools/python/python3-cantools_37.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-cantools_37.0.7.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/cantools" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd" -SRC_URI[sha256sum] = "5852ad9fd17ddd7b1a1ce87b21b000e7f5716b358cdac4fdaca13b3e292f4c99" +SRC_URI[sha256sum] = "e603a7e1e40f5b4963c4c64cf4b013264afa009e232a878c73d31c29942e4466" PYPI_PACKAGE = "cantools" @@ -14,6 +14,8 @@ RDEPENDS:${PN} += "\ ${PYTHON_PN}-bitstruct \ ${PYTHON_PN}-core \ ${PYTHON_PN}-textparser \ + ${PYTHON_PN}-typing-extensions \ + ${PYTHON_PN}-diskcache \ " CLEANBROKEN = "1" From a239510c2e39c6efcf3d07fa4e2cf1785fd5caa4 Mon Sep 17 00:00:00 2001 From: Xu Huan Date: Thu, 24 Mar 2022 17:18:00 +0800 Subject: [PATCH 5/8] python3-intervals: upgrade 1.10.0.post1 -> 1.10.0 Signed-off-by: Xu Huan Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...n3-intervals_1.10.0.post1.bb => python3-intervals_1.10.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-intervals_1.10.0.post1.bb => python3-intervals_1.10.0.bb} (85%) diff --git a/meta-python/recipes-devtools/python/python3-intervals_1.10.0.post1.bb b/meta-python/recipes-devtools/python/python3-intervals_1.10.0.bb similarity index 85% rename from meta-python/recipes-devtools/python/python3-intervals_1.10.0.post1.bb rename to meta-python/recipes-devtools/python/python3-intervals_1.10.0.bb index d841f923436..abf87c597c2 100644 --- a/meta-python/recipes-devtools/python/python3-intervals_1.10.0.post1.bb +++ b/meta-python/recipes-devtools/python/python3-intervals_1.10.0.bb @@ -22,6 +22,6 @@ do_install_ptest() { cp -f ${S}/README.md ${D}${PTEST_PATH} } -SRC_URI[sha256sum] = "68a772dc2de6b2b2e83b457329ffa8f9286710994b8070db54348a05762515d2" +SRC_URI[sha256sum] = "0d26746eaed0be78a61dd289bb7a10721b08770bb3e807614835f490d514f2a5" BBCLASSEXTEND = "native" From 86c6eb9ce903cc61ba0bc13bb556bb954c7b60ce Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Thu, 24 Mar 2022 11:57:43 -0400 Subject: [PATCH 6/8] python3-protobuf: upgrade 3.19.3 -> 3.19.4 From the release notes (https://github.com/protocolbuffers/protobuf/releases): - Make libprotobuf symbols local on OSX to fix issue #9395 (#9435) Signed-off-by: Trevor Gamblin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-protobuf_3.19.3.bb => python3-protobuf_3.19.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-protobuf_3.19.3.bb => python3-protobuf_3.19.4.bb} (92%) diff --git a/meta-python/recipes-devtools/python/python3-protobuf_3.19.3.bb b/meta-python/recipes-devtools/python/python3-protobuf_3.19.4.bb similarity index 92% rename from meta-python/recipes-devtools/python/python3-protobuf_3.19.3.bb rename to meta-python/recipes-devtools/python/python3-protobuf_3.19.4.bb index 5e0ee7cb26a..85147544e7d 100644 --- a/meta-python/recipes-devtools/python/python3-protobuf_3.19.3.bb +++ b/meta-python/recipes-devtools/python/python3-protobuf_3.19.4.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=19e8f490f9526b1de8 inherit pypi setuptools3 -SRC_URI[sha256sum] = "d975a6314fbf5c524d4981e24294739216b5fb81ef3c14b86fb4b045d6690907" +SRC_URI[sha256sum] = "9df0c10adf3e83015ced42a9a7bd64e13d06c4cf45c340d2c63020ea04499d0a" # http://errors.yoctoproject.org/Errors/Details/184715/ # Can't find required file: ../src/google/protobuf/descriptor.proto From c366052d2e1507bcb9c5c233b4177c7f2aeb69d8 Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Thu, 24 Mar 2022 11:57:45 -0400 Subject: [PATCH 7/8] python3-h5py: upgrade 3.5.0 -> 3.6.0 Signed-off-by: Trevor Gamblin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-h5py_3.5.0.bb => python3-h5py_3.6.0.bb} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-h5py_3.5.0.bb => python3-h5py_3.6.0.bb} (84%) diff --git a/meta-python/recipes-devtools/python/python3-h5py_3.5.0.bb b/meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb similarity index 84% rename from meta-python/recipes-devtools/python/python3-h5py_3.5.0.bb rename to meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb index aad2f917776..64abe73cba6 100644 --- a/meta-python/recipes-devtools/python/python3-h5py_3.5.0.bb +++ b/meta-python/recipes-devtools/python/python3-h5py_3.6.0.bb @@ -4,11 +4,10 @@ SECTION = "devel/python" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=113251d71fb0384712c719b567261c5c" -SRC_URI[sha256sum] = "77c7be4001ac7d3ed80477de5b6942501d782de1bbe4886597bdfec2a7ab821f" +SRC_URI[sha256sum] = "8752d2814a92aba4e2b2a5922d2782d0029102d99caaf3c201a566bc0b40db29" SRC_URI:append = " \ file://0001-setup_build.py-avoid-absolute-path.patch \ - file://0001-setup.py-Fix-numpy-version.patch \ " inherit pkgconfig pypi setuptools3 From 0c32da8efea78d0d10ab92e27a19592042dc2325 Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Thu, 24 Mar 2022 11:57:46 -0400 Subject: [PATCH 8/8] python3-paramiko: upgrade 2.9.2 -> 2.10.3 Signed-off-by: Trevor Gamblin Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-paramiko_2.9.2.bb => python3-paramiko_2.10.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-paramiko_2.9.2.bb => python3-paramiko_2.10.3.bb} (82%) diff --git a/meta-python/recipes-devtools/python/python3-paramiko_2.9.2.bb b/meta-python/recipes-devtools/python/python3-paramiko_2.10.3.bb similarity index 82% rename from meta-python/recipes-devtools/python/python3-paramiko_2.9.2.bb rename to meta-python/recipes-devtools/python/python3-paramiko_2.10.3.bb index a02a7891a7b..9f7f458723f 100644 --- a/meta-python/recipes-devtools/python/python3-paramiko_2.9.2.bb +++ b/meta-python/recipes-devtools/python/python3-paramiko_2.10.3.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/paramiko/paramiko/" LICENSE = "LGPL-2.1-only" LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5" -SRC_URI[sha256sum] = "944a9e5dbdd413ab6c7951ea46b0ab40713235a9c4c5ca81cfe45c6f14fa677b" +SRC_URI[sha256sum] = "ddb1977853aef82804b35d72a0e597b244fa326c404c350bd00c5b01dbfee71a" PYPI_PACKAGE = "paramiko"