From bb6a1ea1461a021ee20c8f02eaab4a72699bc777 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 3 Nov 2021 06:30:48 -0700 Subject: [PATCH 1/6] python3-kivy: Use branch parameter in SRC_URI Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb b/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb index a4ec62626bc..3daf13473a6 100644 --- a/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=f0c851d60495c7e27225a819e179208a" inherit setuptools3 pkgconfig features_check SRC_URI = "\ - git://github.com/kivy/kivy.git;protocol=git;\ + git://github.com/kivy/kivy.git;protocol=https;branch=master \ " # Kivy's setup files only look for GLES libraries for Android, iOS, RPi, From a250a710e4aeb76d1672f238c0cbb80e6cd5d9bf Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 3 Nov 2021 14:11:46 +0200 Subject: [PATCH 2/6] python3-pint: Upgrade 0.17 -> 0.18 Upgrade to release 0.18: - Implement use of Quantity in the Quantity constructor (convert to specified units). - Rename .readthedocs.yml to .readthedocs.yaml, update MANIFEST.in - Fix a few small typos. - Fix babel format for `Unit`. - Fix handling of positional max/min arguments in clip function. - Fix string formatting of numpy array scalars. - Fix default format for Measurement class - Fix parsing of pretty units with same exponents but different sign. - Convert the application registry to a wrapper object. - Add documentation for the string format options. - Support custom units formats. - Autoupdate pre-commit hooks. - Improved the application registry. - Improved testing isolation using pytest fixtures. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-pint_0.17.bb => python3-pint_0.18.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pint_0.17.bb => python3-pint_0.18.bb} (88%) diff --git a/meta-python/recipes-devtools/python/python3-pint_0.17.bb b/meta-python/recipes-devtools/python/python3-pint_0.18.bb similarity index 88% rename from meta-python/recipes-devtools/python/python3-pint_0.17.bb rename to meta-python/recipes-devtools/python/python3-pint_0.18.bb index 6642f4b9b14..a7a1384da14 100644 --- a/meta-python/recipes-devtools/python/python3-pint_0.17.bb +++ b/meta-python/recipes-devtools/python/python3-pint_0.18.bb @@ -10,7 +10,7 @@ PYPI_PACKAGE := "Pint" inherit pypi ptest setuptools3 -SRC_URI[sha256sum] = "f4d0caa713239e6847a7c6eefe2427358566451fe56497d533f21fb590a3f313" +SRC_URI[sha256sum] = "8c4bce884c269051feb7abc69dbfd18403c0c764abc83da132e8a7222f8ba801" DEPENDS += "python3-setuptools-scm-native" From e3018770d1ecb6dd04868527cb793a1f55a40ce1 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 3 Nov 2021 14:11:47 +0200 Subject: [PATCH 3/6] python3-prettytable: Upgrade 2.2.1 -> 2.3.0 Upgrade to release 2.3.0: - Add Jupyter repr and default interpreter repr methods - Add custom format support - Add method to generate LaTex formatted string Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...ython3-prettytable_2.2.1.bb => python3-prettytable_2.3.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-prettytable_2.2.1.bb => python3-prettytable_2.3.0.bb} (92%) diff --git a/meta-python/recipes-devtools/python/python3-prettytable_2.2.1.bb b/meta-python/recipes-devtools/python/python3-prettytable_2.3.0.bb similarity index 92% rename from meta-python/recipes-devtools/python/python3-prettytable_2.2.1.bb rename to meta-python/recipes-devtools/python/python3-prettytable_2.3.0.bb index b9050cc1bd4..d3d26f213e5 100644 --- a/meta-python/recipes-devtools/python/python3-prettytable_2.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-prettytable_2.3.0.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://code.google.com/p/prettytable" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://COPYING;md5=c9a6829fcd174d9535b46211917c7671" -SRC_URI[sha256sum] = "6d465005573a5c058d4ca343449a5b28c21252b86afcdfa168cdc6a440f0b24c" +SRC_URI[sha256sum] = "efd6f72d453bc0513b90f5b10fb4d085b919ca0f4c5ef033bda1dd894572ba64" do_install:append() { perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "*.txt" -o -name "PKG-INFO"` From f184f955c03e15adebc6e07e018987ce2b99f265 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 3 Nov 2021 14:11:48 +0200 Subject: [PATCH 4/6] python3-astroid: Upgrade 2.8.2 -> 2.8.4 Upgrade to release 2.8.4: - Fix the ``scope()`` and ``frame()`` methods of ``NamedExpr`` nodes. When these nodes occur in ``Arguments``, ``Keyword`` or ``Comprehension`` nodes these methods now correctly point to the outer-scope of the ``FunctionDef``, ``ClassDef``, or ``Comprehension``. - Fix the ``set_local`` function for ``NamedExpr`` nodes. When these nodes occur in ``Arguments``, ``Keyword``, or ``Comprehension`` nodes these nodes are now correctly added to the locals of the ``FunctionDef``, ``ClassDef``, or ``Comprehension``. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-astroid_2.8.2.bb => python3-astroid_2.8.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-astroid_2.8.2.bb => python3-astroid_2.8.4.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.8.2.bb b/meta-python/recipes-devtools/python/python3-astroid_2.8.4.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-astroid_2.8.2.bb rename to meta-python/recipes-devtools/python/python3-astroid_2.8.4.bb index f465ba992dd..1d2767fba1b 100644 --- a/meta-python/recipes-devtools/python/python3-astroid_2.8.2.bb +++ b/meta-python/recipes-devtools/python/python3-astroid_2.8.4.bb @@ -4,7 +4,7 @@ SECTION = "devel/python" LICENSE = "LGPL-2.1" LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1" -SRC_URI[sha256sum] = "304e99c129794f2cfda584a12b71fde85205da950e2f330f4be09150525ae949" +SRC_URI[sha256sum] = "1e83a69fd51b013ebf5912d26b9338d6643a55fec2f20c787792680610eed4a2" inherit pypi setuptools3 From 4a669a1ec854599578a07f109256fa12eb4969e7 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 3 Nov 2021 14:11:49 +0200 Subject: [PATCH 5/6] python3-isort: Upgrade 5.9.3 -> 5.10.0 Upgrade to release 5.10.0: - Switch to tomli for pyproject.toml configuration loader. - CLI bug (--exend-skip-glob, overrides instead of extending). - respect PATH customization in nested calls to git. - Append only with certain code snippets incorrectly adds imports. - Added official support for Python 3.10 Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-isort_5.9.3.bb => python3-isort_5.10.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-isort_5.9.3.bb => python3-isort_5.10.0.bb} (84%) diff --git a/meta-python/recipes-devtools/python/python3-isort_5.9.3.bb b/meta-python/recipes-devtools/python/python3-isort_5.10.0.bb similarity index 84% rename from meta-python/recipes-devtools/python/python3-isort_5.9.3.bb rename to meta-python/recipes-devtools/python/python3-isort_5.10.0.bb index 44a51db28f7..2eae82026cc 100644 --- a/meta-python/recipes-devtools/python/python3-isort_5.9.3.bb +++ b/meta-python/recipes-devtools/python/python3-isort_5.10.0.bb @@ -4,7 +4,7 @@ LICENSE = "MIT" SECTION = "devel/python" LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=8227180126797a0148f94f483f3e1489" -SRC_URI[sha256sum] = "9c2ea1e62d871267b78307fe511c0838ba0da28698c5732d54e2790bf3ba9899" +SRC_URI[sha256sum] = "e52ff6d38012b131628cf0f26c51e7bd3a7c81592eefe3ac71411e692f1b9345" inherit pypi setuptools3 From e12c83af373049804358c69d5e9a984318a8fd49 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 3 Nov 2021 14:11:50 +0200 Subject: [PATCH 6/6] python3-aenum: Upgrade 3.1.0 -> 3.1.2 Upgrade to release 3.1.2: - fix extend_enum() - tests: move enum setting from body to header Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-aenum_3.1.0.bb => python3-aenum_3.1.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-aenum_3.1.0.bb => python3-aenum_3.1.2.bb} (74%) diff --git a/meta-python/recipes-devtools/python/python3-aenum_3.1.0.bb b/meta-python/recipes-devtools/python/python3-aenum_3.1.2.bb similarity index 74% rename from meta-python/recipes-devtools/python/python3-aenum_3.1.0.bb rename to meta-python/recipes-devtools/python/python3-aenum_3.1.2.bb index 999fd5a3d17..ce58c5ef497 100644 --- a/meta-python/recipes-devtools/python/python3-aenum_3.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-aenum_3.1.2.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://pypi.org/project/aenum/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://aenum/LICENSE;md5=c6a85477543f8b8591b9c1f82abebbe9" -SRC_URI[sha256sum] = "87f0e9ef4f828578ab06af30e4d7944043bf4ecd3f4b7bd1cbe37e2173cde94a" +SRC_URI[sha256sum] = "806dd4791298e19daff2cdfe7be3ae6d931d0d03097973f802b3ea55066f62dd" inherit pypi setuptools3