From patchwork Wed Feb 23 13:17:17 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 4157 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 3A6FEC433F5 for ; Wed, 23 Feb 2022 13:17:34 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web12.7232.1645622252076646828 for ; Wed, 23 Feb 2022 05:17:33 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=hgh7Q0m6; 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=t42HICMeyNl8+03dQ/K1S8FEteX/6uW+pqjJ8swL34E=; b=hgh7Q0m6sCES4BJwCjTGTONbPf 5meoN5WB5ynZDYIc7STYt4+pA0kquAuGtKBHpRcvfW2kdSAfY/zhhK2NIQjbctuljSB/wLj4mbqH+ 0X+zi2hFzqiGoU7gLALlfwF7uohOnFFO2/87bbdhrBSZ92K6zLQwzsJcK1cXU+Om7V/FPAH+fHelq tTZ7tSwEyzPS9O+7tVYLazMyFnoEHOgeCRzNtTBfZ7IAaiVlqz32e2Y73wxSwVN6oEsZt8JizI0O/ 0xQl64u4ws21D7//4YYwwuyDYSChl4/paOOmJrJuQd1fPx1I7116C6I2jfoGWX6qJdaPsis/cM+L4 srS/vZJQ==; Received: from lan.nucleusys.com ([92.247.61.126]:51954 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 1nMrYo-000Bp1-Tr; Wed, 23 Feb 2022 15:17:30 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/5] python3-ordered-set: Upgrade 4.0.2 -> 4.1.0 Date: Wed, 23 Feb 2022 15:17:17 +0200 Message-Id: <20220223131721.1683054-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 ; Wed, 23 Feb 2022 13:17:34 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/95477 Upgrade to release 4.1.0: - Packaged using flit. Wheels now exist, and setuptools is no longer required. - This package now has a typical package structure, instead of being a single module. The code is in ordered_set/__init__.py instead of ordered_set.py. - There is an ordered_set/py.typed so that type checkers know about the types. - Use the type aliases SetLike[T] and OrderedSetInitializer[T] to simplify some types. - Updated the way overloaded type signatures are written to what MyPy currently expects. - Minimum Python version is 3.7. License-Update: Update years Signed-off-by: Leon Anavi --- .../recipes-devtools/python/python3-ordered-set/run-ptest | 2 +- ...3-ordered-set_4.0.2.bb => python3-ordered-set_4.1.0.bb} | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) rename meta-python/recipes-devtools/python/{python3-ordered-set_4.0.2.bb => python3-ordered-set_4.1.0.bb} (57%) diff --git a/meta-python/recipes-devtools/python/python3-ordered-set/run-ptest b/meta-python/recipes-devtools/python/python3-ordered-set/run-ptest index f7b9d0907..c27a6c3c5 100644 --- a/meta-python/recipes-devtools/python/python3-ordered-set/run-ptest +++ b/meta-python/recipes-devtools/python/python3-ordered-set/run-ptest @@ -1,3 +1,3 @@ #!/bin/sh -pytest test.py +pytest test_ordered_set.py diff --git a/meta-python/recipes-devtools/python/python3-ordered-set_4.0.2.bb b/meta-python/recipes-devtools/python/python3-ordered-set_4.1.0.bb similarity index 57% rename from meta-python/recipes-devtools/python/python3-ordered-set_4.0.2.bb rename to meta-python/recipes-devtools/python/python3-ordered-set_4.1.0.bb index 323fe18fd..2740b3355 100644 --- a/meta-python/recipes-devtools/python/python3-ordered-set_4.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-ordered-set_4.1.0.bb @@ -1,10 +1,9 @@ SUMMARY = "A MutableSet that remembers its order, so that every entry has an index." HOMEPAGE = "http://github.com/LuminosoInsight/ordered-set" LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://MIT-LICENSE;md5=2b36be0d99854aa2ae292a800a7c1d4e" +LIC_FILES_CHKSUM = "file://MIT-LICENSE;md5=3bf5e1ad64c0d99032c3143361fa234e" -SRC_URI[md5sum] = "5d88f3870c32d4868b28c8fe833f7e74" -SRC_URI[sha256sum] = "ba93b2df055bca202116ec44b9bead3df33ea63a7d5827ff8e16738b97f33a95" +SRC_URI[sha256sum] = "694a8e44c87657c59292ede72891eb91d34131f6531463aab3009191c77364a8" inherit pypi setuptools3 ptest @@ -19,5 +18,5 @@ RDEPENDS:${PN}-ptest += " \ " do_install_ptest() { - cp -f ${S}/test.py ${D}${PTEST_PATH}/ + cp -f ${S}/test/test_ordered_set.py ${D}${PTEST_PATH}/ } From patchwork Wed Feb 23 13:17:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 4158 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 1160AC433EF for ; Wed, 23 Feb 2022 13:17:35 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web11.7367.1645622253863499203 for ; Wed, 23 Feb 2022 05:17:34 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=vdHdBpzW; 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=Eu+TUjfzbpdGM1n7ZyevDSrFyuWzItrcZsruCNiJGXo=; b=vdHdBpzWQHNJXnoNIlaMs/GHe6 MV7Ya9uGTYACAr2AWZv8yKBpjRMhjUC2RejXmtHscyi9kisNMbkpT5V2mrvGe8EPnLLt3+pP5r747 j9V7qI587RP2ag+DAtp1G+wgjbI7MvNnRog7VZ3OWbucnKXVwhobJJMfG40f+kKk+IdUtSiWz5qoT dy/ZF4lB6iq65Ef1yYVq1cM+hg/ojVavWJE85RmjynsJAaWxSIn/JkLvWTck3pyIivBGiWKKz+0NE UOHX6+mVIP65zDoJBgHmg6tULvBOXoCGIXhyY68T2hS5SiEnGH5yAwqenuNp1ASz+XyazCNNDDUFI h0GRr/hA==; Received: from lan.nucleusys.com ([92.247.61.126]:51954 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 1nMrYr-000Bp1-NH; Wed, 23 Feb 2022 15:17:33 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 2/5] python3-bitarray: Upgrade 2.3.6 -> 2.3.7 Date: Wed, 23 Feb 2022 15:17:18 +0200 Message-Id: <20220223131721.1683054-2-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220223131721.1683054-1-leon.anavi@konsulko.com> References: <20220223131721.1683054-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, 23 Feb 2022 13:17:35 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/95478 Upgrade to release 2.3.7: - add optional step argument to `.count()` method - add tests Signed-off-by: Leon Anavi --- .../{python3-bitarray_2.3.6.bb => python3-bitarray_2.3.7.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-bitarray_2.3.6.bb => python3-bitarray_2.3.7.bb} (77%) diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.3.6.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.3.7.bb similarity index 77% rename from meta-python/recipes-devtools/python/python3-bitarray_2.3.6.bb rename to meta-python/recipes-devtools/python/python3-bitarray_2.3.7.bb index d4fb6ed76..cac003a4f 100644 --- a/meta-python/recipes-devtools/python/python3-bitarray_2.3.6.bb +++ b/meta-python/recipes-devtools/python/python3-bitarray_2.3.7.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray" LICENSE = "PSF" LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d" -SRC_URI[sha256sum] = "3bfdb59ded15c961e6e3d5b7f167155cda053be2475ea8017461df0b4d820b7d" +SRC_URI[sha256sum] = "4da790ab193e993107f3ff0aebc4f8d6ad5196a19071fbafad16b02898a44fd7" inherit setuptools3 pypi From patchwork Wed Feb 23 13:17:19 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 4159 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 14AEDC433EF for ; Wed, 23 Feb 2022 13:17:39 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web10.7387.1645622256358004840 for ; Wed, 23 Feb 2022 05:17:38 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=IsAvYM/+; 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=WAV4bO17MQZEA8Hay5m5dDU+wXVV6jmKUMnMGWy2ntc=; b=IsAvYM/+/XmvNxldiBtGCoxTSz 7EktOc/Jza2xLvpf2uzRSoRPeRIxFTSCqAQppqqxUkZe9U/GuHTVRzJDUqag7R5ux93T18aube15w uW4mPIdAxY//26oBKPDQDsT4u7GqIe3AqVzE8wKzWFylsGPGqt3ePbaolDRwYOOXSqXziwr9AJzYe XLshWU/uDAmJgLAuiB883ib/a0GePu403IKBLl0wMd/lFtz+Trovpb4hUOh0EoOBd6DbNR5M8k9Ip Lf7pxL07QEDTXDoTcxCSI0ymrhU56X8XZwZCdWEhpMfm1NvnBF2TCv20yBn5hDDTmiyTZoGjqKCOe RWbuw2Hw==; Received: from lan.nucleusys.com ([92.247.61.126]:51954 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 1nMrYu-000Bp1-76; Wed, 23 Feb 2022 15:17:36 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 3/5] python3-pandas: Upgrade 1.4.0 -> 1.4.1 Date: Wed, 23 Feb 2022 15:17:19 +0200 Message-Id: <20220223131721.1683054-3-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220223131721.1683054-1-leon.anavi@konsulko.com> References: <20220223131721.1683054-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, 23 Feb 2022 13:17:39 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/95479 Upgrade to release 1.4.1: - Regression in Series.mask() with inplace=True and PeriodDtype and an incompatible other coercing to a common dtype instead of raising - Regression in assert_frame_equal() not respecting check_flags=False - Regression in DataFrame.loc() raising ValueError when indexing (getting values) on a MultiIndex with one level - Regression in Series.fillna() with downcast=False incorrectly downcasting object dtype - Regression in api.types.is_bool_dtype() raising an AttributeError when evaluating a categorical Series - Regression in DataFrame.iat() setting values leading to not propagating correctly in subsequent lookups - Regression when setting values with DataFrame.loc() losing Index name if DataFrame was empty before - Regression in join() with overlapping IntervalIndex raising an InvalidIndexError - Regression when setting values with Series.loc() raising with all False indexer and Series on the right hand side - Regression in read_sql() with a DBAPI2 connection that is not an instance of sqlite3.Connection incorrectly requiring SQLAlchemy be installed - Regression in DateOffset when constructing with an integer argument with no keywords (e.g. pd.DateOffset(n)) would behave like datetime.timedelta(days=0) - Fixed segfault in DataFrame.to_json() when dumping tz-aware datetimes in Python 3.10 - Stopped emitting unnecessary FutureWarning in DataFrame.sort_values() with sparse columns - Fixed window aggregations in DataFrame.rolling() and Series.rolling() to skip over unused elements - Fixed builtin highlighters in Styler to be responsive to NA with nullable dtypes - Bug in apply() with axis=1 raising an erroneous ValueError - Reverted performance speedup of DataFrame.corr() for method=pearson to fix precision regression Signed-off-by: Leon Anavi --- .../python/{python3-pandas_1.4.0.bb => python3-pandas_1.4.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pandas_1.4.0.bb => python3-pandas_1.4.1.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.4.0.bb b/meta-python/recipes-devtools/python/python3-pandas_1.4.1.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-pandas_1.4.0.bb rename to meta-python/recipes-devtools/python/python3-pandas_1.4.1.bb index 9b395440f..4877194a5 100644 --- a/meta-python/recipes-devtools/python/python3-pandas_1.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-pandas_1.4.1.bb @@ -6,7 +6,7 @@ HOMEPAGE = "http://pandas.pydata.org/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=3f23c5c092b74d245d48eeef72bc3fd2" -SRC_URI[sha256sum] = "cdd76254c7f0a1583bd4e4781fb450d0ebf392e10d3f12e92c95575942e37df5" +SRC_URI[sha256sum] = "8db93ec98ac7cb5f8ac1420c10f5e3c43533153f253fe7fb6d891cf5aa2b80d2" inherit pypi setuptools3 From patchwork Wed Feb 23 13:17:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 4160 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 293A4C433F5 for ; Wed, 23 Feb 2022 13:17:40 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web08.7333.1645622258658494857 for ; Wed, 23 Feb 2022 05:17:39 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=TFkhfNvr; 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=Hhp2bfH9EeqSYldZvfHDobEqbkVZd/dm8SIqYXLYuso=; b=TFkhfNvrPtK1XolL4C4PSUXeaV bTPcfkenKObHbcRmamVTABduPSrD6wLELUUB838XxSf3l96W3MTR4n3WLCbOO82UHCNXUc3b7lI+t hQcxL0ZGhPT7CBAD+p5xLh8L7matTh/PjoQ59ut053lcRlfujYdRsnKtTb8wd//6ekhbjWRnvGxwe fixdh3XfHeDNctN1BcJRDATbyCvwkspHA+Jg8bbIP1LAbqPjo1FNHe9/2HMqLDQ+LZZgSm4F0kN8K mF95fxiZ98qxj1jg/fhLe41xGVWC2/ngdtKop2g/BgFyMBZXF4OavTZlbRia/daje4d3oJS5b7Ubl vcyIJK8g==; Received: from lan.nucleusys.com ([92.247.61.126]:51954 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 1nMrYw-000Bp1-TP; Wed, 23 Feb 2022 15:17:38 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 4/5] python3-unidiff: Upgrade 0.7.0 -> 0.7.3 Date: Wed, 23 Feb 2022 15:17:20 +0200 Message-Id: <20220223131721.1683054-4-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220223131721.1683054-1-leon.anavi@konsulko.com> References: <20220223131721.1683054-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, 23 Feb 2022 13:17:40 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/95480 Upgrade to release 0.7.3: - Fixed RE_BINARY_DIFF regex to make it a raw string - Fixed issue when parsing git diff header generated with --no-prefix - Improved git added/deleted file detection - Added newline optional param when parsing from_filename Signed-off-by: Leon Anavi --- .../{python3-unidiff_0.7.0.bb => python3-unidiff_0.7.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-unidiff_0.7.0.bb => python3-unidiff_0.7.3.bb} (85%) diff --git a/meta-python/recipes-devtools/python/python3-unidiff_0.7.0.bb b/meta-python/recipes-devtools/python/python3-unidiff_0.7.3.bb similarity index 85% rename from meta-python/recipes-devtools/python/python3-unidiff_0.7.0.bb rename to meta-python/recipes-devtools/python/python3-unidiff_0.7.3.bb index b3013180d..dd5b0c3eb 100644 --- a/meta-python/recipes-devtools/python/python3-unidiff_0.7.0.bb +++ b/meta-python/recipes-devtools/python/python3-unidiff_0.7.3.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://github.com/matiasb/python-unidiff" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=4c434b08ef42fea235bb019b5e5a97b3" -SRC_URI[sha256sum] = "91bb13b4969514a400679d9ae5e29a6ffad85346087677f8b5e2e036af817447" +SRC_URI[sha256sum] = "d5f2e53a9a00db3224a8c36349b5380e0e22d1aec6c694b14fb9483ee93c6205" inherit pypi setuptools3 ptest From patchwork Wed Feb 23 13:17:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 4161 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 12214C433EF for ; Wed, 23 Feb 2022 13:17:42 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web11.7368.1645622261063288363 for ; Wed, 23 Feb 2022 05:17:41 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=rxfEyEh2; 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=kph3ofNlxt+XdsXk95eYOFuIy784mUTsUnrcXDM4vrs=; b=rxfEyEh23wj3LdebVXdhyWbyli uoB+f3qLxtZ1qSbfAaD/ZGgwLv6XitDjIegR8jo7/eUCdZfk8KMm7uCtCYqvwPyY3NBDIsA/0kl9E jDHDrasI9hsOhYO7tuJsdWfGPpfb6BPJbWi1kthUK4FvyEdnVqTWDmTDvNXzy8GNQMIgtB6vC83Sq OV9s3iBUWhCq57pp+8vnYIsOUNmxFoJR4qN1kcOYklCa7F+0oPjijNJzg9jGrNEVdHGeY54BtQm4B uOWEfjqhP1yEqXrTvLIXjTMPMAaKI+JyYfaBvOS8ZE/ceqgvIthxTvgMQrKl6SQprtHWP7jFY2Yoa pBixI1IA==; Received: from lan.nucleusys.com ([92.247.61.126]:51954 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 1nMrYz-000Bp1-5H; Wed, 23 Feb 2022 15:17:40 +0200 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 5/5] python3-langtable: Upgrade to release 0.0.57 Date: Wed, 23 Feb 2022 15:17:21 +0200 Message-Id: <20220223131721.1683054-5-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220223131721.1683054-1-leon.anavi@konsulko.com> References: <20220223131721.1683054-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, 23 Feb 2022 13:17:42 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/95481 Upgrade to release 0.0.57: - Get translation changes from CLDR - Add more translations from CLDR - Replace "ibus/cangjie" with "ibus/table:cangjie" - Updates for Sami languages - Updates for Finnish keyboard layouts Signed-off-by: Leon Anavi --- ...{python3-langtable_0.0.56.bb => python3-langtable_0.0.57.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-langtable_0.0.56.bb => python3-langtable_0.0.57.bb} (86%) diff --git a/meta-python/recipes-devtools/python/python3-langtable_0.0.56.bb b/meta-python/recipes-devtools/python/python3-langtable_0.0.57.bb similarity index 86% rename from meta-python/recipes-devtools/python/python3-langtable_0.0.56.bb rename to meta-python/recipes-devtools/python/python3-langtable_0.0.57.bb index b8f052ea3..39819f435 100644 --- a/meta-python/recipes-devtools/python/python3-langtable_0.0.56.bb +++ b/meta-python/recipes-devtools/python/python3-langtable_0.0.57.bb @@ -6,7 +6,7 @@ SECTION = "devel/python" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" -SRC_URI[sha256sum] = "318af0fd616711ce5cd2a7b11a6761183ba9c1ff76a762919e08d85645fc854b" +SRC_URI[sha256sum] = "6c3c0a6577652c81871cbaf139046e1c88ead8439c585bd83976b3092f57e9d7" inherit pypi setuptools3 python3native