From patchwork Thu Jan 6 20:55:57 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2107 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 63A33C433EF for ; Thu, 6 Jan 2022 20:56:13 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web11.14858.1641502571224466263 for ; Thu, 06 Jan 2022 12:56:13 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=MT1xvutg; 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=LWbpoYbuAlaWnnnlaK12IaClWAxIsc/sgLM1a3TGXsg=; b=MT1xvutgiC2IwFADVqsnWC9QbZ jJRIuEVEQ67H4FA0YkwquycSI/Sa/3opOXnxwdMx6a4N9yM7yb0Eekd+lw+hAm/xf3gYtVpAFFv2I 06770v0AN7EzXUhb0nFtzYqV4Jt1h9PwvYaP9u0EeGioG/tLxgzXO7M2I324C5DM6PeOriK2oWD5d M7nSstMsTRddZ9my2gmKlph8SSmS/2WO/NFy/vPhQ7wjGhgOUPgV5ROJH85h2p484wSXIWObeQG/D tPv0JJrwo9JO7dguyrt8SpfqOpExwdCzn+g8ULjRiGTBLCDY9qWXCQ2WDopVtW/unNtV4UrPGevML Ckx9bVxg==; Received: from lan.nucleusys.com ([92.247.61.126]:44748 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 1n5ZpM-000AYs-LL; Thu, 06 Jan 2022 22:56:11 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/4] python3-paramiko: Upgrade 2.8.0 -> 2.9.1 Date: Thu, 6 Jan 2022 22:55:57 +0200 Message-Id: <20220106205600.3147781-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 ; Thu, 06 Jan 2022 20:56:13 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94672 Upgrade to release 2.9.1: - Add support for SHA-2 variants of RSA key - Client verification of server host key during key exchange will now prefer rsa-sha2-512, rsa-sha2-256, and legacy ssh-rsa algorithms, in that order, instead of just ssh-rsa. - Server mode will now offer all 3 RSA algorithms for host key verification during key exchange, similar to client mode, if it has been configured with an RSA host key. - Client mode key exchange now sends the ext-info-c flag signaling support for MSG_EXT_INFO, and support for parsing the latter has been added. - SSH agent support grew the ability to specify algorithm flags when requesting private key signatures; this is now used to forward SHA2 algorithms when appropriate. - Server mode is now capable of pubkey auth involving SHA-2 signatures from clients, provided one's server implementation actually provides for doing so. Signed-off-by: Leon Anavi --- .../{python3-paramiko_2.8.0.bb => python3-paramiko_2.9.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-paramiko_2.8.0.bb => python3-paramiko_2.9.1.bb} (82%) diff --git a/meta-python/recipes-devtools/python/python3-paramiko_2.8.0.bb b/meta-python/recipes-devtools/python/python3-paramiko_2.9.1.bb similarity index 82% rename from meta-python/recipes-devtools/python/python3-paramiko_2.8.0.bb rename to meta-python/recipes-devtools/python/python3-paramiko_2.9.1.bb index 1942a1d6c..8cf004aa3 100644 --- a/meta-python/recipes-devtools/python/python3-paramiko_2.8.0.bb +++ b/meta-python/recipes-devtools/python/python3-paramiko_2.9.1.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/paramiko/paramiko/" LICENSE = "LGPL-2.1" LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5" -SRC_URI[sha256sum] = "e673b10ee0f1c80d46182d3af7751d033d9b573dd7054d2d0aa46be186c3c1d2" +SRC_URI[sha256sum] = "a1fdded3b55f61d23389e4fe52d9ae428960ac958d2edf50373faa5d8926edd0" PYPI_PACKAGE = "paramiko" From patchwork Thu Jan 6 20:55:58 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2108 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 36EBFC433FE for ; Thu, 6 Jan 2022 20:56:15 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web10.14734.1641502572798918467 for ; Thu, 06 Jan 2022 12:56:14 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=Kcv9ns5f; 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=S2OgQ++zSuiB0qpPJDOAwhuxcWK5y3N2JtpmmlqsbE8=; b=Kcv9ns5fvNW4AegQwwtbtXoyMh 1n/odupg9bYb7r/e1NNVok1F8jq3ezLF0Q0vmsoxlGrMX4m52FXo6zDw2qQz7XgP548YLboVau61K RPi3dHabEiA0cYQpskr0ynBxP5H4/SLxmsJpwwMXOtrqSv+iJqpmbZ93D0oWNFgEBupM6dvZkcUUG 1weqjeItZe29AswW/ZFCenu1hUuYV3u+9AefaYRgChYp+pKm7X4a3A6RSJr+L3xrFoh/+D6cOhod8 JuwPbIXP3oR/NzfYLeSOfgRH9QMyXfcm6zAQlQldscvDwAQeepzHv5CeliPYvsJmxhbjJGdV9Gh7U V7dEfS3g==; Received: from lan.nucleusys.com ([92.247.61.126]:44748 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 1n5ZpP-000AYs-Dx; Thu, 06 Jan 2022 22:56:13 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 2/4] python3-isodate: Upgrade 0.6.0 -> 0.6.1 Date: Thu, 6 Jan 2022 22:55:58 +0200 Message-Id: <20220106205600.3147781-2-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220106205600.3147781-1-leon.anavi@konsulko.com> References: <20220106205600.3147781-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 ; Thu, 06 Jan 2022 20:56:15 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94673 Upgrade to release 0.6.1: - support python 3.10 - last version to support py 2.7 Signed-off-by: Leon Anavi --- .../{python3-isodate_0.6.0.bb => python3-isodate_0.6.1.bb} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-isodate_0.6.0.bb => python3-isodate_0.6.1.bb} (65%) diff --git a/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb b/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb similarity index 65% rename from meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb rename to meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb index dd3954172..2a5dcfca3 100644 --- a/meta-python/recipes-devtools/python/python3-isodate_0.6.0.bb +++ b/meta-python/recipes-devtools/python/python3-isodate_0.6.1.bb @@ -2,8 +2,7 @@ SUMMARY = "ISO 8601 date/time parser" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709" -SRC_URI[md5sum] = "0e1203fce27ce65e2d01c5f21c4d428f" -SRC_URI[sha256sum] = "2e364a3d5759479cdb2d37cce6b9376ea504db2ff90252a2e5b7cc89cc9ff2d8" +SRC_URI[sha256sum] = "48c5881de7e8b0a0d648cb024c8062dc84e7b840ed81e864c7614fd3c127bde9" inherit pypi setuptools3 From patchwork Thu Jan 6 20:55:59 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2109 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 44FC7C433F5 for ; Thu, 6 Jan 2022 20:56:17 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web08.14829.1641502575247429865 for ; Thu, 06 Jan 2022 12:56:16 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=SQF4QpR4; 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=GdeHiStgagGUE30mJFLo12GreR9iWSPsTaW2fAYOeHg=; b=SQF4QpR4QjmcI4GAwY/gtDjmy+ JL5oqjlWIZhlYo15+ufqq9sHOCH9gn6prxjlLvq2+Ivew4hlD6k/LJcLsOSGMDUnAEi+M/FWUQ0+L gWGEzTQEKNWiS4o+vQlwhblr9hZYVVuWCDsY5G8240P4zcDTTIKfdOWa4KW+uSJb0GSCg+GyJoubb mj+2JuTnS19BZ60xv2qif/08FDI4mObIZ8EwwdkLNtdFWB/KDfrPNtMArWaqgJzDVRAbFCWAJRgml 5w6qR7jxXZWaSBr7ByqF5BY4Z7tuphk8P0SuugkzsN/U8ZG5xxKUIl3KEaxPvAYkkFWVQJpxk4bSt jjKOXTFg==; Received: from lan.nucleusys.com ([92.247.61.126]:44748 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 1n5ZpR-000AYs-NK; Thu, 06 Jan 2022 22:56:16 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 3/4] python3-pychromecast: Upgrade 10.1.1 -> 10.2.3 Date: Thu, 6 Jan 2022 22:55:59 +0200 Message-Id: <20220106205600.3147781-3-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220106205600.3147781-1-leon.anavi@konsulko.com> References: <20220106205600.3147781-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 ; Thu, 06 Jan 2022 20:56:17 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94674 Upgrade to release 10.2.3: - Attempt reconnect on unknown exceptions - Handle NotConnected exception when reconnecting Signed-off-by: Leon Anavi --- ...n3-pychromecast_10.1.1.bb => python3-pychromecast_10.2.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pychromecast_10.1.1.bb => python3-pychromecast_10.2.3.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_10.1.1.bb b/meta-python/recipes-devtools/python/python3-pychromecast_10.2.3.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-pychromecast_10.1.1.bb rename to meta-python/recipes-devtools/python/python3-pychromecast_10.2.3.bb index 185193992..9bd037981 100644 --- a/meta-python/recipes-devtools/python/python3-pychromecast_10.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-pychromecast_10.2.3.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/balloob/pychromecast" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5" -SRC_URI[sha256sum] = "33a47d551ae8b6f93129564828e72e7f4dcb26c9f8812328870cf300ee45438f" +SRC_URI[sha256sum] = "ddb86c5acdc13e8bdadd2b7f5738fda36b32c1750548f7b629ca8d178f05e0da" PYPI_PACKAGE = "PyChromecast" From patchwork Thu Jan 6 20:56:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2110 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 4E98FC433F5 for ; Thu, 6 Jan 2022 20:56:21 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web12.14716.1641502579138818337 for ; Thu, 06 Jan 2022 12:56:20 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=D3SYARHW; 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=3t+5WL3EfrWpfCWKBAanZUxe7ie1z4bXbrhKP4/dd7Y=; b=D3SYARHWzKWYhwtYAcAYFKFBnF rnC9mwOKe6nHOUV2ENkfyeXj/Nu/7WBVym1loMAulPwpLI6unbcAhrxkjYlagN0hUgF9NCC+ARdmI 76TnuBf2imYYVeU0i7jz+OLRpArSukAXBEBOwJz3Q9ZAs66z3XzD9sDphWR3wvGYaXPIFjVmrMTCa WfZDrt3Ag8fsFAMk8/7Hq22OU/12VM4tilXZTSyVR9CkGr8/ebwyhe0hbtZbq3kTu3B5UcB3k00Ba ak2DolilFW/7AmBAm4RHI9pD3qU4n6rk2GHUkkahhuqdk7SXxM2+mOuonCTdhrUi5ceDT2ATujE02 WroXX7hA==; Received: from lan.nucleusys.com ([92.247.61.126]:44748 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 1n5ZpU-000AYs-Bg; Thu, 06 Jan 2022 22:56:18 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 4/4] python3-imageio: Upgrade 2.13.3 -> 2.13.5 Date: Thu, 6 Jan 2022 22:56:00 +0200 Message-Id: <20220106205600.3147781-4-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220106205600.3147781-1-leon.anavi@konsulko.com> References: <20220106205600.3147781-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 ; Thu, 06 Jan 2022 20:56:21 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94675 Upgrade to release 2.13.5: - Clean up PillowPlugin destructor - Close standard streams after webcam access Signed-off-by: Leon Anavi --- .../{python3-imageio_2.13.3.bb => python3-imageio_2.13.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-imageio_2.13.3.bb => python3-imageio_2.13.5.bb} (81%) diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.13.3.bb b/meta-python/recipes-devtools/python/python3-imageio_2.13.5.bb similarity index 81% rename from meta-python/recipes-devtools/python/python3-imageio_2.13.3.bb rename to meta-python/recipes-devtools/python/python3-imageio_2.13.5.bb index 38aa5f181..72d10f70f 100644 --- a/meta-python/recipes-devtools/python/python3-imageio_2.13.3.bb +++ b/meta-python/recipes-devtools/python/python3-imageio_2.13.5.bb @@ -5,7 +5,7 @@ SECTION = "devel/python" LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=7b9bbbb543b6af3e6b53f9b7fb68f71d" -SRC_URI[sha256sum] = "bb87b272e1e9b05d242e11f8d88d030aefa68ca95daf3accc986d0b782ae3cd5" +SRC_URI[sha256sum] = "c7ec2be58e401b6eaa838f8eaf8368ed54b2de4a1b001fe6551644f1a30a843d" inherit pypi setuptools3