From patchwork Wed Jan 4 10:00:14 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 17611 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1A929C4332F for ; Wed, 4 Jan 2023 10:00:31 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web10.8492.1672826430103873497 for ; Wed, 04 Jan 2023 02:00:30 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=Pmb7qBGR; spf=softfail (domain: konsulko.com, ip: 79.124.30.14, mailfrom: leon.anavi@konsulko.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=anavi.org; s=default; h=Content-Transfer-Encoding:MIME-Version:Message-Id:Date:Subject: Cc:To:From:Sender:Reply-To:Content-Type:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=HOHFqZil64yMvtCqJpy/uDMczJC2AQt7ltDwOLOCasU=; b=Pmb7qBGRfg3HowyJwOen2wmT2E ZxtHUuXYtUoVnw7tXdTJx9gCFVgPCgDHagL/YTxzR9tOiU77K2+uA4ipZV0G0etOAUDx3zjlYXVrz 6A8KubVoGK/HAzUm3+gvgVFNlkKb/msiPrhxzpZJc3QHnKVc/Pt4P4QteCgcR6SBvFJhRcCc3lp5C RvPZ27O8tTLy15iU+KHLutLTkpdXERrfdvyDianEeZxUXd8FNU/VclOL35w0Pwc4yaKREiKxWempc TGSPljALST2v3s0o7PRtDseCpkFt9Zmc/bAANlrWdM1edBHaS8eYXFQPxWSXHLsbK59HWgQgx21gw v8QGc5rA==; Received: from lan.nucleusys.com ([92.247.61.126]:35460 helo=tone.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.95) (envelope-from ) id 1pD0a6-000Cd7-TP; Wed, 04 Jan 2023 12:00:27 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/3] python3-coverage: Upgrade 7.0.1 -> 7.0.3 Date: Wed, 4 Jan 2023 12:00:14 +0200 Message-Id: <20230104100016.268755-1-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - voyager.superhosting.bg X-AntiAbuse: Original Domain - lists.openembedded.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - konsulko.com X-Get-Message-Sender-Via: voyager.superhosting.bg: authenticated_id: leon@anavi.org X-Authenticated-Sender: voyager.superhosting.bg: leon@anavi.org X-Source: X-Source-Args: X-Source-Dir: List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 04 Jan 2023 10:00:31 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/100394 Upgrade to release 7.0.3: - Fix: when using the [run] relative_files = True setting, a relative [paths] pattern was still being made absolute. This is now fixed. - Fix: if Python doesn't provide tomllib, then TOML configuration files can only be read if coverage.py is installed with the [toml] extra. Coverage.py will raise an error if TOML support is not installed when it sees your settings are in a .toml file. But it didn't understand that [tools.coverage] was a valid section header, so the error wasn't reported if you used that header, and settings were silently ignored. This is now fixed. - Fix: adjusted how decorators are traced on PyPy 7.3.10. - Fix: the coverage lcov report did not properly implement the --fail-under=MIN option. This has been fixed. - Refactor: added many type annotations, including a number of refactorings. This should not affect outward behavior, but they were a bit invasive in some places, so keep your eyes peeled for oddities. - Refactor: removed the vestigial and long untested support for Jython and IronPython. - Fix: when using pytest-cov or pytest-xdist, or perhaps both, the combining step could fail with assert row is not None using 7.0.2. This was due to a race condition that has always been possible and is still possible. In 7.0.1 and before, the error was silently swallowed by the combining code. Now it will produce a message "Couldn't combine data file" and ignore the data file as it used to do before 7.0.2 Signed-off-by: Leon Anavi --- .../{python3-coverage_7.0.1.bb => python3-coverage_7.0.3.bb} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-coverage_7.0.1.bb => python3-coverage_7.0.3.bb} (74%) diff --git a/meta-python/recipes-devtools/python/python3-coverage_7.0.1.bb b/meta-python/recipes-devtools/python/python3-coverage_7.0.3.bb similarity index 74% rename from meta-python/recipes-devtools/python/python3-coverage_7.0.1.bb rename to meta-python/recipes-devtools/python/python3-coverage_7.0.3.bb index caf6ba14f..7e9b262d1 100644 --- a/meta-python/recipes-devtools/python/python3-coverage_7.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-coverage_7.0.3.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] = "a4a574a19eeb67575a5328a5760bbbb737faa685616586a9f9da4281f940109c" +SRC_URI[sha256sum] = "d5be4e93acce64f516bf4fd239c0e6118fc913c93fa1a3f52d15bdcc60d97b2d" inherit pypi setuptools3 @@ -16,4 +16,6 @@ RDEPENDS:${PN} += " \ ${PYTHON_PN}-crypt \ ${PYTHON_PN}-shell \ ${PYTHON_PN}-io \ + ${PYTHON_PN}-toml \ + ${PYTHON_PN}-multiprocessing \ " From patchwork Wed Jan 4 10:00:15 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 17612 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id F3C4BC46467 for ; Wed, 4 Jan 2023 10:00:40 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web11.8497.1672826432289974154 for ; Wed, 04 Jan 2023 02:00:33 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=Q8PFy+5p; spf=softfail (domain: konsulko.com, ip: 79.124.30.14, mailfrom: leon.anavi@konsulko.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=anavi.org; s=default; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=SM39SMK6JxJyk+jGUMmX628gNcujkMCW1YR5UI5SbRQ=; b=Q8PFy+5pFxFHFiRCq8yFK34pcl 5nx+q2RcIa/8lZwjYOuMNthi292Hu0rXfCZ6qSGwRMdz8aG6Pjp4cVV1C1+kAFsY7i+2swt4aUSM7 w+UqjE9SgN0rqFwHJSP3cxcDWwBxTIyrn78t6fGuXJ45RuDwiRTjJA5IhdhRBDvOKeLaA9FiN5JvZ jpEsQrnmyrZ/FaImJSRSrxP5RyX3841sV9AF8hc/ARg6R3D7yR1foUcjdJCN6oRbCfm6LjjRXSuT9 /rv+YZwQyZHFimMeC1DsR7xr4/8muXa+AGWeXiiSSbS1Kwupsk3yWROPxJsSGodtGOlEKEyu0vYRN NM7x4Hjg==; Received: from lan.nucleusys.com ([92.247.61.126]:35460 helo=tone.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.95) (envelope-from ) id 1pD0a9-000Cd7-U8; Wed, 04 Jan 2023 12:00:30 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 2/3] python3-prompt-toolkit: Upgrade 3.0.31 -> 3.0.36 Date: Wed, 4 Jan 2023 12:00:15 +0200 Message-Id: <20230104100016.268755-2-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230104100016.268755-1-leon.anavi@konsulko.com> References: <20230104100016.268755-1-leon.anavi@konsulko.com> MIME-Version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - voyager.superhosting.bg X-AntiAbuse: Original Domain - lists.openembedded.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - konsulko.com X-Get-Message-Sender-Via: voyager.superhosting.bg: authenticated_id: leon@anavi.org X-Authenticated-Sender: voyager.superhosting.bg: leon@anavi.org X-Source: X-Source-Args: X-Source-Dir: List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 04 Jan 2023 10:00:40 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/100395 Upgrade to release 3.0.36: - Another Python 3.6 fix for a bug that was introduced in 3.0.34. - Fix bug introduced in 3.0.34 for Python 3.6. Use asynccontextmanager implementation from prompt_toolkit itself. - Improve completion performance in various places. - Improve renderer performance. - Handle `KeyboardInterrupt` when the stacktrace of an unhandled error is displayed. - Use correct event loop in `Application.create_background_task()`. - Fix `show_cursor` attribute in `ScrollablePane`. - Improve termination of `Application`. Don't suppress `CancelledError`. This fixes a race condition when an `Application` gets cancelled while we're waiting for the background tasks to complete. - Fixed typehint for `OneStyleAndTextTuple`. - Small bugfix in `CombinedRegistry`. Fixed missing `@property`. - Use `DummyInput` by default in `create_input()` if `sys.stdin` does not have a valid file descriptor. This fixes errors when `sys.stdin` is patched in certain situations. - Fix control-c key binding for `ProgressBar` when the progress bar was not created from the main thread. The current code would try to kill the main thread when control-c was pressed. - Accept a `cancel_callback` in `ProgressBar` to specify the cancellation behavior for when `control-c` is pressed. - Small performance improvement in the renderer. Signed-off-by: Leon Anavi --- ...rompt-toolkit_3.0.31.bb => python3-prompt-toolkit_3.0.36.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-prompt-toolkit_3.0.31.bb => python3-prompt-toolkit_3.0.36.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.31.bb b/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.36.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.31.bb rename to meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.36.bb index 0b8962ded..a5299318b 100644 --- a/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.31.bb +++ b/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.36.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://python-prompt-toolkit.readthedocs.io/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=b2cde7da89f0c1f3e49bf968d00d554f" -SRC_URI[sha256sum] = "9ada952c9d1787f52ff6d5f3484d0b4df8952787c087edf6a1f7c2cb1ea88148" +SRC_URI[sha256sum] = "3e163f254bef5a03b146397d7c1963bd3e2812f0964bb9a24e6ec761fd28db63" inherit pypi setuptools3 From patchwork Wed Jan 4 10:00:16 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 17613 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id EDA12C4332F for ; Wed, 4 Jan 2023 10:00:40 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web11.8498.1672826435675471176 for ; Wed, 04 Jan 2023 02:00:36 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=iiFhAoQh; spf=softfail (domain: konsulko.com, ip: 79.124.30.14, mailfrom: leon.anavi@konsulko.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=anavi.org; s=default; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=OSiJ1gk6zUtn4c2e1F3PNWrtIeT1AyhTKSYbXf/tziM=; b=iiFhAoQhm1ZfV2IDukSx45Pk5m iReSnSZvgTYONq40aMpe/hsFNuu7jE/VVEzsDLvA4x9PRtdsJRN6Gl95l+rVkat9R4BS/XDeT/55p G8VgErf5SfNKKMBrdV4mbzucwSc1rgppivpf63Q4zM1S80bSfCoIR6DBRhB4dZu+L7Z2FIoVsd8XH oLkxqlt7xmuklXu3V2sS2/U/QLs71P63lIbpfabCXF+Ys+6vwK5Q4dP3MVg0fmsjq1xLEqQ+2UJWg rDtRyqVIYHFjzrsFYlM0dKD6Dlvf5BPu50RzbnQYBpugeIg0EMj8Fcmhz4gnq0SVQ7nFnU12ry+YU FezUeMxA==; Received: from lan.nucleusys.com ([92.247.61.126]:35460 helo=tone.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.95) (envelope-from ) id 1pD0aC-000Cd7-V2; Wed, 04 Jan 2023 12:00:33 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 3/3] python3-simplejson: Upgrade 3.18.0 -> 3.18.1 Date: Wed, 4 Jan 2023 12:00:16 +0200 Message-Id: <20230104100016.268755-3-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230104100016.268755-1-leon.anavi@konsulko.com> References: <20230104100016.268755-1-leon.anavi@konsulko.com> MIME-Version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - voyager.superhosting.bg X-AntiAbuse: Original Domain - lists.openembedded.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - konsulko.com X-Get-Message-Sender-Via: voyager.superhosting.bg: authenticated_id: leon@anavi.org X-Authenticated-Sender: voyager.superhosting.bg: leon@anavi.org X-Source: X-Source-Args: X-Source-Dir: List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 04 Jan 2023 10:00:40 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/100396 Upgrade to release 3.18.1: - Remove unnecessary `i` variable from encoder module namespace - Declare support for Python 3.11 and add wheels Signed-off-by: Leon Anavi --- ...ython3-simplejson_3.18.0.bb => python3-simplejson_3.18.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-simplejson_3.18.0.bb => python3-simplejson_3.18.1.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-simplejson_3.18.0.bb b/meta-python/recipes-devtools/python/python3-simplejson_3.18.1.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-simplejson_3.18.0.bb rename to meta-python/recipes-devtools/python/python3-simplejson_3.18.1.bb index ccdd4ddba..1aaa1eab0 100644 --- a/meta-python/recipes-devtools/python/python3-simplejson_3.18.0.bb +++ b/meta-python/recipes-devtools/python/python3-simplejson_3.18.1.bb @@ -4,7 +4,7 @@ HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e" -SRC_URI[sha256sum] = "58a429d2c2fa80834115b923ff689622de8f214cf0dc4afa9f59e824b444ab31" +SRC_URI[sha256sum] = "746086e3ef6d74b53599df31b491d88a355abf2e31c837137dd90f8c4561cafa" inherit pypi setuptools3