From patchwork Sat Feb 19 16:40:05 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3814 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 9B7BDC433F5 for ; Sat, 19 Feb 2022 16:40:27 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web10.11891.1645288826440853603 for ; Sat, 19 Feb 2022 08:40:26 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=bgv4TiTU; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailnew.west.internal (Postfix) with ESMTP id A4CA52B000E8; Sat, 19 Feb 2022 11:40:25 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Sat, 19 Feb 2022 11:40:25 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:message-id:mime-version:reply-to:sender :subject:subject:to:to:x-me-proxy:x-me-proxy:x-me-sender :x-me-sender:x-sasl-enc; s=fm2; bh=+rmo5y9pzY+6tLWKqX+0HuNqER5OF aydKuuCGi9pZBM=; b=bgv4TiTUF79rsGy+4Tle/eTRLc95YWou6+eWhdfjKqlKm RrxFh7W875hlqJbDJp8BznwT1NZNfKL/VoR1fsjjj0wFPyWXm6u9ftyToj+oNdJc X+TU0y4E7uGBfKkUcci2Bt66F01FG27rk4J27stOqw6/CpVu9N0k2zWamEQdWWeg D8ujiW/p9BzHRLLk4D235yuym9N6L3oGEIR/eZyLbcGO4hiviCf+D4BwFPdVYHXP N5VQ67nA4K2gR/XPbUsx1kvoFsVUWEuBZfx5FKdsrbA4hnmDm2aj++JzFiCD1SOQ wErg7EDxes0LftqOkhGElNd9pJjPbRBOWq1NWYzig== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeltdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffoggfgsedtkeertdertd dtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhhtrdhk rhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpeeivdfhle dtieelieffuefgheekvdefffeihedvjeethfelhffftdehveekheevheenucevlhhushht vghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrdhkrh ihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:23 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 01/17] cooker: Fix typo "isn't" Date: Sat, 19 Feb 2022 17:40:05 +0100 Message-Id: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13368 Signed-off-by: Zygmunt Krynicki --- lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py index d1d4e325..d15b0eb8 100644 --- a/lib/bb/cooker.py +++ b/lib/bb/cooker.py @@ -607,7 +607,7 @@ class BBCooker: data.emit_env(env, envdata, True) logger.plain(env.getvalue()) - # emit the metadata which isnt valid shell + # emit the metadata which isn't valid shell for e in sorted(envdata.keys()): if envdata.getVarFlag(e, 'func', False) and envdata.getVarFlag(e, 'python', False): logger.plain("\npython %s () {\n%s}\n", e, envdata.getVar(e, False)) From patchwork Sat Feb 19 16:40:06 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3815 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 7962BC433EF for ; Sat, 19 Feb 2022 16:40:29 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web08.11628.1645288828405940616 for ; Sat, 19 Feb 2022 08:40:28 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=Auituatr; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute2.internal (compute2.nyi.internal [10.202.2.46]) by mailnew.west.internal (Postfix) with ESMTP id D38A72B000EA; Sat, 19 Feb 2022 11:40:27 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute2.internal (MEProxy); Sat, 19 Feb 2022 11:40:28 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=7z+Tdb Yho7i0wpzmRa4m7MROAbxNUGv1oBgVvLqEkFM=; b=AuituatrA36dLwZ5X/pDsH 0IuQe2o2XASKzQHx39AHSjAm2LHlCvXah2O8CQNFrvngOLZsR138/+uwHuDFy2do M9iOSPeb7hvFff6GoGric5yvLyjakR688+Ux7YDQ4Pl1TacpDwFYCqPo20t6YZVB 9laFOKMyvolivMxIUbl1gQfldijd04d+8H7mmpYMrIUkK2bT55LcEm01/zV0nGfk xWOBphs4cvNJs6XlG2UHsOkOHwahTC4HfchUnvZO7gC4+mblqNivK2oqEqYZpg5O 18GptPgJdh9n2mYjuVI0jtSk3p8puhKAsMeZYLc7OwuP3bOH5C2ie1PR0fGN87nw == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeltdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:26 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 02/17] cooker: Fix typo "tuples" Date: Sat, 19 Feb 2022 17:40:06 +0100 Message-Id: <20220219164021.8344-2-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:29 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13369 Signed-off-by: Zygmunt Krynicki --- lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py index d15b0eb8..2ed984d7 100644 --- a/lib/bb/cooker.py +++ b/lib/bb/cooker.py @@ -1763,7 +1763,7 @@ class CookerCollectFiles(object): def __init__(self, priorities, mc=''): self.mc = mc self.bbappends = [] - # Priorities is a list of tupples, with the second element as the pattern. + # Priorities is a list of tuples, with the second element as the pattern. # We need to sort the list with the longest pattern first, and so on to # the shortest. This allows nested layers to be properly evaluated. self.bbfile_config_priorities = sorted(priorities, key=lambda tup: tup[1], reverse=True) From patchwork Sat Feb 19 16:40:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3816 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 8BA13C433FE for ; Sat, 19 Feb 2022 16:40:31 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web11.11881.1645288830630662183 for ; Sat, 19 Feb 2022 08:40:30 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=cSdyu0lM; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailnew.west.internal (Postfix) with ESMTP id D07752B000EB; Sat, 19 Feb 2022 11:40:29 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute3.internal (MEProxy); Sat, 19 Feb 2022 11:40:30 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=pENkI0 QALoGSQoA6saL5l+YAIeFhTHSiVvdlKEr0nyo=; b=cSdyu0lMMvY8qUAMf7M3Uz CcBfh9V1VLTFsT6rJgWK1gczILTK5jQZvMONrOWpD02Zr02d/nyLCZvzgFvuNGaM a6fJDrTJuQuEFauITmZNuHNhr66VjAa6G+c8ypXPj4/dP5fFkjuNf6psnD6lwgB2 PRvoeQRdFCdrk3qQbXvmwAnm6bno24jB+/378UGIJKMWuR2hc50nAWr6wDHUGftd D5YTAKa0N2oIA622UHMMcbjL5AQJUjUfquJWNcpW0RJLrL2fN/5raIaxJzCeA8qi nXx9dqR3QuaM2hzlGJXa5n2XutHS+C7voEVbODLpzAoEMznjyBQI0Jhk+BlBKLCQ == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:28 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 03/17] cookerdata: Fix typo "normally" Date: Sat, 19 Feb 2022 17:40:07 +0100 Message-Id: <20220219164021.8344-3-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:31 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13370 Signed-off-by: Zygmunt Krynicki --- lib/bb/cookerdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py index a961f365..e4d91486 100644 --- a/lib/bb/cookerdata.py +++ b/lib/bb/cookerdata.py @@ -428,7 +428,7 @@ class CookerDataBuilder(object): for bbclass in bbclasses: data = _inherit(bbclass, data) - # Nomally we only register event handlers at the end of parsing .bb files + # Normally we only register event handlers at the end of parsing .bb files # We register any handlers we've found so far here... for var in data.getVar('__BBHANDLERS', False) or []: handlerfn = data.getVarFlag(var, "filename", False) From patchwork Sat Feb 19 16:40:08 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3817 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 78B95C433EF for ; Sat, 19 Feb 2022 16:40:33 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web12.11863.1645288832529870570 for ; Sat, 19 Feb 2022 08:40:32 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=XMFdK7A7; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute2.internal (compute2.nyi.internal [10.202.2.46]) by mailnew.west.internal (Postfix) with ESMTP id C93872B000F4; Sat, 19 Feb 2022 11:40:31 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute2.internal (MEProxy); Sat, 19 Feb 2022 11:40:32 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=3pRgnt cxk4GObuWGcak4iQJwx+n7mF+9d0tNp0NiHmg=; b=XMFdK7A79ROLrWHRt1Baty fCDqEGSRF8H/oUsm2ffeGNKL+9TpyGhRYOxrhl5AwfqfPJBHe2dadOujle/PbsE+ rnxZ61+DXDcl3DC+mk+73qnquyps6+32KZpn/hMxrHrWxzkGnn8YscbsW+wtbjT1 cLBXYMt54RhyRzHsZ8OBc398P3Ayt+GxqXBTKJ7kZgl8kv0TCGxOJjetEIDVSr/I B5CCrSqnTHiw2rUQAQuVgQqWvCRJ+bUQf8RLmSFYF2RPEl6f74bhIs0hAJ4anF+u lGZ8wZxe1UQjnOU4KmRjlQncTVizWi1AksHZTP0OhME9DTEo+bn3zMVQ8o5VhO2Q == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:30 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 04/17] daemonize: Fix typo "separate" Date: Sat, 19 Feb 2022 17:40:08 +0100 Message-Id: <20220219164021.8344-4-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:33 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13371 Signed-off-by: Zygmunt Krynicki --- lib/bb/daemonize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/daemonize.py b/lib/bb/daemonize.py index 40fabd0c..4957bfd4 100644 --- a/lib/bb/daemonize.py +++ b/lib/bb/daemonize.py @@ -82,7 +82,7 @@ def createDaemon(function, logfile): sys.stdout = so # Have stdout and stderr be the same so log output matches chronologically - # and there aren't two seperate buffers + # and there aren't two separate buffers sys.stderr = sys.stdout try: From patchwork Sat Feb 19 16:40:09 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3818 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 70FB5C433F5 for ; Sat, 19 Feb 2022 16:40:35 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web09.11828.1645288834593000879 for ; Sat, 19 Feb 2022 08:40:34 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=lAn2l1eg; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailnew.west.internal (Postfix) with ESMTP id 0B2872B000F5; Sat, 19 Feb 2022 11:40:33 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sat, 19 Feb 2022 11:40:34 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=3lN7OW r5ZhdI82WbG+/ZvKF7DsCPhnm4zDbRCjDTC4g=; b=lAn2l1egHIeGSugkSeLdwo 41m8gMaj2kJ28yIqTi/IDwh1uNA7Ge4DXsvLbWAt/jXBcqIel8bsQtt/Ti6RZqzv q8VdURFtDjR/kalwPCbkCeA4qjPVErZMdrIROCMThzYDGkerFnwFw09KfvVnn1ag nGf6KFs5QUDK+GAAO6W0rUvrPP/rOAahAeYHoanx7CXww4YI5xRMLphjM7/Z0VJt W2KMnjoB8e8SaW6oC1Aaq3V+X8y9AYfB6N3hZ8h7Fz/xt6VeouT6tcG9997R/SoV 1yz6w+OuZiKFTKVrkJjKkDTB1Vqow6I27I5R6GY0MMRIDDiz3P02X4PC+7eHfJXw == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:32 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 05/17] event: Fix typo "asynchronous" Date: Sat, 19 Feb 2022 17:40:09 +0100 Message-Id: <20220219164021.8344-5-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:35 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13372 Signed-off-by: Zygmunt Krynicki --- lib/bb/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/event.py b/lib/bb/event.py index 0454c753..c81e79f7 100644 --- a/lib/bb/event.py +++ b/lib/bb/event.py @@ -764,7 +764,7 @@ class LogHandler(logging.Handler): class MetadataEvent(Event): """ Generic event that target for OE-Core classes - to report information during asynchrous execution + to report information during asynchronous execution """ def __init__(self, eventtype, eventdata): Event.__init__(self) From patchwork Sat Feb 19 16:40:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3819 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 94386C433F5 for ; Sat, 19 Feb 2022 16:40:37 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web12.11864.1645288836408389321 for ; Sat, 19 Feb 2022 08:40:36 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=KgRUyHrE; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailnew.west.internal (Postfix) with ESMTP id D36472B000F6; Sat, 19 Feb 2022 11:40:35 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute3.internal (MEProxy); Sat, 19 Feb 2022 11:40:36 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=znElN8 UmR7+n4//nfW90F/sQC5mXGpLxbVcoX2PitKU=; b=KgRUyHrEnz7vBwVA9ZnDS4 yjg0KZPLVUNBoQVWhy42AhIZ84l7Dfb0orZSR+vdLhqYnoppLeI/WbXfxzRMbRHt V1/ZevgkovRtK9cQVQWoeyEUDFWQKcppWhfwk+KoFxtx7Mrea+V40s1E8wWVMakX VCnB7FeiJvcgMjrQaWGiYbUv3ismyrH/kqYP1zrrvgoh+cxs+QnbPFjJWtJAvWdT XqZ573BTFqALn/ZdbgK8fECe/NMKp5N+FnUD5cPmIEpDPFDX3MvF7sL2AtaYxJLF ZAUbwIEkffJHv5wm0NJciCQqtWuwqh2uKdcJHoxZV28ut+KiDR257h7NGS0MRqsg == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedunecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:34 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 06/17] event: Fix typo "occasionally" Date: Sat, 19 Feb 2022 17:40:10 +0100 Message-Id: <20220219164021.8344-6-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:37 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13373 Signed-off-by: Zygmunt Krynicki --- lib/bb/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/event.py b/lib/bb/event.py index c81e79f7..89215e3d 100644 --- a/lib/bb/event.py +++ b/lib/bb/event.py @@ -40,7 +40,7 @@ class HeartbeatEvent(Event): """Triggered at regular time intervals of 10 seconds. Other events can fire much more often (runQueueTaskStarted when there are many short tasks) or not at all for long periods of time (again runQueueTaskStarted, when there is just one long-running task), so this - event is more suitable for doing some task-independent work occassionally.""" + event is more suitable for doing some task-independent work occasionally.""" def __init__(self, time): Event.__init__(self) self.time = time From patchwork Sat Feb 19 16:40:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3820 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 72962C433FE for ; Sat, 19 Feb 2022 16:40:39 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web12.11865.1645288838272231649 for ; Sat, 19 Feb 2022 08:40:38 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=RzThEtCN; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute2.internal (compute2.nyi.internal [10.202.2.46]) by mailnew.west.internal (Postfix) with ESMTP id B21322B000EA; Sat, 19 Feb 2022 11:40:37 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute2.internal (MEProxy); Sat, 19 Feb 2022 11:40:37 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=qSFkkc DKfYhGMTEVAie+dAO8rtiAOwsPuEMwAG9+Yko=; b=RzThEtCNncCc+poTfvGkqE RHDj6z9hdVOULM5NGSPITmPNvASiXWKmivE/VT9hcWALec7y99M40yT2oQneTz44 2zNZeuGHwJcIZ/oGW6EIycqHwwZyVbQheEDbAAFFc0wjfRXRCiPPGPZduc920hwD T2030PbqaQourAff08W/3y1nYY5+RrFX9MSe1v3IchUsnyerVLnLbSwFJbdgN1ua wYtcUFJjlI2+UwyHEe6DB9KGtaxy1HH2k5/ccjnP8aYfbmF/NiuQ5ckJaWnsrO6q 4x9BebSATRsJr7Sg4d/bzfV1ZRMrERCJJTSQT3gAkr2Ezs8NXcIN6tUkK9uBmdDA == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedunecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:36 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 07/17] fetch2: Fix typo "conform" Date: Sat, 19 Feb 2022 17:40:11 +0100 Message-Id: <20220219164021.8344-7-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:39 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13374 Signed-off-by: Zygmunt Krynicki --- lib/bb/fetch2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py index d099cd10..18a71a07 100644 --- a/lib/bb/fetch2/__init__.py +++ b/lib/bb/fetch2/__init__.py @@ -182,7 +182,7 @@ class URI(object): Some notes about relative URIs: while it's specified that a URI beginning with :// should either be directly followed by a hostname or a /, the old URI handling of the - fetch2 library did not comform to this. Therefore, this URI + fetch2 library did not conform to this. Therefore, this URI class has some kludges to make sure that URIs are parsed in a way comforming to bitbake's current usage. This URI class supports the following: From patchwork Sat Feb 19 16:40:12 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3821 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 79B4AC433F5 for ; Sat, 19 Feb 2022 16:40:43 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web10.11893.1645288840189659696 for ; Sat, 19 Feb 2022 08:40:40 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=ATSys9pu; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailnew.west.internal (Postfix) with ESMTP id 9CD4F2B000EB; Sat, 19 Feb 2022 11:40:39 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sat, 19 Feb 2022 11:40:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=b4NtdA JSuoaCVXAaVNelFQwgCL/c8APGIVxrdhcH9Jg=; b=ATSys9puYChRmiFW/MqptO YhLUTB5cjQshXdw4giDphA11YYRGIahBhVC8Py68KP9R9RuNoemmiBjivLm32jq5 cHSHwAij2uJkvbEl6Gu/D0pTsik8mbIybDUzeUgFg/yg1ZdEow4frvjvlZDpV6Nl hPA8ILsXHvULxD8ych3maY+LK5zriQGKL/lohsZrFUHbUGkZt//J08O8oBcumGWr I2o1FqMphzfNdb+zVCQcSDh4AzyIIQbgYq2ZvTz+HaDkKiQsDlAQXNV7LhodUACK KRgYworEz+w5vsvoIy8gM2HGF8cFBPuZzXJeE8q5n/fB/Zgjsfb+KPbNy4iGrYXw == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedunecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:38 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 08/17] fetch2: Fix typo "processed" Date: Sat, 19 Feb 2022 17:40:12 +0100 Message-Id: <20220219164021.8344-8-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:43 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13375 Signed-off-by: Zygmunt Krynicki --- lib/bb/fetch2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py index 18a71a07..a7e84e0d 100644 --- a/lib/bb/fetch2/__init__.py +++ b/lib/bb/fetch2/__init__.py @@ -113,7 +113,7 @@ class MissingParameterError(BBFetchException): self.args = (missing, url) class ParameterError(BBFetchException): - """Exception raised when a url cannot be proccessed due to invalid parameters.""" + """Exception raised when a url cannot be processed due to invalid parameters.""" def __init__(self, message, url): msg = "URL: '%s' has invalid parameters. %s" % (url, message) self.url = url From patchwork Sat Feb 19 16:40:13 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3822 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 77DD3C433EF for ; Sat, 19 Feb 2022 16:40:43 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web11.11882.1645288842644304042 for ; Sat, 19 Feb 2022 08:40:42 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=oNwDDL5B; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailnew.west.internal (Postfix) with ESMTP id E600C2B000F4; Sat, 19 Feb 2022 11:40:41 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute5.internal (MEProxy); Sat, 19 Feb 2022 11:40:42 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=et5E4g lqSp42M+IKoV30RLR1xDg58gyj+LmfQPI4054=; b=oNwDDL5Br94+lGLBYGsvZh iPn59g5+sE+G56kxFTP6j6RxYWGPrrDZqYYhywcUZGf0nu6vJlqcRHCrNiq7Mdix 2YUyqSVJXzoVMWFvPYb/CJCIyD00EOA3/fMl9Z7tEelAwEoTau2epVo5pX88wfF2 K8YCx/lKhsIZS+nw9MnG/opll1cEEP/sEPalx+As3jftTJFAI0pqep5TlpMklKZr /KJmfoSd4U5tPRuk8S7QvV7sSfD7jHvfEJjMeyQhQm5f48UBQZW6OML0CJk9Llgj hb6nN6TmSUQEU/bx/T6tXLtXPhhU8VSga7W9kxPSMMBDfZcAtGTu+wOpBbuB8aGw == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeltdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:40 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 09/17] git: Remove duplicate "the" Date: Sat, 19 Feb 2022 17:40:13 +0100 Message-Id: <20220219164021.8344-9-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:43 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13376 Signed-off-by: Zygmunt Krynicki --- lib/bb/fetch2/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/fetch2/git.py b/lib/bb/fetch2/git.py index 836ef1c4..b3c5e6da 100644 --- a/lib/bb/fetch2/git.py +++ b/lib/bb/fetch2/git.py @@ -399,7 +399,7 @@ class Git(FetchMethod): if self._contains_lfs(ud, d, ud.clonedir) and self._need_lfs(ud): # Unpack temporary working copy, use it to run 'git checkout' to force pre-fetching - # of all LFS blobs needed at the the srcrev. + # of all LFS blobs needed at the srcrev. # # It would be nice to just do this inline here by running 'git-lfs fetch' # on the bare clonedir, but that operation requires a working copy on some From patchwork Sat Feb 19 16:40:14 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3823 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 71F88C433F5 for ; Sat, 19 Feb 2022 16:40:45 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web09.11831.1645288844244055486 for ; Sat, 19 Feb 2022 08:40:44 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=iXLR8QJT; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute2.internal (compute2.nyi.internal [10.202.2.46]) by mailnew.west.internal (Postfix) with ESMTP id AA9AF2B000FA; Sat, 19 Feb 2022 11:40:43 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute2.internal (MEProxy); Sat, 19 Feb 2022 11:40:43 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=RYAYR0 BBQwEOUdws/XRH9YDS3GbkPf0lfomknXsMnaE=; b=iXLR8QJTNd/fBj+fwg5Aez +Fur0dRv8I2KrH7v1OMsga66/5rrtP8v1g2Rd1YjnupVQoGLFWVAzj9bYsbkfnmR rovqf9rX7FD78P0zHrOHDSmAKSgvExvxamgP3oWpXi1uOouIr6+Vk/WVq3Is1rby tBYjMJH/M5i0CzZQR0a4gWwtGLJ/PIr87Xv5O6IeflbqsbjHjyCogv/GTRHTamj5 pfLpLmdCGOO16strKqZA7aEnK6f7nFjVtweddMKo6eHtSnkbOMjKEqM5ySI/ABDS Rga9DcMTv3Dj0T2TSUm+h4XCWJnm/07sx3+xcLQYjSVmLbRtmb24GTQ0/9kztAUA == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedvnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:42 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 10/17] persist_data: Fix typo "committed" Date: Sat, 19 Feb 2022 17:40:14 +0100 Message-Id: <20220219164021.8344-10-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:45 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13377 Signed-off-by: Zygmunt Krynicki --- lib/bb/persist_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/persist_data.py b/lib/bb/persist_data.py index 49c9a0d5..9e20a837 100644 --- a/lib/bb/persist_data.py +++ b/lib/bb/persist_data.py @@ -63,7 +63,7 @@ class SQLTable(collections.abc.MutableMapping): """ Decorator that starts a database transaction and creates a database cursor for performing queries. If no exception is thrown, the - database results are commited. If an exception occurs, the database + database results are committed. If an exception occurs, the database is rolled back. In all cases, the cursor is closed after the function ends. From patchwork Sat Feb 19 16:40:15 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3824 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 898D7C433F5 for ; Sat, 19 Feb 2022 16:40:47 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web11.11883.1645288846099635494 for ; Sat, 19 Feb 2022 08:40:46 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=TZLMTDdo; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailnew.west.internal (Postfix) with ESMTP id 86C712B000EB; Sat, 19 Feb 2022 11:40:45 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Sat, 19 Feb 2022 11:40:45 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=2JKv2a D6picwChHwUy+sA6kZHXba9jHEok8cwN1dAwk=; b=TZLMTDdodRVld9SW0l2ttD KUECeYFIpSgqa99fuCpZB0bO4niqV7pp8l1axGVw2J7Cg2SOkJO1viqwV37VeP3U W/Yrwa8DyrvMbGwGunNBLsqB52I/KGn0geRbyeRscntdRKKvnH2X0F3wqggHs15y 4BQsKA/bwqkJVH/QAtiz8atgPwxkCmgeA4GqJZUFawe75xVpeVa493ftP5DpRSfy Y99EYddzXPPdQ8zjVMQf/zMZn1LuF9gK6vRn4wBFNhIEgpaunJUSkkX5zgXOn2b+ VO0/dh2q+E007RpdyqjZMUJdzKL1Mwdj9MNZIGPjJNcuIIx6/GqDLiTYNcrOOxUw == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeltdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:44 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 11/17] process: Fix typo: "process" Date: Sat, 19 Feb 2022 17:40:15 +0100 Message-Id: <20220219164021.8344-11-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:47 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13378 Signed-off-by: Zygmunt Krynicki --- lib/bb/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/process.py b/lib/bb/process.py index af5d804a..be2c15a1 100644 --- a/lib/bb/process.py +++ b/lib/bb/process.py @@ -142,7 +142,7 @@ def _logged_communicate(pipe, log, input, extrafiles): while pipe.poll() is None: read_all_pipes(log, rin, outdata, errdata) - # Pocess closed, drain all pipes... + # Process closed, drain all pipes... read_all_pipes(log, rin, outdata, errdata) finally: log.flush() From patchwork Sat Feb 19 16:40:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3825 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 7295FC433EF for ; Sat, 19 Feb 2022 16:40:48 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web11.11884.1645288847942993574 for ; Sat, 19 Feb 2022 08:40:48 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=aFI1+UA+; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailnew.west.internal (Postfix) with ESMTP id 5DDE02B000E8; Sat, 19 Feb 2022 11:40:47 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute5.internal (MEProxy); Sat, 19 Feb 2022 11:40:47 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=f7lLj0 uphdgIf+SgyjoTuxLcWh5d8+t1PD1gg4oZi9w=; b=aFI1+UA+6xaWQgkDpMslKm 2cX+GjdNV3K/Pyncf4ztC0vDnZS0jXHfKkY+LrvQ1lZ3ZlYEh+CcpvKhgS1UeVQt JvL7saW5cANpQerVF35jG27anY3mDnKDtmjmYAoRQMGWFNLv4cTSAiaWqklBXZhu rzbloDWD4d4xJZVPxcsnyIl7n8dzeMHqpN3y6c+dnWtM0jV63bROnIuMGVIMjuoS rFDYGvIeXdciwK9vFQ3+4OTSYwoW6iycbhSD1YYDTnvcpnfAAE8UrvbhDnfISIz9 OdECrnR7ofRJs2ZnnaRTbR4xAP5X31kPYhQ4s4M3SaPoNqn1EUtmNfwlzwa6qZTQ == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeltdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedunecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:46 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 12/17] progress: Fix typo "wherever" Date: Sat, 19 Feb 2022 17:40:16 +0100 Message-Id: <20220219164021.8344-12-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:48 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13379 Signed-off-by: Zygmunt Krynicki --- lib/bb/progress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/progress.py b/lib/bb/progress.py index 52d704d6..9518be77 100644 --- a/lib/bb/progress.py +++ b/lib/bb/progress.py @@ -148,7 +148,7 @@ class MultiStageProgressReporter: for tasks made up of python code spread across multiple classes / functions - the progress reporter object can be passed around or stored at the object level and calls - to next_stage() and update() made whereever needed. + to next_stage() and update() made wherever needed. """ def __init__(self, d, stage_weights, debug=False): """ From patchwork Sat Feb 19 16:40:17 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3826 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 74960C433EF for ; Sat, 19 Feb 2022 16:40:50 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web08.11632.1645288849716630097 for ; Sat, 19 Feb 2022 08:40:49 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=ciK2/nrs; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailnew.west.internal (Postfix) with ESMTP id 2CEA42B000EB; Sat, 19 Feb 2022 11:40:49 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Sat, 19 Feb 2022 11:40:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=ztHyGX uQL99yz/xgIIM4Yn1ZkZIPh3TJoJWqL3vZlHQ=; b=ciK2/nrsv0woFRsdswTdqs QO7HvMUxHtP8aQ4/8PNTGBH95XVsrVGzmOX364jONxA2mGTtjQqboXUy125D/So/ hglzXKxbogrnQC9UtXH2CHvXCAoJ2XxtR6xcvrj5fulTVP/Q8fIXb8nu0d56LHDB tqNT3i2yNmIVjG8YGDoaUzFKsAEaERvzIweBvLYrpxyPpfOpkfSWvkEmcQEkU6zO I7/+Yu+XT8aZEWor9Py7jAxdOth9T0RETa6eteLmG9dpDjltlxe0aJnVdfXwywna ABInEpf9iZigBpky2fzO6qomMGJGpyWPa5W4nr+LON+EQm6VgkTHTcSwqEiZC66g == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeltdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedunecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:47 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 13/17] tinfoil: Fix typo "receive" Date: Sat, 19 Feb 2022 17:40:17 +0100 Message-Id: <20220219164021.8344-13-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:50 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13380 Signed-off-by: Zygmunt Krynicki --- lib/bb/tinfoil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/tinfoil.py b/lib/bb/tinfoil.py index 27a34154..c3ad9211 100644 --- a/lib/bb/tinfoil.py +++ b/lib/bb/tinfoil.py @@ -493,7 +493,7 @@ class Tinfoil: Wait for an event from the server for the specified time. A timeout of 0 means don't wait if there are no events in the queue. Returns the next event in the queue or None if the timeout was - reached. Note that in order to recieve any events you will + reached. Note that in order to receive any events you will first need to set the internal event mask using set_event_mask() (otherwise whatever event mask the UI set up will be in effect). """ From patchwork Sat Feb 19 16:40:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3827 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 752CAC433EF for ; Sat, 19 Feb 2022 16:40:52 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web08.11634.1645288851769604777 for ; Sat, 19 Feb 2022 08:40:51 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=PrWDjB+3; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailnew.west.internal (Postfix) with ESMTP id ECA7F2B000F4; Sat, 19 Feb 2022 11:40:50 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute5.internal (MEProxy); Sat, 19 Feb 2022 11:40:51 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=qxsDO/ PVoWQ9qg5a8rFc2deDo8HJkauY3XpLjGMLg0g=; b=PrWDjB+3R1BBgCr1eAxUq7 DPWV7JGjRSY3xDPCA4J61Tf1pPfnwzMZLhRppGy97moTAZPRHaqvsGEMOTG65a3P GCai2z+oESaN2G1a3UxmKJO6wDm3GZOTqcOPBx6ZMcblJQ3pbKoWTULKVZsvLcqR g0qH4TRG0mFmhBScNeIA4WfN2kjcx/wY14Hn8twBkIkrnUHsqW+zOGB1c/2NxVaU ZD4kJO2uuZ2cPytyjZXqmeJNCFP2gtvVC7AqqIZTA7KM+z2QZeUwLSMTKYCm5hp3 ctai7hNsGuMYMkFamo0/ertmxN5GRizlGK39bRxDSTNKP6EK+zHnH2hzZ3ymWvZg == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeltdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedvnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:49 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 14/17] tinfoil: Fix typo: "something" Date: Sat, 19 Feb 2022 17:40:18 +0100 Message-Id: <20220219164021.8344-14-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13381 Signed-off-by: Zygmunt Krynicki --- lib/bb/tinfoil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/tinfoil.py b/lib/bb/tinfoil.py index c3ad9211..02c0bab6 100644 --- a/lib/bb/tinfoil.py +++ b/lib/bb/tinfoil.py @@ -761,7 +761,7 @@ class Tinfoil: if parseprogress: parseprogress.update(event.progress) else: - bb.warn("Got ProcessProgress event for someting that never started?") + bb.warn("Got ProcessProgress event for something that never started?") continue if isinstance(event, bb.event.ProcessFinished): if self.quiet > 1: From patchwork Sat Feb 19 16:40:19 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3828 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 738DBC433F5 for ; Sat, 19 Feb 2022 16:40:54 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web09.11833.1645288853362469812 for ; Sat, 19 Feb 2022 08:40:53 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=LzzcPc+N; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailnew.west.internal (Postfix) with ESMTP id C266D2B000FB; Sat, 19 Feb 2022 11:40:52 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sat, 19 Feb 2022 11:40:52 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=3y+KjP SZxPZIt+U2IS4LrgD0vCKlBrszuFlIzVLctyM=; b=LzzcPc+NY/01Ee/G2pYPMm 8AYiB3x6XU01u9w6mR+b9DH2pjxYLEsdISdaRxa5KXGwd9slr0fgSjkriockIRle Oum8xuvayyvscp4gcbX/9odooRQ2aT/81Vzy54neAxBA7wA21T2g2xUubyJykqWz 6N6RDyyEiDNffY1KPMNISB8mnVrIus2WTp9+zminH3nWaGYhQpJcB+dQnMWFWfwn Yb/MDRemIYHACKWExQ5aGTAVopmIFV8NNka3i2zty0g83bJwPdAFa1h/flRg1Hv8 SdCIuG5sPWiZjcwOB/MiL60xZ7uQwdxMNG8Noq62y8qsG0+LBUPQio4riXL3i4yA == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedvnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:51 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 15/17] utils: Fix typo "dependency" Date: Sat, 19 Feb 2022 17:40:19 +0100 Message-Id: <20220219164021.8344-15-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:54 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13382 Signed-off-by: Zygmunt Krynicki --- lib/bb/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/utils.py b/lib/bb/utils.py index 128b3ab5..12e65b9f 100644 --- a/lib/bb/utils.py +++ b/lib/bb/utils.py @@ -253,7 +253,7 @@ def explode_dep_versions(s): """ Take an RDEPENDS style string of format: "DEPEND1 (optional version) DEPEND2 (optional version) ..." - skip null value and items appeared in dependancy string multiple times + skip null value and items appeared in dependency string multiple times and return a dictionary of dependencies and versions. """ r = explode_dep_versions2(s) From patchwork Sat Feb 19 16:40:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3829 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 752E2C433EF for ; Sat, 19 Feb 2022 16:40:55 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web11.11890.1645288855209081282 for ; Sat, 19 Feb 2022 08:40:55 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=dSq8274N; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailnew.west.internal (Postfix) with ESMTP id A03EF2B000EB; Sat, 19 Feb 2022 11:40:54 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute3.internal (MEProxy); Sat, 19 Feb 2022 11:40:54 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=0CgOYp 8XofUpaWtZDDJ4qChBJq9oBhleyaVMdI0qLHU=; b=dSq8274N/XC7GXPHya3ubn SrguMb4DH+PIZ5JREpFeSE6whcpTRIfashEnAClRHvXP2oXEVub4kJjHh+dvMLCM pwnhrzeBmLLynXP9CLwj1GpC9fi1s+UnsF4LsmM+s345HzmF6uS8M3pzZg0RjCw7 337FmlqvjhFaU4c2NKz14SWwxAY92VIz4ujGx+VKiUjOSwXca6LTmNOaFA+zbH0n e5GZifwr8VTa5qG+JZj40hjcK2Hatg34Dz/UPrEnQHJLiX+FqmLnZH6gG4c0GAol 72ngGINNgcPja0N4d0rpPJ6Q20qckUCw+5VGC303+ezTET5PT41zkmnmxfIWX61w == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpefgff fgjefffeeifeefheetvdduhfekueetgeeijedvheelhffhhffgleehfeeuheenucevlhhu shhtvghrufhiiigvpedvnecurfgrrhgrmhepmhgrihhlfhhrohhmpeiihihgmhhunhhtrd hkrhihnhhitghkiheshhhurgifvghirdgtohhm X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:53 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 16/17] utils: Fix typo "spawning" Date: Sat, 19 Feb 2022 17:40:20 +0100 Message-Id: <20220219164021.8344-16-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:55 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13383 Signed-off-by: Zygmunt Krynicki --- lib/bb/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/utils.py b/lib/bb/utils.py index 12e65b9f..084ef92c 100644 --- a/lib/bb/utils.py +++ b/lib/bb/utils.py @@ -381,7 +381,7 @@ def _print_exception(t, value, tb, realfile, text, context): error.append("Exception: %s" % ''.join(exception)) - # If the exception is from spwaning a task, let's be helpful and display + # If the exception is from spawning a task, let's be helpful and display # the output (which hopefully includes stderr). if isinstance(value, subprocess.CalledProcessError) and value.output: error.append("Subprocess output:") From patchwork Sat Feb 19 16:40:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 3830 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 74D66C433EF for ; Sat, 19 Feb 2022 16:40:57 +0000 (UTC) Received: from wnew1-smtp.messagingengine.com (wnew1-smtp.messagingengine.com [64.147.123.26]) by mx.groups.io with SMTP id smtpd.web09.11837.1645288857015871391 for ; Sat, 19 Feb 2022 08:40:57 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@messagingengine.com header.s=fm2 header.b=bcOX3qwS; spf=fail (domain: huawei.com, ip: 64.147.123.26, mailfrom: zygmunt.krynicki@huawei.com) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailnew.west.internal (Postfix) with ESMTP id 778F12B000F4; Sat, 19 Feb 2022 11:40:56 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sat, 19 Feb 2022 11:40:56 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding:date:date :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:sender:subject:subject:to:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=mIGxiw J8Z6UVZx6qTXyWNT+4Dbr+5CxO5w6+MdH3D2Q=; b=bcOX3qwSIdQ294zvV69bRg sutzKeXgwXPgWDH8b2TLZtdBuR3fKNQwSxskUihezYd8BOruCCcrvGYESHkndSO7 2iXyy1tKOECje8cE2Rk1U8vBBhb6qQaqAcUyJSclvMZ2OX2JxEDL5FLQhr9NliUw YYnjQxVmTIX5Ffj9mN5EJ6glMrhsk/gKgNHMBjJZNA7dpgYzlGbnWiiDv/x+lbWt wO3CWpu/cM0kRLwcdZ+rw19sDVAEzDFqZANjNCBZnYdkDH80hWy7gfGRpqZzfZg2 vyURYrn4gy8ElhFMyxb01fUJzCzFcpqQjqe/VZFD+Y4raLwUoDba0VEvJrXgL1cQ == X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrkedvgdeludcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecunecujfgurhephffvufffkffojghfggfgsedtkeertd ertddtnecuhfhrohhmpegkhihgmhhunhhtucfmrhihnhhitghkihcuoeiihihgmhhunhht rdhkrhihnhhitghkiheshhhurgifvghirdgtohhmqeenucggtffrrghtthgvrhhnpeeiie eukeevuedvjedtgfdvvedvtdfgleejleejvedvlefhffefteeludetfeelleenucffohhm rghinheprhgvmhhovhgvtghonhhnvggtthhiohhnhhdrhhhoshhtnecuvehluhhsthgvrh fuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomhepiiihghhmuhhnthdrkhhrhihn ihgtkhhisehhuhgrfigvihdrtghomh X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sat, 19 Feb 2022 11:40:55 -0500 (EST) From: Zygmunt Krynicki To: bitbake-devel@lists.openembedded.org Cc: Zygmunt Krynicki Subject: [PATCH 17/17] wget: Fix grammar "can happen" Date: Sat, 19 Feb 2022 17:40:21 +0100 Message-Id: <20220219164021.8344-17-zygmunt.krynicki@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> References: <20220219164021.8344-1-zygmunt.krynicki@huawei.com> MIME-Version: 1.0 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 ; Sat, 19 Feb 2022 16:40:57 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/bitbake-devel/message/13384 Signed-off-by: Zygmunt Krynicki --- lib/bb/fetch2/wget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/fetch2/wget.py b/lib/bb/fetch2/wget.py index 253cabce..767ee405 100644 --- a/lib/bb/fetch2/wget.py +++ b/lib/bb/fetch2/wget.py @@ -228,7 +228,7 @@ class Wget(FetchMethod): # We let the request fail and expect it to be # tried once more ("try_again" in check_status()), # with the dead connection removed from the cache. - # If it still fails, we give up, which can happend for bad + # If it still fails, we give up, which can happen for bad # HTTP proxy settings. fetch.connection_cache.remove_connection(h.host, h.port) raise urllib.error.URLError(err)