From a7122fd78aaa94abd4fafdcb364fa567fd0da4b5 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 26 Mar 2021 15:12:27 +0200 Subject: [PATCH 01/16] python3-ruamel-yaml: Upgrade 0.16.13 -> 0.17.0 Upgrade to release 0.17.0: - this release no longer supports Python 2.7, most if not all Python 2 specific code is removed. The 0.17.x series is the last to support Python 3.5 (this also allowed for removal of the dependency on ``ruamel.std.pathlib``) - remove Python2 specific code branches and adaptations (u-strings) - prepare % code for f-strings using ``_F`` - allow PyOxidisation - replaced Python 2 compatible enforcement of keyword arguments with '*' - the old top level *functions* ``load``, ``safe_load``, ``round_trip_load``, ``dump``, ``safe_dump``, ``round_trip_dump``, ``scan``, ``parse``, ``compose``, ``emit``, ``serialize`` as well as their ``_all`` variants for multi-document streams, now issue a ``PendingDeprecationning`` (e.g. when run from pytest, but also Python is started with ``-Wd``). Use the methods on ``YAML()``, which have been extended. - fix for issue 376: indentation changes could put literal/folded scalar to start before the ``#`` column of a following comment. Effectively making the comment part of the scalar in the output. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...on3-ruamel-yaml_0.16.13.bb => python3-ruamel-yaml_0.17.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-ruamel-yaml_0.16.13.bb => python3-ruamel-yaml_0.17.0.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.13.bb b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.0.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.13.bb rename to meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.0.bb index 39795b7847c..fd99f8566f7 100644 --- a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.13.bb +++ b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.0.bb @@ -10,7 +10,7 @@ inherit pypi setuptools3 BBCLASSEXTEND = "native nativesdk" -SRC_URI[sha256sum] = "bb48c514222702878759a05af96f4b7ecdba9b33cd4efcf25c86b882cef3a942" +SRC_URI[sha256sum] = "3572505e63dd35b5dea62cd0386d03c4f2a53da29a3af09f428114cc85c564aa" do_install_prepend() { export RUAMEL_NO_PIP_INSTALL_CHECK=1 From e2e9e3782371bd25f99f69e44e91a6bd89f27421 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 26 Mar 2021 15:12:28 +0200 Subject: [PATCH 02/16] python3-bitarray: Upgrade 1.8.0 -> 1.8.1 Upgrade to release 1.8.1: - moved implementation of and `hex2ba()` and `ba2hex()` to C-level - add `bitarray.util.parity()` Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-bitarray_1.8.0.bb => python3-bitarray_1.8.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-bitarray_1.8.0.bb => python3-bitarray_1.8.1.bb} (77%) diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.8.1.bb similarity index 77% rename from meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb rename to meta-python/recipes-devtools/python/python3-bitarray_1.8.1.bb index f38791716e3..9bb5f280d9d 100644 --- a/meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb +++ b/meta-python/recipes-devtools/python/python3-bitarray_1.8.1.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] = "fe4444d92b17073bf1f9f24e3015a0e5bb70a645c47df93ef8a9ce8be33fcbad" +SRC_URI[sha256sum] = "e02f79fba7a470d438eb39017d503498faaf760b17b6b46af1a9de12fd58d311" inherit setuptools3 pypi From 35ce4f0574ef23cfa6e5a4b03c67a5ef298f63e3 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 26 Mar 2021 15:12:29 +0200 Subject: [PATCH 03/16] python3-sqlalchemy: Upgrade 1.4.2 -> 1.4.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade to release 1.4.3: orm: - Fixed a bug where python 2.7.5 (default on CentOS 7) wasn't able to import sqlalchemy, because on this version of Python exec "statement" and exec("statement") do not behave the same way. The compatibility exec_() function was used instead. - Fixed bug where ORM queries using a correlated subquery in conjunction with column_property() would fail to correlate correctly to an enclosing subquery or to a CTE when Select.correlate_except() were used in the property to control correlation, in cases where the subquery contained the same selectables as ones within the correlated subquery that were intended to not be correlated. - Fixed bug where combinations of the new "relationship with criteria" feature could fail in conjunction with features that make use of the new “lambda SQL” feature, including loader strategies such as selectinload and lazyload, for more complicated scenarios such as polymorphic loading. - Repaired support so that the ClauseElement.params() method can work correctly with a Select object that includes joins across ORM relationship structures, which is a new feature in 1.4. - Fixed issue where a "removed in 2.0" warning were generated internally by the relationship loader mechanics. orm declarative: - Fixed regression where the .metadata attribute on a per class level would not be honored, breaking the use case of per-class-hierarchy MetaData for abstract declarative classes and mixins. engine: - Restored the ResultProxy name back to the sqlalchemy.engine namespace. This name refers to the LegacyCursorResult object. mypy: - Added support for the Mypy extension to correctly interpret a declarative base class that’s generated using the as_declarative() function as well as the registry.as_declarative_base() method. postgresql: - Fixed reflection of identity columns in tables with mixed case names in PostgreSQL. sqlite: - Added support for the aiosqlite database driver for use with the SQLAlchemy asyncio extension. - Repaired the pysqlcipher dialect to connect correctly which had regressed in 1.4, and added test + CI support to maintain the driver in working condition. The dialect now imports the sqlcipher3 module for Python 3 by default before falling back to pysqlcipher3 which is documented as now being unmaintained. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...{python3-sqlalchemy_1.4.2.bb => python3-sqlalchemy_1.4.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.4.2.bb => python3-sqlalchemy_1.4.3.bb} (85%) diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.2.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.3.bb similarity index 85% rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.2.bb rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.3.bb index 00ab6cc7712..8cff18dc2eb 100644 --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.2.bb +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.3.bb @@ -4,7 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=3359ed561ac16aaa25b6c6eff84df595" -SRC_URI[sha256sum] = "6a8e4c2e65028933a6dc8643c8f5a4f295a367131195b3c708634925cb3e8ec1" +SRC_URI[sha256sum] = "a719b80b41a900bbcec3cc248616394ebd134043ce5e62185270d785d8a184d3" PYPI_PACKAGE = "SQLAlchemy" inherit pypi setuptools3 From 4033d3069ecf2ceacda4a11193490883e7d0d01a Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 26 Mar 2021 15:12:30 +0200 Subject: [PATCH 04/16] python3-xmlschema: Upgrade 1.5.1 -> 1.5.3 Upgrade to release 1.5.3: - Remove unnecessary bindings with schema proxy from ElementPathMixin to avoid conflicts when schema is used by an XPath 3 parser - Fix schema logger Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-xmlschema_1.5.1.bb => python3-xmlschema_1.5.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-xmlschema_1.5.1.bb => python3-xmlschema_1.5.3.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-xmlschema_1.5.1.bb b/meta-python/recipes-devtools/python/python3-xmlschema_1.5.3.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-xmlschema_1.5.1.bb rename to meta-python/recipes-devtools/python/python3-xmlschema_1.5.3.bb index bdb15971bf7..3f9c06365f8 100644 --- a/meta-python/recipes-devtools/python/python3-xmlschema_1.5.1.bb +++ b/meta-python/recipes-devtools/python/python3-xmlschema_1.5.3.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/xmlschema" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=47489cb18c469474afeb259ed1d4832f" -SRC_URI[sha256sum] = "c4c72b457865f46394bb23525b4e233d6537d9e97b8c6144a6cda2d5ef0d6688" +SRC_URI[sha256sum] = "a7db4c8ae2afa28654d15fcbf5d7f22f0441b5611e50426426e5418f369b5c79" PYPI_PACKAGE = "xmlschema" inherit pypi setuptools3 From 8d40e13eb0998a2fb82345039bc216fc7fe88088 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 26 Mar 2021 15:12:31 +0200 Subject: [PATCH 05/16] python3-croniter: Upgrade 1.0.9 -> 1.0.10 Upgrade to release 1.0.10: - Remove external library natsort. Sorting of cron expression components now handled with sorted() with a custom key function. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-croniter_1.0.9.bb => python3-croniter_1.0.10.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-croniter_1.0.9.bb => python3-croniter_1.0.10.bb} (78%) diff --git a/meta-python/recipes-devtools/python/python3-croniter_1.0.9.bb b/meta-python/recipes-devtools/python/python3-croniter_1.0.10.bb similarity index 78% rename from meta-python/recipes-devtools/python/python3-croniter_1.0.9.bb rename to meta-python/recipes-devtools/python/python3-croniter_1.0.10.bb index 7b3a95011d9..6cd87fea9d0 100644 --- a/meta-python/recipes-devtools/python/python3-croniter_1.0.9.bb +++ b/meta-python/recipes-devtools/python/python3-croniter_1.0.10.bb @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://docs/LICENSE;md5=b8ee59850b882cbf623188489ea748e2" PYPI_PACKAGE = "croniter" -SRC_URI[sha256sum] = "708532f70584207e23ef2989ca40f367e6238bfe050133a1aff43e1e0e6f6092" +SRC_URI[sha256sum] = "364c48e393060295c3161588a6556d5c890b5c34299973c393adbe4488ca1ecb" inherit pypi setuptools3 From 5daa04010949a373af5160a334e09ef33aedc70f Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Fri, 26 Mar 2021 15:12:29 +0800 Subject: [PATCH 06/16] python3-lxml: upgrade 4.6.2 -> 4.6.3 Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-lxml_4.6.2.bb => python3-lxml_4.6.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-lxml_4.6.2.bb => python3-lxml_4.6.3.bb} (95%) diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.6.2.bb b/meta-python/recipes-devtools/python/python3-lxml_4.6.3.bb similarity index 95% rename from meta-python/recipes-devtools/python/python3-lxml_4.6.2.bb rename to meta-python/recipes-devtools/python/python3-lxml_4.6.3.bb index f7aed6d7712..cefe1ba3409 100644 --- a/meta-python/recipes-devtools/python/python3-lxml_4.6.2.bb +++ b/meta-python/recipes-devtools/python/python3-lxml_4.6.3.bb @@ -18,7 +18,7 @@ LIC_FILES_CHKSUM = "file://LICENSES.txt;md5=e4c045ebad958ead4b48008f70838403 \ DEPENDS += "libxml2 libxslt" -SRC_URI[sha256sum] = "cd11c7e8d21af997ee8079037fff88f16fda188a9776eb4b81c7e4c9c0a7d7fc" +SRC_URI[sha256sum] = "39b78571b3b30645ac77b95f7c69d1bffc4cf8c3b157c435a34da72e78c82468" inherit pypi setuptools3 From ff8881e9c10f78e68a425cda18c216f6a53390fb Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Fri, 26 Mar 2021 15:12:46 +0800 Subject: [PATCH 07/16] python3-zopeinterface: upgrade 5.2.0 -> 5.3.0 Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...n3-zopeinterface_5.2.0.bb => python3-zopeinterface_5.3.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-zopeinterface_5.2.0.bb => python3-zopeinterface_5.3.0.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-zopeinterface_5.2.0.bb b/meta-python/recipes-devtools/python/python3-zopeinterface_5.3.0.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-zopeinterface_5.2.0.bb rename to meta-python/recipes-devtools/python/python3-zopeinterface_5.3.0.bb index 48bb80d5787..5da5a88b97b 100644 --- a/meta-python/recipes-devtools/python/python3-zopeinterface_5.2.0.bb +++ b/meta-python/recipes-devtools/python/python3-zopeinterface_5.3.0.bb @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e54fd776274c1b7423 PYPI_PACKAGE = "zope.interface" inherit pypi setuptools3 -SRC_URI[sha256sum] = "8251f06a77985a2729a8bdbefbae79ee78567dddc3acbd499b87e705ca59fe24" +SRC_URI[sha256sum] = "b18a855f8504743e0a2d8b75d008c7720d44e4c76687e13f959e35d9a13eb397" PACKAGES =. "${PN}-test " From a532734a43c5bd26a1be450ae51b3ab86e2f5865 Mon Sep 17 00:00:00 2001 From: Ben Gampe Date: Mon, 29 Mar 2021 11:21:39 +1000 Subject: [PATCH 08/16] python3-h11: new package Add recipe for python3-h11: a pure-Python, bring-your-own-I/O implementation of HTTP/1.1 Signed-off-by: Ben Gampe Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../packagegroups/packagegroup-meta-python.bb | 1 + meta-python/recipes-devtools/python/python3-h11_0.12.0.bb | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-h11_0.12.0.bb diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb index e84bf225ebf..0418b59308c 100644 --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb @@ -153,6 +153,7 @@ RDEPENDS_packagegroup-meta-python3 = "\ python3-grpcio-tools \ python3-gsocketpool \ python3-gunicorn \ + python3-h11 \ python3-h2 \ python3-h5py \ python3-haversine \ diff --git a/meta-python/recipes-devtools/python/python3-h11_0.12.0.bb b/meta-python/recipes-devtools/python/python3-h11_0.12.0.bb new file mode 100644 index 00000000000..4cd0d4de742 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-h11_0.12.0.bb @@ -0,0 +1,8 @@ +SUMMARY = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +HOMEPAGE = "https://github.com/python-hyper/h11" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=f5501d19c3116f4aaeef89369f458693" + +inherit pypi setuptools3 + +SRC_URI[sha256sum] = "47222cb6067e4a307d535814917cd98fd0a57b6788ce715755fa2b6c28b56042" From 79c28f2e73d2257afd53a8a1bb6a271169a8a8fc Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 29 Mar 2021 12:20:18 +0300 Subject: [PATCH 09/16] python3-astroid: Upgrade 2.5.1 -> 2.5.2 Upgrade to release 2.5.2: - Detects `import numpy` as a valid `numpy` import. - Iterate over ``Keywords`` when using ``ClassDef.get_children`` Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-astroid_2.5.1.bb => python3-astroid_2.5.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-astroid_2.5.1.bb => python3-astroid_2.5.2.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.5.1.bb b/meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-astroid_2.5.1.bb rename to meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb index 84315767d30..93027754b6b 100644 --- a/meta-python/recipes-devtools/python/python3-astroid_2.5.1.bb +++ b/meta-python/recipes-devtools/python/python3-astroid_2.5.2.bb @@ -4,7 +4,7 @@ SECTION = "devel/python" LICENSE = "LGPL-2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" -SRC_URI[sha256sum] = "cfc35498ee64017be059ceffab0a25bedf7548ab76f2bea691c5565896e7128d" +SRC_URI[sha256sum] = "6b0ed1af831570e500e2437625979eaa3b36011f66ddfc4ce930128610258ca9" inherit pypi setuptools3 From 574ffed995fb48f8f8dd075480d25c5826f5b3ab Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 29 Mar 2021 12:20:19 +0300 Subject: [PATCH 10/16] python3-pyroute2: Upgrade 0.5.14 -> 0.5.15 Upgrade to release 0.5.15: - ndb: don't mess with SQL adapters unless really needed - ndb: support more virtual interface types - ndb: support in for views and record sets - ndb: fix nested fetches from DB - tests: start migration to pytest Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-pyroute2_0.5.14.bb => python3-pyroute2_0.5.15.bb} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-pyroute2_0.5.14.bb => python3-pyroute2_0.5.15.bb} (85%) diff --git a/meta-python/recipes-devtools/python/python3-pyroute2_0.5.14.bb b/meta-python/recipes-devtools/python/python3-pyroute2_0.5.15.bb similarity index 85% rename from meta-python/recipes-devtools/python/python3-pyroute2_0.5.14.bb rename to meta-python/recipes-devtools/python/python3-pyroute2_0.5.15.bb index 84397b65bdc..ca168b13758 100644 --- a/meta-python/recipes-devtools/python/python3-pyroute2_0.5.14.bb +++ b/meta-python/recipes-devtools/python/python3-pyroute2_0.5.15.bb @@ -3,8 +3,7 @@ LICENSE = "GPLv2 & Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE.GPL.v2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ file://LICENSE.Apache.v2;md5=34281e312165f843a2b7d1f114fe65ce" -SRC_URI[md5sum] = "6bde3624a6f22bdfb630bb54243a0d1d" -SRC_URI[sha256sum] = "774c5ecf05fe40f0f601a7ab33c19ca0b24f00bf4a094e58deaa5333b7ca49b5" +SRC_URI[sha256sum] = "d730eff091dd5b2b78282bc82ebe6888e7ee4d70b79468b1da58d99fc1a2a2fc" inherit setuptools3 pypi ptest From 5ab02ab1981662003d0b0b173fe5edbfd98cb8d2 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 29 Mar 2021 12:20:20 +0300 Subject: [PATCH 11/16] python3-coverage: Upgrade 5.4 -> 5.5 Upgrade to release 5.5: - coverage combine has a new option, --keep to keep the original data files after combining them. The default is still to delete the files after they have been combined. - When reporting missing branches in coverage report, branches aren't reported that jump to missing lines. This adds to the long-standing behavior of not reporting branches from missing lines. Now branches are only reported if both the source and destination lines are executed. - Minor improvements to the HTML report: The state of the line visibility selector buttons is saved in local storage so you don't have to fiddle with them so often. It has a little more room for line numbers so that 4-digit numbers work well. - Improved the error message when combining line and branch data, so that users will be more likely to understand what's happening. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-coverage_5.4.bb => python3-coverage_5.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-coverage_5.4.bb => python3-coverage_5.5.bb} (71%) diff --git a/meta-python/recipes-devtools/python/python3-coverage_5.4.bb b/meta-python/recipes-devtools/python/python3-coverage_5.5.bb similarity index 71% rename from meta-python/recipes-devtools/python/python3-coverage_5.4.bb rename to meta-python/recipes-devtools/python/python3-coverage_5.5.bb index 4ea9b6a19ad..c780a63ae97 100644 --- a/meta-python/recipes-devtools/python/python3-coverage_5.4.bb +++ b/meta-python/recipes-devtools/python/python3-coverage_5.5.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://coverage.readthedocs.io" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93" -SRC_URI[sha256sum] = "6d2e262e5e8da6fa56e774fb8e2643417351427604c2b177f8e8c5f75fc928ca" +SRC_URI[sha256sum] = "ebe78fe9a0e874362175b02371bdfbee64d8edc42a044253ddf4ee7d3c15212c" inherit pypi setuptools3 From 22279e3386df2d31bcb4b9a8a6d3ab2d7f475a78 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 29 Mar 2021 12:20:21 +0300 Subject: [PATCH 12/16] python3-gunicorn: Upgrade 20.0.4 -> 20.1.0 Upgrade to release 20.1.0: - document WEB_CONCURRENCY is set by, at least, Heroku - capture peername from accept: Avoid calls to getpeername by capturing the peer name returned by accept - log a warning when a worker was terminated due to a signal - fix tornado usage with latest versions of Django - add support for python -m gunicorn - fix systemd socket activation example - allows to set wsgi application in configg file using wsgi_app - document --timeout = 0 - always close a connection when the number of requests exceeds the max requests - Disable keepalive during graceful shutdown - kill tasks in the gthread workers during upgrade - fix latency in gevent worker when accepting new requests - fix file watcher: handle errors when new worker reboot and ensure the list of files is kept - document the default name and path of the configuration file - document how variable impact configuration - document the $PORT environment variable - added milliseconds option to request_time in access_log - added PIP requirements to be used for example - remove version from the Server header - fix sendfile: use socket.sendfile instead of os.sendfile - reloader: use absolute path to prevent empty to prevent0 InotifyError when a file is added to the working directory - Add --print-config option to print the resolved settings at startup. - remove the --log-dict-config CLI flag because it never had a working format (the logconfig_dict setting in configuration files continues to work) Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-gunicorn_20.0.4.bb => python3-gunicorn_20.1.0.bb} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-gunicorn_20.0.4.bb => python3-gunicorn_20.1.0.bb} (75%) diff --git a/meta-python/recipes-devtools/python/python3-gunicorn_20.0.4.bb b/meta-python/recipes-devtools/python/python3-gunicorn_20.1.0.bb similarity index 75% rename from meta-python/recipes-devtools/python/python3-gunicorn_20.0.4.bb rename to meta-python/recipes-devtools/python/python3-gunicorn_20.1.0.bb index 23aafd67d1a..22fe495f42f 100644 --- a/meta-python/recipes-devtools/python/python3-gunicorn_20.0.4.bb +++ b/meta-python/recipes-devtools/python/python3-gunicorn_20.1.0.bb @@ -3,8 +3,7 @@ SUMMARY = "WSGI HTTP Server for UNIX" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=f75f3fb94cdeab1d607e2adaa6077752" -SRC_URI[md5sum] = "543669fcbb5739ee2af77184c5e571a1" -SRC_URI[sha256sum] = "1904bb2b8a43658807108d59c3f3d56c2b6121a701161de0ddf9ad140073c626" +SRC_URI[sha256sum] = "e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8" inherit pypi setuptools3 ptest From 87763f42eadb526d67c263d9bcb203fabce9141c Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 29 Mar 2021 12:20:22 +0300 Subject: [PATCH 13/16] python3-djangorestframework: Upgrade 3.12.3 -> 3.12.4 Upgrade to release 3.12.4: - Revert use of deque instead of list for tracking throttling .history. Due to incompatibility with DjangoRedis cache backend. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...ramework_3.12.3.bb => python3-djangorestframework_3.12.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-djangorestframework_3.12.3.bb => python3-djangorestframework_3.12.4.bb} (80%) diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.12.3.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.12.4.bb similarity index 80% rename from meta-python/recipes-devtools/python/python3-djangorestframework_3.12.3.bb rename to meta-python/recipes-devtools/python/python3-djangorestframework_3.12.4.bb index a75d3f18cdf..417e36721ad 100644 --- a/meta-python/recipes-devtools/python/python3-djangorestframework_3.12.3.bb +++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.12.4.bb @@ -5,7 +5,7 @@ HOMEPAGE = "https://pypi.python.org/pypi/djangorestframework" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7879a5a716147a784f7e524c9cf103c1" -SRC_URI[sha256sum] = "2fbbd5c28a1aaa1ad0b721b29e916797fc9aba9f9b3e7619da11c674880fc7aa" +SRC_URI[sha256sum] = "f747949a8ddac876e879190df194b925c177cdeb725a099db1460872f7c0a7f2" PYPI_PACKAGE = "djangorestframework" From d108430702ba6feaa06f97776cf200a077124c2d Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 29 Mar 2021 12:20:23 +0300 Subject: [PATCH 14/16] python3-ipython: Upgrade 7.21.0 -> 7.22.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrade to release 7.22.0: - Fix some sys.excepthook shenanigan when embedding with qt, recommended if you – for example – use napari - Fix bug when using the new ipdb %context magic - Couples of deprecation cleanup - Update for new dpast.com api if you use the %pastbin magic - Remove support for numpy before 1.16 Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-ipython_7.21.0.bb => python3-ipython_7.22.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-ipython_7.21.0.bb => python3-ipython_7.22.0.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-ipython_7.21.0.bb b/meta-python/recipes-devtools/python/python3-ipython_7.22.0.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-ipython_7.21.0.bb rename to meta-python/recipes-devtools/python/python3-ipython_7.22.0.bb index 31ea244e34c..7bc0d1d00c9 100644 --- a/meta-python/recipes-devtools/python/python3-ipython_7.21.0.bb +++ b/meta-python/recipes-devtools/python/python3-ipython_7.22.0.bb @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING.rst;md5=59b20262b8663cdd094005bddf47af5f" PYPI_PACKAGE = "ipython" -SRC_URI[sha256sum] = "04323f72d5b85b606330b6d7e2dc8d2683ad46c3905e955aa96ecc7a99388e70" +SRC_URI[sha256sum] = "9c900332d4c5a6de534b4befeeb7de44ad0cc42e8327fa41b7685abde58cec74" RDEPENDS_${PN} = "\ ${PYTHON_PN}-setuptools \ From 760a55b45945bd464d88196a7b99765ec0f1241c Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 29 Mar 2021 12:20:24 +0300 Subject: [PATCH 15/16] python3-openpyxl: Upgrade 3.0.6 -> 3.0.7 Upgrade to release 3.0.7: - Problems with zero time values - Not possible to correctly convert excel dates to timedelta - Exception raised when merging cells which do not have borders all the way round. - Python 2 print statement in the tutorial Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-openpyxl_3.0.6.bb => python3-openpyxl_3.0.7.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-openpyxl_3.0.6.bb => python3-openpyxl_3.0.7.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-openpyxl_3.0.6.bb b/meta-python/recipes-devtools/python/python3-openpyxl_3.0.7.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-openpyxl_3.0.6.bb rename to meta-python/recipes-devtools/python/python3-openpyxl_3.0.7.bb index d4781eeffaa..b3263211986 100644 --- a/meta-python/recipes-devtools/python/python3-openpyxl_3.0.6.bb +++ b/meta-python/recipes-devtools/python/python3-openpyxl_3.0.7.bb @@ -9,6 +9,6 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148 inherit pypi setuptools3 -SRC_URI[sha256sum] = "b229112b46e158b910a5d1b270b212c42773d39cab24e8db527f775b82afc041" +SRC_URI[sha256sum] = "6456a3b472e1ef0facb1129f3c6ef00713cebf62e736cd7a75bcc3247432f251" RDEPENDS_${PN} += "${PYTHON_PN}-compression ${PYTHON_PN}-io ${PYTHON_PN}-pprint ${PYTHON_PN}-shell ${PYTHON_PN}-jdcal ${PYTHON_PN}-et-xmlfile" From bb1ac0e962649b49c580b306c2666955acdcb12d Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 29 Mar 2021 15:52:33 +0300 Subject: [PATCH 16/16] python3-ruamel-yaml: Upgrade 0.17.0 -> 0.17.2 Upgrade to release 0.17.2: - change -py2.py3-none-any.whl to -py3-none-any.whl, and remove 0.17.1 - added 'Programming Language :: Python :: 3 :: Only', and removing 0.17.0 from PyPI Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...hon3-ruamel-yaml_0.17.0.bb => python3-ruamel-yaml_0.17.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-ruamel-yaml_0.17.0.bb => python3-ruamel-yaml_0.17.2.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.0.bb b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.2.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.0.bb rename to meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.2.bb index fd99f8566f7..6f15d1e709e 100644 --- a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.0.bb +++ b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.17.2.bb @@ -10,7 +10,7 @@ inherit pypi setuptools3 BBCLASSEXTEND = "native nativesdk" -SRC_URI[sha256sum] = "3572505e63dd35b5dea62cd0386d03c4f2a53da29a3af09f428114cc85c564aa" +SRC_URI[sha256sum] = "8f1e15421668b9edf30ed02899f5f81aff9808a4271935776f61a99a569a13da" do_install_prepend() { export RUAMEL_NO_PIP_INSTALL_CHECK=1