From patchwork Fri Jan 7 17:47:26 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2138 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 4E118C433F5 for ; Fri, 7 Jan 2022 17:47:47 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web08.9995.1641577665196039829 for ; Fri, 07 Jan 2022 09:47:46 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=RLcN2AYO; spf=permerror, err=parse error for token &{10 18 spf.securedserverspace.com}: parse error for token &{10 18 _netblocks4.securedserverspace.com}: limit exceeded (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=AjS0sKYcYnnDSJ5ei3n+rbCUnMU3+NPQZw67mmHdJ10=; b=RLcN2AYOHA5z1AepCFhX07kDgA gBJrB8drYrbi1HYcYBjICn0j26XCamg2WU+ruFaj7rEFUgVi13KKMM6CFYOqkuoNpey1JYzDJXFC0 BZ5lkzx1CUt7C8W+6TfNLPx1kjAnd4KbAJU/adZAszMy702awGESypqhCP5LFSKNcu3ihgXx0EZAv iTyzoL9o0W5KLSuNWAXVLBJt5Olck9k9+3f1mWrE1hCLtFRcigKTyw9L9t/qFZGM0uxwY58c1Um5F /kIEmJ3pmB42ZdBtD1fgquGS1Wp1OLG8+Brox2ZV/3nCZoNVJk3FUx1lc16R8X0peYdQ0ykY8pfzz bsfDaMcA==; Received: from lan.nucleusys.com ([92.247.61.126]:48914 helo=lootbox.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1n5tMc-0000YW-FU; Fri, 07 Jan 2022 19:47:44 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/5] python3-psutil: Upgrade 5.8.0 -> 5.9.0 Date: Fri, 7 Jan 2022 19:47:26 +0200 Message-Id: <20220107174730.3326962-1-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-OutGoing-Spam-Status: No, score=-0.5 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 ; Fri, 07 Jan 2022 17:47:47 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94692 Upgrade to release 5.9.0: - [Linux]: cpu_freq() is slow on systems with many CPUs. Read current frequency values for all CPUs from /proc/cpuinfo instead of opening many files in /sys fs. (patch by marxin) - NoSuchProcess message now specifies if the PID has been reused. - error classes (NoSuchProcess, AccessDenied, etc.) now have a better formatted and separated __repr__ and __str__ implementations. - [BSD]: add support for MidnightBSD. - [Linux]: disk_partitions(): convert /dev/root device (an alias used on some Linux distros) to real root device path. - PSUTIL_DEBUG mode now prints file name and line number of the debug messages coming from C extension modules. - rewrite HISTORY.rst to use hyperlinks pointing to psutil API doc. Signed-off-by: Leon Anavi --- .../{python3-psutil_5.8.0.bb => python3-psutil_5.9.0.bb} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-psutil_5.8.0.bb => python3-psutil_5.9.0.bb} (78%) diff --git a/meta-python/recipes-devtools/python/python3-psutil_5.8.0.bb b/meta-python/recipes-devtools/python/python3-psutil_5.9.0.bb similarity index 78% rename from meta-python/recipes-devtools/python/python3-psutil_5.8.0.bb rename to meta-python/recipes-devtools/python/python3-psutil_5.9.0.bb index 7186d3c97..cf3e0b39c 100644 --- a/meta-python/recipes-devtools/python/python3-psutil_5.8.0.bb +++ b/meta-python/recipes-devtools/python/python3-psutil_5.9.0.bb @@ -2,7 +2,7 @@ SUMMARY = "A cross-platform process and system utilities module for Python" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=e35fd9f271d19d5f742f20a9d1f8bb8b" -SRC_URI[sha256sum] = "0c9ccb99ab76025f2f0bbecf341d4656e9c1351db8cc8a03ccd62e318ab4b5c6" +SRC_URI[sha256sum] = "869842dbd66bb80c3217158e629d6fceaecc3a3166d3d1faee515b05dd26ca25" inherit pypi setuptools3 @@ -19,6 +19,8 @@ RDEPENDS:${PN} += " \ ${PYTHON_PN}-threading \ ${PYTHON_PN}-xml \ ${PYTHON_PN}-netclient \ + ${PYTHON_PN}-ctypes \ + ${PYTHON_PN}-resource \ " BBCLASSEXTEND = "native nativesdk" From patchwork Fri Jan 7 17:47:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2139 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 2F95CC433EF for ; Fri, 7 Jan 2022 17:47:48 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web11.9857.1641577666052987418 for ; Fri, 07 Jan 2022 09:47:47 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=X3AuD7Xg; spf=permerror, err=parse error for token &{10 18 spf.securedserverspace.com}: parse error for token &{10 18 _netblocks4.securedserverspace.com}: limit exceeded (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=q/vCTyh2OMnNlntQxahdthWvhzcK+MCGp7HYnOz5uv4=; b=X3AuD7XgC1WKdkIe+/PJW5d1it 0qRgwEHTiPIUZIyCTjcnCZLpTF8GJ+xq883yDtE1bW1fgCVg8EqyyGZRrCypw5QPi5nQIbmj6GkkC uiWFaQZhUmzEtlLkBPbOoVaP46TPZzEajC0Tc4q70lgS+VWB3AABA1DJoNEBUJHRblR2tDrQjNtWX rJVm8N/x5i5WvngbzEuiomXaPsFQcJLaBqiwvBD/OESuGz3Cwz7JnKeYWFVJXiy52hlr6ACDnNYGc ZZZ+OIhZiYhhbdi2eXOAkc2sfqjg34i6/KBHf5ZJUeoAIhkECDWQT9D3UUsxrrU+CUaH8WpFUGZWm aLmW8c/g==; Received: from lan.nucleusys.com ([92.247.61.126]:48914 helo=lootbox.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1n5tMe-0000YW-Jc; Fri, 07 Jan 2022 19:47:46 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 2/5] python3-ujson: Upgrade 5.0.0 -> 5.1.0 Date: Fri, 7 Jan 2022 19:47:27 +0200 Message-Id: <20220107174730.3326962-2-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220107174730.3326962-1-leon.anavi@konsulko.com> References: <20220107174730.3326962-1-leon.anavi@konsulko.com> MIME-Version: 1.0 X-OutGoing-Spam-Status: No, score=-0.5 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 ; Fri, 07 Jan 2022 17:47:48 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94693 Upgrade to release 5.1.0: - Strip debugging symbols from Linux binaries Add INSANE_SKIP for already-stripped to avoid build errors due to the stripped debugging symbols from Linux binaries in this release. Signed-off-by: Leon Anavi --- .../{python3-ujson_5.0.0.bb => python3-ujson_5.1.0.bb} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-ujson_5.0.0.bb => python3-ujson_5.1.0.bb} (78%) diff --git a/meta-python/recipes-devtools/python/python3-ujson_5.0.0.bb b/meta-python/recipes-devtools/python/python3-ujson_5.1.0.bb similarity index 78% rename from meta-python/recipes-devtools/python/python3-ujson_5.0.0.bb rename to meta-python/recipes-devtools/python/python3-ujson_5.1.0.bb index fb1bcd761..821eba58c 100644 --- a/meta-python/recipes-devtools/python/python3-ujson_5.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-ujson_5.1.0.bb @@ -4,7 +4,7 @@ DESCRIPTION = "UltraJSON is an ultra fast JSON encoder and decoder written in pu LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=10fa10456417c0252bcb8a498e498ffe" -SRC_URI[sha256sum] = "3ff7242816b1d22c08c04c4c6db0f6ba7c16cd624ce38534c1025defa011e50e" +SRC_URI[sha256sum] = "a88944d2f99db71a3ca0c63d81f37e55b660edde0b07216fb65a3e46403ef004" inherit pypi ptest setuptools3 @@ -31,3 +31,6 @@ do_install_ptest() { } BBCLASSEXTEND = "native nativesdk" + +# Debugging symbols have been stripped from Linux binaries since release 5.1.0 +INSANE_SKIP:${PN} += "already-stripped" From patchwork Fri Jan 7 17:47:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2140 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 362F0C433F5 for ; Fri, 7 Jan 2022 17:47:50 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web08.9996.1641577668788036287 for ; Fri, 07 Jan 2022 09:47:49 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=LBT1rDY/; spf=permerror, err=parse error for token &{10 18 spf.securedserverspace.com}: parse error for token &{10 18 _netblocks4.securedserverspace.com}: limit exceeded (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=nMTkX3GNzreunwsA1XeOboVepq/ZTPO3h1aoUcfulgk=; b=LBT1rDY/RB5tzGZ6uqR5JwAUk0 djFHXo+h8QxU1M02mnevfsk0IHrdnEY9+oxyKifBe2S/n3teXmfZTUwKiUYY1F6U19U66ySykYMlj 7vhRdeWwvMU2ZrENWAs10qGAMFbsSZRcFtaw4VtBBlsXfRdZxJ8agA0g9SQMrTsB/EG5DeIKi6PSj 2hPYAsFjWje3Kp1e7OgjHD6DyYDlRYROCMu3eQNMR0iFfMA7bJ4JK97Z2s3l8E+vzjDmUMsf0Btg0 dPA1EYSBn5o2PeYBNI7qR9tMOWR/E+DYhcvMXBFnflmvK45p7MT5cc5ATMtRQHZ5fKEleLV8p+uAI Vv5w64qw==; Received: from lan.nucleusys.com ([92.247.61.126]:48914 helo=lootbox.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1n5tMg-0000YW-S9; Fri, 07 Jan 2022 19:47:48 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 3/5] python3-astroid: Upgrade 2.9.0 -> 2.9.2 Date: Fri, 7 Jan 2022 19:47:28 +0200 Message-Id: <20220107174730.3326962-3-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220107174730.3326962-1-leon.anavi@konsulko.com> References: <20220107174730.3326962-1-leon.anavi@konsulko.com> MIME-Version: 1.0 X-OutGoing-Spam-Status: No, score=-0.5 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 ; Fri, 07 Jan 2022 17:47:50 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94694 Upgrade to release 2.9.2: - Fixed regression in ``astroid.scoped_nodes`` where ``_is_metaclass`` was not accessible anymore. Signed-off-by: Leon Anavi --- .../{python3-astroid_2.9.0.bb => python3-astroid_2.9.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-astroid_2.9.0.bb => python3-astroid_2.9.2.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.9.0.bb b/meta-python/recipes-devtools/python/python3-astroid_2.9.2.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-astroid_2.9.0.bb rename to meta-python/recipes-devtools/python/python3-astroid_2.9.2.bb index fee8acb1f..c504d4db3 100644 --- a/meta-python/recipes-devtools/python/python3-astroid_2.9.0.bb +++ b/meta-python/recipes-devtools/python/python3-astroid_2.9.2.bb @@ -4,7 +4,7 @@ SECTION = "devel/python" LICENSE = "LGPL-2.1" LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1" -SRC_URI[sha256sum] = "5939cf55de24b92bda00345d4d0659d01b3c7dafb5055165c330bc7c568ba273" +SRC_URI[sha256sum] = "72ace9c3333e274e9248168fc4f3e300da8545af1c303bd69197027f49e2bfff" inherit pypi setuptools3 From patchwork Fri Jan 7 17:47:29 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2141 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 2FB54C433F5 for ; Fri, 7 Jan 2022 17:47:52 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web10.10130.1641577670506737069 for ; Fri, 07 Jan 2022 09:47:51 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=iI0L3MMe; spf=permerror, err=parse error for token &{10 18 spf.securedserverspace.com}: parse error for token &{10 18 _netblocks4.securedserverspace.com}: limit exceeded (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=2o3sr4seINpd/eJ+/5Ra9qiEa8t/BRXvm9IfrWPH43w=; b=iI0L3MMeMh6Ip/DNFBG9LOFm6T YrffD+5oBdie6xYfENqsDi/226oRXgJrpT2b6Z3+AEpTRq35ZhprbuqJRdK3cIYd7DtVF4xCKX/S2 0QLk7vQNgNw4UGkqvuFrIQWE3pKsXZzqv0ObBNrnJJieQ0cQ6+DqYsUBZd5kX9YZLDlAZffofIaYH /aLiM/PXAOzKSMnmhLydQFdGDdYwAApijqWtGMjNhrJc97QyIPpbsUw6MYexcOa0WsYoLH1fpHlfG Vu/L3ENt/TQ/MLU+0O8+tX0kSxJxrcrsJu/vA+jwm9bkZYqm08jCSw6lI1u75/FNXV3yYu2w9zcaz 0W6+b4zA==; Received: from lan.nucleusys.com ([92.247.61.126]:48914 helo=lootbox.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1n5tMj-0000YW-73; Fri, 07 Jan 2022 19:47:50 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 4/5] python3-robotframework: Upgrade 4.1.2 -> 4.1.3 Date: Fri, 7 Jan 2022 19:47:29 +0200 Message-Id: <20220107174730.3326962-4-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220107174730.3326962-1-leon.anavi@konsulko.com> References: <20220107174730.3326962-1-leon.anavi@konsulko.com> MIME-Version: 1.0 X-OutGoing-Spam-Status: No, score=-0.5 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 ; Fri, 07 Jan 2022 17:47:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94695 Upgrade to release 4.1.3: - Fix to a regression related to parsing reStructuredText files that was introduced in Robot Framework 4.1.2 Signed-off-by: Leon Anavi --- ...-robotframework_4.1.2.bb => python3-robotframework_4.1.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-robotframework_4.1.2.bb => python3-robotframework_4.1.3.bb} (92%) diff --git a/meta-python/recipes-devtools/python/python3-robotframework_4.1.2.bb b/meta-python/recipes-devtools/python/python3-robotframework_4.1.3.bb similarity index 92% rename from meta-python/recipes-devtools/python/python3-robotframework_4.1.2.bb rename to meta-python/recipes-devtools/python/python3-robotframework_4.1.3.bb index 0c3de5da7..a40d047d7 100644 --- a/meta-python/recipes-devtools/python/python3-robotframework_4.1.2.bb +++ b/meta-python/recipes-devtools/python/python3-robotframework_4.1.3.bb @@ -13,7 +13,7 @@ inherit pypi setuptools3 PYPI_PACKAGE_EXT = "zip" -SRC_URI[sha256sum] = "7ea2454b847cfcb211e2906743c5c4a868ab096ab4ce1547ab102d91fb224443" +SRC_URI[sha256sum] = "d2675cbe3e5a4c90be3ddb61be3b88cc0d6ff503c298ad8f8a78aad14e71e886" RDEPENDS:${PN} += " \ ${PYTHON_PN}-shell \ From patchwork Fri Jan 7 17:47:30 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2142 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 38561C433EF for ; Fri, 7 Jan 2022 17:47:55 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web11.9858.1641577673004302454 for ; Fri, 07 Jan 2022 09:47:54 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=e7IUc23t; spf=permerror, err=parse error for token &{10 18 spf.securedserverspace.com}: parse error for token &{10 18 _netblocks4.securedserverspace.com}: limit exceeded (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=jrgXxxxkD1mj8zwN28YBo5ZfrUgnEJz9dO2+93Cp/YI=; b=e7IUc23tX2VuUkjT+2cWHylR8z fvvs3zyHv4r6JqyYowiVGQQM7MDfqJC1MXGWT7uU04H3rWNlatKsADuPHGFb/0P+H7Fl2KLKb7mzJ yR+zrDfXpJaEXXDU8j6dF75ApgEdgemAmksQ5/erPQ9q/vo8gZVArriACILOopkY8aFA3D91sys88 3H1pqGDdGgf1BcshFrSYY6G/rnP+XJDpMNkaXOyCzypVAyp2mpdPmLSBbM0WB6Mge8aU4vIaHyI5/ SaPaYj7joBhp1v8MAHfA7FUclNG+AxLyjbGQ1q2X2x7NTeWvvuKkaLXi097g9SsPposXClcyqzo9u XEa+DlvA==; Received: from lan.nucleusys.com ([92.247.61.126]:48914 helo=lootbox.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1n5tMl-0000YW-7p; Fri, 07 Jan 2022 19:47:52 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 5/5] python3-cantools: Upgrade 37.0.0 -> 37.0.1 Date: Fri, 7 Jan 2022 19:47:30 +0200 Message-Id: <20220107174730.3326962-5-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220107174730.3326962-1-leon.anavi@konsulko.com> References: <20220107174730.3326962-1-leon.anavi@konsulko.com> MIME-Version: 1.0 X-OutGoing-Spam-Status: No, score=-0.5 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 ; Fri, 07 Jan 2022 17:47:55 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94696 Upgrade to release 37.0.1: - Fix issue Wrong compare type in _check_signals_ranges_scaling() Signed-off-by: Leon Anavi --- ...on3-cantools_37.0.0.bb => python3-cantools_37.0.1.bb} | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-cantools_37.0.0.bb => python3-cantools_37.0.1.bb} (55%) diff --git a/meta-python/recipes-devtools/python/python3-cantools_37.0.0.bb b/meta-python/recipes-devtools/python/python3-cantools_37.0.1.bb similarity index 55% rename from meta-python/recipes-devtools/python/python3-cantools_37.0.0.bb rename to meta-python/recipes-devtools/python/python3-cantools_37.0.1.bb index c8c2b2592..9642bc528 100644 --- a/meta-python/recipes-devtools/python/python3-cantools_37.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-cantools_37.0.1.bb @@ -3,10 +3,17 @@ HOMEPAGE = "https://github.com/eerimoq/cantools" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd" -SRC_URI[sha256sum] = "ac5f8901940693ce4b798e7ae07ed69a60856ae8a1ca47079088530813b57287" +SRC_URI[sha256sum] = "5852ad9fd17ddd7b1a1ce87b21b000e7f5716b358cdac4fdaca13b3e292f4c99" PYPI_PACKAGE = "cantools" inherit pypi setuptools3 +RDEPENDS:${PN} += "\ + ${PYTHON_PN}-can \ + ${PYTHON_PN}-bitstruct \ + ${PYTHON_PN}-core \ + ${PYTHON_PN}-textparser \ +" + CLEANBROKEN = "1"