From patchwork Tue Jan 10 10:56:07 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 17948 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 E98DBC46467 for ; Tue, 10 Jan 2023 10:56:24 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web10.100815.1673348181102539800 for ; Tue, 10 Jan 2023 02:56:21 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=W0Wc2KcI; 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=7kX9gSSTKpr0M489ZW/7v8PC51bh+pA6C/mxCOZUAhg=; b=W0Wc2KcI53g/uminOBCmNUHVnP ANKqe60unvQcSL2lCrnP9Kaj0YNyyDmGcr1jj+eRc9nF8wuPX3cfinyHuqXlNci/dzE/8HzGFa6tQ X/VWQVE/3PCH4jcIZ1ayp9AeV/4NBkkQjbQvPcnkN2Ety2iDOh+vRXggp7EHklYo8AMuQC3MQgZ+K OA7ZrZHKwXjyj9Pqe8JsYN9elx2DNoIstedZ98eh88Vy/u4AcX7eObH/JLfJbt4Bn5xin1lUmsYKY nMuaOL8st2te18w6Zr3PT4H9horL5u+2/yjfJh/PKNeYHy5hCFPZfmjp7L54q0FnhFgXPduGAGhtI Ws5wNYEQ==; Received: from lan.nucleusys.com ([92.247.61.126]:53480 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 1pFCIk-0009km-1N; Tue, 10 Jan 2023 12:56:19 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.8.0 -> 5.8.1 Date: Tue, 10 Jan 2023 12:56:07 +0200 Message-Id: <20230110105609.56178-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 ; Tue, 10 Jan 2023 10:56:24 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/100517 Upgrade to release 5.8.1: - fix: mro_trait can be unbound when the class is not in mro Signed-off-by: Leon Anavi --- .../{python3-traitlets_5.8.0.bb => python3-traitlets_5.8.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-traitlets_5.8.0.bb => python3-traitlets_5.8.1.bb} (80%) diff --git a/meta-python/recipes-devtools/python/python3-traitlets_5.8.0.bb b/meta-python/recipes-devtools/python/python3-traitlets_5.8.1.bb similarity index 80% rename from meta-python/recipes-devtools/python/python3-traitlets_5.8.0.bb rename to meta-python/recipes-devtools/python/python3-traitlets_5.8.1.bb index d7a78254e..3f75df6f1 100644 --- a/meta-python/recipes-devtools/python/python3-traitlets_5.8.0.bb +++ b/meta-python/recipes-devtools/python/python3-traitlets_5.8.1.bb @@ -4,7 +4,7 @@ AUTHOR = "IPython Development Team " LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://COPYING.md;md5=f17a3ba4cd59794dd6e005c8e150aef0" -SRC_URI[sha256sum] = "6cc57d6dc28c85d5365961726ffd19b538739347749e13ebe34e03323a0e8f84" +SRC_URI[sha256sum] = "32500888f5ff7bbf3b9267ea31748fa657aaf34d56d85e60f91dda7dc7f5785b" inherit pypi python_hatchling From patchwork Tue Jan 10 10:56:08 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 17949 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 E990FC54EBE for ; Tue, 10 Jan 2023 10:56:24 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web10.100816.1673348183955899753 for ; Tue, 10 Jan 2023 02:56:24 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=JftGYXIe; 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=SALp4Ts0Py/NNhsT6CVbV0csBhLxe7+icGs37LYANcU=; b=JftGYXIebaN++yTMzEnfomEyJj x3zEqcamLUWMC2uxQ1PcgVsgJkM/q7ii9b+0y4CZr3Sq+GmsAPQtU28zdz4kydtJlKIu5mDYMxsk9 ICPVk6AoYsNq6Rt4kgXHnhjyfeYO2+aRRuwon8wdPtlJ66tDeFi6EQWXz97/FxiZ7HZ9Xgiiq/P8c W7/zUqJMXpll1pB9furhM7KRBveepTcAG2IVqFzA0kdS6AEuODkhQbgaZN2TxFoaZeWyJYeGmYuib zWsufKIRUjNjAQmOM/CvLg7p4lVR30GSMpD55PhWgRJD1PItJ4Yl/2wZVjWgtIR768wVFILReiNnP 93l/9ZYQ==; Received: from lan.nucleusys.com ([92.247.61.126]:53480 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 1pFCIm-0009km-5n; Tue, 10 Jan 2023 12:56:22 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 2/3] python3-prettytable: Upgrade 3.4.1 -> 3.6.0 Date: Tue, 10 Jan 2023 12:56:08 +0200 Message-Id: <20230110105609.56178-2-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230110105609.56178-1-leon.anavi@konsulko.com> References: <20230110105609.56178-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 ; Tue, 10 Jan 2023 10:56:24 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/100518 Upgrade to release 3.6.0: - Updated pre-commit with mypy - Test Python 3.12 pre-releases - Fix to min_table_width parameter - Widen tables with long titles Signed-off-by: Leon Anavi --- ...-prettytable_3.4.1.bb => python3-prettytable_3.6.0.bb} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) rename meta-python/recipes-devtools/python/{python3-prettytable_3.4.1.bb => python3-prettytable_3.6.0.bb} (84%) diff --git a/meta-python/recipes-devtools/python/python3-prettytable_3.4.1.bb b/meta-python/recipes-devtools/python/python3-prettytable_3.6.0.bb similarity index 84% rename from meta-python/recipes-devtools/python/python3-prettytable_3.4.1.bb rename to meta-python/recipes-devtools/python/python3-prettytable_3.6.0.bb index c8b50f0b2..0c0692b14 100644 --- a/meta-python/recipes-devtools/python/python3-prettytable_3.4.1.bb +++ b/meta-python/recipes-devtools/python/python3-prettytable_3.6.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] = "7d7dd84d0b206f2daac4471a72f299d6907f34516064feb2838e333a4e2567bd" +SRC_URI[sha256sum] = "2e0026af955b4ea67b22122f310b90eae890738c08cb0458693a49b6221530ac" do_install:append() { perm_files=`find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "*.txt" -o -name "PKG-INFO"` @@ -16,13 +16,15 @@ UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/PrettyTable/" UPSTREAM_CHECK_REGEX = "/PrettyTable/(?P(\d+[\.\-_]*)+)" BBCLASSEXTEND = "native nativesdk" -inherit pypi ptest setuptools3 +inherit pypi ptest python_hatchling SRC_URI += " \ file://run-ptest \ " -DEPENDS += "${PYTHON_PN}-setuptools-scm-native" +DEPENDS += "\ + ${PYTHON_PN}-hatch-vcs-native \ +" RDEPENDS:${PN} += " \ ${PYTHON_PN}-math \ From patchwork Tue Jan 10 10:56:09 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 17950 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 D1576C54EBC for ; Tue, 10 Jan 2023 10:56:34 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web11.101204.1673348185364266628 for ; Tue, 10 Jan 2023 02:56:26 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=MjmZegxM; 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=SKYn4h9dHhMK8l0O+RwvABtZHVWzmRCXi+dOnxXW4o0=; b=MjmZegxM1wdzPfsqyESJJWe0h6 15TEYeiB6TDP0nxCq2MXKOrDekoLLBBx9qcC+P97/OzWfNgU1jUF9Mb8YYG0FFeNlBQh/ulndEhBM yT2o37JKYu8Li74rWT/LuiQrDFvbJS/ZXS80YrAvu1dNUXbSbrg07w/8srQzGBl+Y7sLfTsJweAYz 3B5fTDcGoZBPN/CXd9+kuty7wDmcgYpcvh7CFwOEWvk3V+Q/wz0rDc2Cd/XKMpJl6/abpX3PS8ud7 Q0jgJ1g1VRGd5tUZwgAZ8cM8ZuiKEtIqTvgFSqoL+Mc4w1wn3QkW4eTUMAIJfd/PQzEoHM4/6NGi8 8Ch6gK9Q==; Received: from lan.nucleusys.com ([92.247.61.126]:53480 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 1pFCIo-0009km-Jl; Tue, 10 Jan 2023 12:56:24 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 3/3] python3-cantools: Upgrade 38.0.0 -> 38.0.1 Date: Tue, 10 Jan 2023 12:56:09 +0200 Message-Id: <20230110105609.56178-3-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20230110105609.56178-1-leon.anavi@konsulko.com> References: <20230110105609.56178-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 ; Tue, 10 Jan 2023 10:56:34 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/100519 Upgrade to release 38.0.1: - Changed relative links to absolute links Signed-off-by: Leon Anavi --- .../{python3-cantools_38.0.0.bb => python3-cantools_38.0.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-cantools_38.0.0.bb => python3-cantools_38.0.1.bb} (84%) diff --git a/meta-python/recipes-devtools/python/python3-cantools_38.0.0.bb b/meta-python/recipes-devtools/python/python3-cantools_38.0.1.bb similarity index 84% rename from meta-python/recipes-devtools/python/python3-cantools_38.0.0.bb rename to meta-python/recipes-devtools/python/python3-cantools_38.0.1.bb index 96e193d4f..c11606351 100644 --- a/meta-python/recipes-devtools/python/python3-cantools_38.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-cantools_38.0.1.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/cantools" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd" -SRC_URI[sha256sum] = "b7d5465aba357ce4c103a7d38c9e01a6f12d8265090b4147b3cc1fa4c3adb993" +SRC_URI[sha256sum] = "be391520a43c8041ba99839a00a0a61b7afa929387def6c6348a9626b99f24d7" PYPI_PACKAGE = "cantools"