From patchwork Wed Jan 12 18:35: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: 2350 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 74D81C4332F for ; Wed, 12 Jan 2022 18:35:47 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web09.1290.1642012545496809962 for ; Wed, 12 Jan 2022 10:35:47 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=cW7aFL6I; 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=+wp2cBMJsTJBQEGhOaah7ssH0UdtHc9ysO7CWdRIvzA=; b=cW7aFL6I6XO2rf8k6E74/Yw4Vv qpVDlgdSE/fxdiGbG2deGmTFfENnfKoKn74Gq50hCs1exYoiiHIVNPPqOCS3wxX474hRk8rxqko4G yxcA4zhP+viviBAGGqeLGwTxbITaKNuvnef5P0CMwK7XqHB+kgHIcAdeas+S8Sf4BJOPHp4axGeGv 7obsx4ODmaPyRzqEwVaMHpkft53Ot4tWOO6Kk+9e7kkJqLAP60IUJ+08Ajok1BeTUVcSuLvL34q+S IN5ppmg4TI17PgWDL7DWx0CfTkgST6koYsezcSksxj8euLX7k5hGQraba7CrNWlc7YQwdT7jEHl3T uxeFj24A==; Received: from lan.nucleusys.com ([92.247.61.126]:48040 helo=tone.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 1n7iVB-000Bc0-1f; Wed, 12 Jan 2022 20:35:43 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/5] python3-asyncio-throttle: Add recipe Date: Wed, 12 Jan 2022 20:35:27 +0200 Message-Id: <20220112183531.2712341-1-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-OutGoing-Spam-Status: No, score=-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, 12 Jan 2022 18:35:47 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94789 Add asyncio-throttle: a simple, easy-to-use throttler for asyncio. Signed-off-by: Leon Anavi --- .../python/python3-asyncio-throttle_1.0.2.bb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb diff --git a/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb b/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb new file mode 100644 index 000000000..1f907511a --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb @@ -0,0 +1,9 @@ +DESCRIPTION = "Simple, easy-to-use throttler for asyncio." +HOMEPAGE = "https://github.com/hallazzang/asyncio-throttle" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=c7906e56b70808e1ade6ca05e0bb48d5" + +SRC_URI[sha256sum] = "2675282e99d9129ecc446f917e174bc205c65e36c602aa18603b4948567fcbd4" + +inherit pypi setuptools3 From patchwork Wed Jan 12 18:35: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: 2351 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 725CBC433FE for ; Wed, 12 Jan 2022 18:35:47 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web09.1291.1642012546197156307 for ; Wed, 12 Jan 2022 10:35:47 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=gPaTw4M8; 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=a6pPOYwsIOM/eVGKe0OdTgUXPaIZvn3dF5q8udMCN2I=; b=gPaTw4M8GRtzjBNjtWtz/X10Ri R5fpVfiNS0TSlbgSmBeEW3C76q604hj3ZtWcpKllvIrg/OqOSIAy2vtg3OrG0+4TAQ039NQbLnjOj II1+3LYjSV97HgTgvfn6RHUtzEPs2m9+serlwrJyT0xWC8zYdocf5A1bFUyoA0iBXIKM9StfrXFei gIJTmtXsdi9rb2DaXuN8+9lbkfhPDL643CZw+Dm4Yw4sW94JE7Mr/6IjwgUgYONzEuqCE3zgXk7EK bVYKR+lpIOde6lixRtIpZe2Oo9FpJKa4FeKEs3MT9bSkUCsGMq13TOMo4HQ+j/itzZb87mkmTse3t J3cQpM4g==; Received: from lan.nucleusys.com ([92.247.61.126]:48040 helo=tone.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 1n7iVD-000Bc0-KE; Wed, 12 Jan 2022 20:35:46 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 2/5] python3-aiohue: Upgrade 3.0.1 -> 3.0.11 Date: Wed, 12 Jan 2022 20:35:28 +0200 Message-Id: <20220112183531.2712341-2-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220112183531.2712341-1-leon.anavi@konsulko.com> References: <20220112183531.2712341-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 ; Wed, 12 Jan 2022 18:35:47 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94790 Upgrade to release 3.0.11: - Add workaround for FOH switches - Fix short and long flash for lights - Fix reconnect last event id Signed-off-by: Leon Anavi --- .../{python3-aiohue_3.0.1.bb => python3-aiohue_3.0.11.bb} | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-aiohue_3.0.1.bb => python3-aiohue_3.0.11.bb} (56%) diff --git a/meta-python/recipes-devtools/python/python3-aiohue_3.0.1.bb b/meta-python/recipes-devtools/python/python3-aiohue_3.0.11.bb similarity index 56% rename from meta-python/recipes-devtools/python/python3-aiohue_3.0.1.bb rename to meta-python/recipes-devtools/python/python3-aiohue_3.0.11.bb index 757ab96c3..47d9964b0 100644 --- a/meta-python/recipes-devtools/python/python3-aiohue_3.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-aiohue_3.0.11.bb @@ -4,8 +4,12 @@ SECTION = "devel/python" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=dab31a1d28183826937f4b152143a33f" -SRC_URI[sha256sum] = "f4933b8583d093da4c2772c40c59d262892539c7053996cea5b964a2cceaa386" +SRC_URI[sha256sum] = "31c0b90d7dc2b62f5e1a93e78b2c0d6360ef6c0a87485c217a4f394c937fce7d" inherit pypi setuptools3 -RDEPENDS:${PN} += "${PYTHON_PN}-aiohttp" +RDEPENDS:${PN} += " \ + ${PYTHON_PN}-aiohttp \ + ${PYTHON_PN}-asyncio-throttle \ + ${PYTHON_PN}-profile \ +" From patchwork Wed Jan 12 18:35: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: 2352 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 53C8FC433EF for ; Wed, 12 Jan 2022 18:35:52 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web12.1285.1642012549520147628 for ; Wed, 12 Jan 2022 10:35:51 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=EsrgcsqG; 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=nLc3AH4u5qowNP8FdpZGaVvHvLXvjF1jNkmiF0P8MKg=; b=EsrgcsqGzNBs6alJdvbFItqY9S RypBOrMmVcaYDw3BTSVQaG85AeftTJh2NpB8o+g4yo7x+BtNyRJ8sb+KmELkTxwwzP6vI44EE++LB GnyGJitAqNVGmUNO3KC2h+TS5J0/hyhOnTP8T6aIoI0mAxNjV1xMUCveMVTnxSKUadqnjZds/oSK+ fg5TE2xEVEdW44CNWrSQ+lXuVvkRYaL1Fpq/XMdZT7uTh9bNnswk/Io5g6mgRHI3DgtWdSunOUnxA 5DUDXz04gjIlHzav6S7fvQsxjeEpvjn3JGBlH6I1d/K0t9oq78MZADFZpDnvtWEJJGZh0zNReGkXp BbF6+cjg==; Received: from lan.nucleusys.com ([92.247.61.126]:48040 helo=tone.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 1n7iVF-000Bc0-MH; Wed, 12 Jan 2022 20:35:48 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 3/5] python3-requests: Upgrade 2.26.0 -> 2.27.1 Date: Wed, 12 Jan 2022 20:35:29 +0200 Message-Id: <20220112183531.2712341-3-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220112183531.2712341-1-leon.anavi@konsulko.com> References: <20220112183531.2712341-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 ; Wed, 12 Jan 2022 18:35:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94792 Upgrade to release 2.27.1: - Fixed parsing issue that resulted in the auth component being dropped from proxy URLs. Signed-off-by: Leon Anavi --- .../{python3-requests_2.26.0.bb => python3-requests_2.27.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-requests_2.26.0.bb => python3-requests_2.27.1.bb} (86%) diff --git a/meta-python/recipes-devtools/python/python3-requests_2.26.0.bb b/meta-python/recipes-devtools/python/python3-requests_2.27.1.bb similarity index 86% rename from meta-python/recipes-devtools/python/python3-requests_2.26.0.bb rename to meta-python/recipes-devtools/python/python3-requests_2.27.1.bb index 406e42a5e..af52b7caf 100644 --- a/meta-python/recipes-devtools/python/python3-requests_2.26.0.bb +++ b/meta-python/recipes-devtools/python/python3-requests_2.27.1.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://python-requests.org" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" -SRC_URI[sha256sum] = "b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7" +SRC_URI[sha256sum] = "68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61" inherit pypi setuptools3 From patchwork Wed Jan 12 18:35: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: 2353 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 5779DC433FE for ; Wed, 12 Jan 2022 18:35:52 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web12.1288.1642012550596295283 for ; Wed, 12 Jan 2022 10:35:51 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=UHVMZHpd; 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=qEWob/immcpej2m43xRje6ak77UE95F32YtSMVl/3+M=; b=UHVMZHpdRCeP7ryiWRsV/YUHBH 6YsJZGW+XfkDml8GIUGgWxZyVHRi88UCK15oeRT82eYh1UkT8oGcTbbvs1CqHiXKS0f41hxitgWV8 lYbSLXqUklR/sKJbwlm4RRsk3vYKlL20Srmlsm91tJ8tzTs9C63UoOvRMjEvX5BDgxX3YZeDAT+jF VPyBsD8srcFXsF5UZKmQCr73T44mh1EJ82RfuLtdOIbpXg483Yelnk/GHQZ+VTVVNuVBA3Php7Q8l jhD+ALvQn6/L26fQgDX1B5DKF16FAQUfp4y6L2JboYR3YijwgaWw6iqpWj7UeK7QPoOPU5vR7fxDv pJg2uKAg==; Received: from lan.nucleusys.com ([92.247.61.126]:48040 helo=tone.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 1n7iVI-000Bc0-BA; Wed, 12 Jan 2022 20:35:50 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 4/5] python3-natsort: Upgrade 8.0.0 -> 8.0.2 Date: Wed, 12 Jan 2022 20:35:30 +0200 Message-Id: <20220112183531.2712341-4-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220112183531.2712341-1-leon.anavi@konsulko.com> References: <20220112183531.2712341-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 ; Wed, 12 Jan 2022 18:35:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94791 Upgrade to release 8.0.2: - Bug where sorting paths fail if one of the paths is '.'. - Compose unicode characters when using locale to ensure sorting is correct across all locales. Signed-off-by: Leon Anavi --- .../{python3-natsort_8.0.0.bb => python3-natsort_8.0.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-natsort_8.0.0.bb => python3-natsort_8.0.2.bb} (75%) diff --git a/meta-python/recipes-devtools/python/python3-natsort_8.0.0.bb b/meta-python/recipes-devtools/python/python3-natsort_8.0.2.bb similarity index 75% rename from meta-python/recipes-devtools/python/python3-natsort_8.0.0.bb rename to meta-python/recipes-devtools/python/python3-natsort_8.0.2.bb index 7c2b7deb6..1a54fcb24 100644 --- a/meta-python/recipes-devtools/python/python3-natsort_8.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-natsort_8.0.2.bb @@ -4,7 +4,7 @@ LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=58db8ac9e152dd9b700f4d39ff40a31a" PYPI_PACKAGE = "natsort" -SRC_URI[sha256sum] = "a0a4fd71aee20a6d648da61e01180a63f7268e69983d0440bd3ad80ef1ba6981" +SRC_URI[sha256sum] = "feb87e0ce1dc1f8f3f21e18a85216c790e746d76a5ff6889563394605f504a2b" inherit pypi setuptools3 From patchwork Wed Jan 12 18:35:31 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 2354 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 61DDDC4332F for ; Wed, 12 Jan 2022 18:35:54 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web12.1289.1642012552621920378 for ; Wed, 12 Jan 2022 10:35:54 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=BcU2Xgb/; 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=HNChUEKzvhtxwrhNfzZUGfY/3hTMxw9koM5Hm4UExMg=; b=BcU2Xgb/Fp2dh/qF3GUdBkEaLF B+MD2s+dU7c6ocN0M1K9lQAc7qc1V55VGOmizPOQhT5KgffxRrfps6xDNNF6l+DYMBbeULTr7U2/N od3XV0Ueo2mgfW/BihXvTR1wi6a8MtF3PMGMWPPDNMV/MEOlFgTTrpnZezQSAD4fvmCfz09RpuZO2 P+9VliesWg9ZH1eJnEOXm+6AIBWsfU+8IisXbvSkkTTcLx0g0SXTLVSy4rKLw2MFoEc8wG1XcKVEA tScthOeVxgWZi7IIWxZGETQGuDZQYDOQQQHCYyjV9ndY4KoeHTR7cFnwYOXtr8Ebos3XP/vIWbDxw vZbCdGTQ==; Received: from lan.nucleusys.com ([92.247.61.126]:48040 helo=tone.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 1n7iVK-000Bc0-Aw; Wed, 12 Jan 2022 20:35:52 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 1.4.3 -> 1.5.2 Date: Wed, 12 Jan 2022 20:35:31 +0200 Message-Id: <20220112183531.2712341-5-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220112183531.2712341-1-leon.anavi@konsulko.com> References: <20220112183531.2712341-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 ; Wed, 12 Jan 2022 18:35:54 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/94793 Upgrade to release 1.5.2: - Record event_processor client reports - Add a Quart integration - Sanic v21.12 support - Support Celery abstract tasks Signed-off-by: Leon Anavi --- ...{python3-sentry-sdk_1.4.3.bb => python3-sentry-sdk_1.5.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-sentry-sdk_1.4.3.bb => python3-sentry-sdk_1.5.2.bb} (82%) diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.4.3.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.5.2.bb similarity index 82% rename from meta-python/recipes-devtools/python/python3-sentry-sdk_1.4.3.bb rename to meta-python/recipes-devtools/python/python3-sentry-sdk_1.5.2.bb index c5614a381..d1ea76b8a 100644 --- a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.4.3.bb +++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.5.2.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341" RDEPENDS:${PN} += "python3-urllib3" -SRC_URI[sha256sum] = "b9844751e40710e84a457c5bc29b21c383ccb2b63d76eeaad72f7f1c808c8828" +SRC_URI[sha256sum] = "7bbaa32bba806ec629962f207b597e86831c7ee2c1f287c21ba7de7fea9a9c46" PYPI_PACKAGE = "sentry-sdk"