From patchwork Fri Dec 29 19:24:03 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 37097 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 58BC3C47077 for ; Fri, 29 Dec 2023 19:24:20 +0000 (UTC) Received: from mail-il1-f176.google.com (mail-il1-f176.google.com [209.85.166.176]) by mx.groups.io with SMTP id smtpd.web11.155958.1703877858010654336 for ; Fri, 29 Dec 2023 11:24:18 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.166.176, mailfrom: straka.derek@gmail.com) Received: by mail-il1-f176.google.com with SMTP id e9e14a558f8ab-35fc6eb9075so18197925ab.1 for ; Fri, 29 Dec 2023 11:24:17 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1703877856; x=1704482656; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=28lrFZGxtmb7eIUjlHPvc0jdx8cF37xhAww0IW23IGA=; b=KCtsRdKB9NQNp5zyT9sDuYvklyYpqL7u/YpOeltcirx8TWIFKoLbx2Sp6C6Iuc6eIt aa2WH/UYbj/w7V7H14wMj9NQdr62VJ0m66CxCpnLirt1Ynve3DuX3enHjqtRPwyyUwGF L0pGJGA3vMCzD+BC48my4OOTkIquW3I7ba29OeV7Kw4tuGOHV2NJ7253nUtWzjNhkuUa nkwqEe/nEmN6UmCDMFVffK2GiKozZR96Dmqojry9gsdpfoyV37y4ejmphiv7i/nxoL/a +923DB5qxNcNXUKv76eLgpGucwnZYhBsKANjGOMwLZ72i7llMugomOcsJ776sDPj9AAI RD/g== X-Gm-Message-State: AOJu0YwDxSGVQ6DW7BwCQvihyXctCRRjduwWZrGhoqWMJ6/B8qlIjcH0 2fgOh3/jdgkVyealJuMQUgqJAUTbpsiSpA== X-Google-Smtp-Source: AGHT+IGEIt0KNYrqSaSYo+dL06UspdK10liha04tVz/yGgx6pQxXA/A6uBnjRw9KRDRIzUdr2/zi2g== X-Received: by 2002:a05:6e02:1d84:b0:360:35f:55e1 with SMTP id h4-20020a056e021d8400b00360035f55e1mr4271930ila.31.1703877856307; Fri, 29 Dec 2023 11:24:16 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id cd8-20020a0566381a0800b0046ce5f7e87fsm4884599jab.136.2023.12.29.11.24.15 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 29 Dec 2023 11:24:15 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 1/5] python3-kmod: add comment about update to version 0.9.2 Date: Fri, 29 Dec 2023 19:24:03 +0000 Message-Id: <20231229192407.2736363-1-derek@asterius.io> X-Mailer: git-send-email 2.34.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 ; Fri, 29 Dec 2023 19:24:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/107900 Signed-off-by: Derek Straka --- meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb b/meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb index 2ec4d474b..52e1cf6af 100644 --- a/meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb +++ b/meta-python/recipes-devtools/python/python3-kmod_0.9.1.bb @@ -6,6 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6d62c2454850386a2ffe44f72db83d74" inherit pypi setuptools3 +RECIPE_NO_UPDATE_REASON = "Version 0.9.2 is broken when using latest build machinery for C extensions" SRC_URI[sha256sum] = "f3bf829059bf88eca22f4f549e17aa316cdaa14302bf2ba49ddeee60cea109ff" DEPENDS += " \ From patchwork Fri Dec 29 19:24:04 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 37096 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 577EDC47074 for ; Fri, 29 Dec 2023 19:24:20 +0000 (UTC) Received: from mail-io1-f53.google.com (mail-io1-f53.google.com [209.85.166.53]) by mx.groups.io with SMTP id smtpd.web11.155959.1703877859613577686 for ; Fri, 29 Dec 2023 11:24:19 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.166.53, mailfrom: straka.derek@gmail.com) Received: by mail-io1-f53.google.com with SMTP id ca18e2360f4ac-7baa8097064so256139439f.3 for ; Fri, 29 Dec 2023 11:24:19 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1703877858; x=1704482658; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=EXjlFkGd3cjLkOn4qfm+T/nxL/Cu6gSxLkGzFLV8QRk=; b=UGbjHCwY9EODjzzL7y3H1eqzUzYEdWzwVGRk3ZC//w4ExJHVdTMXxPuCidEFCVHswX eheiro8bHeexmNdy4rmTw9C0zbDw1Nk/uu3VccROY/+IJ/uqcOY+ObS8fF7CuZiuDaKF P/B99YGAWFGCq+Ha0u7RNo9V/KCR9U8YJfVJglmNd9Hd0Q9X+Hob7bD0ajaWIuEoDZTd K+RcCT+RbTUbo7hlSQoj4ECNSfxEQ4Yk8x1HC967G68jeFj/HejIc8xrt90rb9Fvx3/T akGyhEEn2jTbWRD21XkEe3FJp6S8qExUHNyuqjr/Ltwe49xbVEdwHK+bQnHSWsKc9gY0 ZCwQ== X-Gm-Message-State: AOJu0YwtLFhF3Maiuh1bc8IqEuQWxdn0hFQqVGwE/5HaQMVqbj2rOX1G /TvMmLVwOkAbkzb0EewKFcSMij6VrYi+hA== X-Google-Smtp-Source: AGHT+IEmWcmO2iQ/X9wC8KOuPtUc7yGdwIuOugF5vFKra3oWmIGt5FC9belBoL+yy2dBwBTRa9gGJg== X-Received: by 2002:a6b:d816:0:b0:7ba:9550:8b3a with SMTP id y22-20020a6bd816000000b007ba95508b3amr12783858iob.12.1703877857903; Fri, 29 Dec 2023 11:24:17 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id cd8-20020a0566381a0800b0046ce5f7e87fsm4884599jab.136.2023.12.29.11.24.16 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 29 Dec 2023 11:24:16 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 2/5] python3-engineio: update to version 4.8.1 Date: Fri, 29 Dec 2023 19:24:04 +0000 Message-Id: <20231229192407.2736363-2-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20231229192407.2736363-1-derek@asterius.io> References: <20231229192407.2736363-1-derek@asterius.io> 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 ; Fri, 29 Dec 2023 19:24:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/107901 Signed-off-by: Derek Straka --- .../{python3-engineio_4.8.0.bb => python3-engineio_4.8.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-engineio_4.8.0.bb => python3-engineio_4.8.1.bb} (82%) diff --git a/meta-python/recipes-devtools/python/python3-engineio_4.8.0.bb b/meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb similarity index 82% rename from meta-python/recipes-devtools/python/python3-engineio_4.8.0.bb rename to meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb index 1cc79f1a9..f88a3acf1 100644 --- a/meta-python/recipes-devtools/python/python3-engineio_4.8.0.bb +++ b/meta-python/recipes-devtools/python/python3-engineio_4.8.1.bb @@ -17,4 +17,4 @@ RDEPENDS:${PN} += " \ python3-asyncio \ " -SRC_URI[sha256sum] = "2a32585d8fecd0118264fe0c39788670456ca9aa466d7c026d995cfff68af164" +SRC_URI[sha256sum] = "fadc39c66348f96476d8dc2d7aaee7ea0a39d96e333217f5321300677b980121" From patchwork Fri Dec 29 19:24:05 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 37098 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 411E4C47074 for ; Fri, 29 Dec 2023 19:24:30 +0000 (UTC) Received: from mail-io1-f42.google.com (mail-io1-f42.google.com [209.85.166.42]) by mx.groups.io with SMTP id smtpd.web11.155960.1703877861348168878 for ; Fri, 29 Dec 2023 11:24:21 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.166.42, mailfrom: straka.derek@gmail.com) Received: by mail-io1-f42.google.com with SMTP id ca18e2360f4ac-7bb0ab8e79fso127212939f.1 for ; Fri, 29 Dec 2023 11:24:21 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1703877860; x=1704482660; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=DXpD6xJQvR82WHA0DlD3qYttpBEHFmGYHPpr9dWBbos=; b=d/jcJytfteClLWXUJhSvn4oua//up8bSALFwyxCgt38d07PSB0zouwWOYij5wcQnap e5J/xU30rNNBl572VCAMJcNFVv7HpyoQsVNz98zaqe9N1sQAuSWOm52btTEDvJUj7Qt4 VH9NNQo2bO67SrdBMts01h0/TAmvp77EWSnWAHp59vCQOcptw+7Sib5OBllEA1s8jqdv cWsR4rrbzgZGR+ip5L0FY3kmeow7CML1rEV0BbTxm0LbPc5fYWn4krw+rR7GIiXUVkXJ OkKZFMd+ZdRXPlumZuuUl8Hvv7AHrqVHuHSULTR5VCZt3T5nE4xb1DqtiXqbWP+LvqGB t+/w== X-Gm-Message-State: AOJu0Yx+N3oDwPAKGX5GIYy3oHlswOK8Rw3yEVHgDlMAFXtp5rh0sGKy POuXIvOdDKVzYfDVNRl5WaIa8nnrX589jA== X-Google-Smtp-Source: AGHT+IE4Egbb2aTcel58xXb4z7BwdiKqrYZ7YuDE7c4OVmnmg0mYDX6a9Hgj6uG4pK4n0eU+URNvyA== X-Received: by 2002:a05:6602:4897:b0:7ba:db6f:6af with SMTP id ee23-20020a056602489700b007badb6f06afmr13121393iob.23.1703877859817; Fri, 29 Dec 2023 11:24:19 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id cd8-20020a0566381a0800b0046ce5f7e87fsm4884599jab.136.2023.12.29.11.24.18 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 29 Dec 2023 11:24:18 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 3/5] python3-sqlalchemy: update to version 2.0.24 Date: Fri, 29 Dec 2023 19:24:05 +0000 Message-Id: <20231229192407.2736363-3-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20231229192407.2736363-1-derek@asterius.io> References: <20231229192407.2736363-1-derek@asterius.io> 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 ; Fri, 29 Dec 2023 19:24:30 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/107902 Signed-off-by: Derek Straka --- ...ython3-sqlalchemy_2.0.23.bb => python3-sqlalchemy_2.0.24.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-sqlalchemy_2.0.23.bb => python3-sqlalchemy_2.0.24.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.23.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.24.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.23.bb rename to meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.24.bb index ce216b016..91ab762eb 100644 --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.23.bb +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.24.bb @@ -4,7 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=b707d50badb798e1d897f2c8f649382d" -SRC_URI[sha256sum] = "c1bda93cbbe4aa2aa0aa8655c5aeda505cd219ff3e8da91d1d329e143e4aff69" +SRC_URI[sha256sum] = "6db97656fd3fe3f7e5b077f12fa6adb5feb6e0b567a3e99f47ecf5f7ea0a09e3" PYPI_PACKAGE = "SQLAlchemy" inherit pypi setuptools3 From patchwork Fri Dec 29 19:24:06 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 37100 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 48E22C47077 for ; Fri, 29 Dec 2023 19:24:30 +0000 (UTC) Received: from mail-il1-f175.google.com (mail-il1-f175.google.com [209.85.166.175]) by mx.groups.io with SMTP id smtpd.web11.155961.1703877862743815274 for ; Fri, 29 Dec 2023 11:24:22 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.166.175, mailfrom: straka.derek@gmail.com) Received: by mail-il1-f175.google.com with SMTP id e9e14a558f8ab-35fe994dab5so26478595ab.0 for ; Fri, 29 Dec 2023 11:24:22 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1703877861; x=1704482661; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=igeNbh73CvgSRFHZWPDe2adD5+HrcB8msXpTW5KBUyE=; b=i3J17dawhH6CGlT+m7AZsSoIjatxnhrxtaGh5FrgqGzlX8340f5+aNemcItw2xlR6M S/Vs7tsYHJryeDxufuwaC/woTUg2chUoJT2ocUr3bIaN/iEhdx+TvYkcAFugPGQAJ+eo eheVFF9dsBq16DYIdZ0kstUzqYGnhaj1iWYUINkj9GlbRTR0rNqvP7MbsXVb2+0vv0wM re0xeW8OYnOYzNVOyklxDdzrd0u48oo1Zp4PeAVO5ILvW4CaFvoFVgjbo2hs80gkBgBf 3AWjmPZAItVE/EWioOiFnYfDSzMkRVgKSysBSchMQxpwh3yxVNmtIgmLxxVbCbm9WK4i QlEg== X-Gm-Message-State: AOJu0Yw/zPjnL7vmPJkiVfliaORFE9FyGtSwUzfijZ7adMEUsCTW23by pTXmjn78ysFXY13ImsadwyP1KqheuUMs5w== X-Google-Smtp-Source: AGHT+IGP5iu6JOpLUAm9hTWWP2gPLU7yqV2nv044uhuYKL0eeleQCPmsuePdTlNyBdAYCoFqn+I2NA== X-Received: by 2002:a05:6e02:349f:b0:35f:eb24:6bbe with SMTP id bp31-20020a056e02349f00b0035feb246bbemr20992520ilb.41.1703877861210; Fri, 29 Dec 2023 11:24:21 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id cd8-20020a0566381a0800b0046ce5f7e87fsm4884599jab.136.2023.12.29.11.24.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 29 Dec 2023 11:24:20 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 4/5] python3-pdm-backend: update to version 2.1.8 Date: Fri, 29 Dec 2023 19:24:06 +0000 Message-Id: <20231229192407.2736363-4-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20231229192407.2736363-1-derek@asterius.io> References: <20231229192407.2736363-1-derek@asterius.io> 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 ; Fri, 29 Dec 2023 19:24:30 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/107903 Signed-off-by: Derek Straka --- ...ython3-pdm-backend_2.1.7.bb => python3-pdm-backend_2.1.8.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pdm-backend_2.1.7.bb => python3-pdm-backend_2.1.8.bb} (80%) diff --git a/meta-python/recipes-devtools/python/python3-pdm-backend_2.1.7.bb b/meta-python/recipes-devtools/python/python3-pdm-backend_2.1.8.bb similarity index 80% rename from meta-python/recipes-devtools/python/python3-pdm-backend_2.1.7.bb rename to meta-python/recipes-devtools/python/python3-pdm-backend_2.1.8.bb index 679ecb0d4..f1f507243 100644 --- a/meta-python/recipes-devtools/python/python3-pdm-backend_2.1.7.bb +++ b/meta-python/recipes-devtools/python/python3-pdm-backend_2.1.8.bb @@ -4,7 +4,7 @@ LICENSE = "MIT" SECTION = "devel/python" LIC_FILES_CHKSUM = "file://LICENSE;md5=4a564297b3c5b629a528b92fd8ff61ea" -SRC_URI[sha256sum] = "d3b50ab6374557c1edc348135e0da5decef228ddf8c973a58e40f437cf3595ba" +SRC_URI[sha256sum] = "2487dfbd13f69d80fb4e6a08006a3ee68272833970813047dc5fcfacdfdc0151" inherit pypi python_setuptools_build_meta From patchwork Fri Dec 29 19:24:07 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Derek Straka X-Patchwork-Id: 37099 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 3B9B6C47073 for ; Fri, 29 Dec 2023 19:24:30 +0000 (UTC) Received: from mail-io1-f54.google.com (mail-io1-f54.google.com [209.85.166.54]) by mx.groups.io with SMTP id smtpd.web11.155962.1703877864124594879 for ; Fri, 29 Dec 2023 11:24:24 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: gmail.com, ip: 209.85.166.54, mailfrom: straka.derek@gmail.com) Received: by mail-io1-f54.google.com with SMTP id ca18e2360f4ac-7bade847536so187840539f.0 for ; Fri, 29 Dec 2023 11:24:24 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1703877862; x=1704482662; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=XJiWTmybyy61nFi+M8sBOgz52XCWp7S+PMLMsFVZg/s=; b=i4shBbQC3x1kAqtEihd220oNfBSTwxholRSV7DVnOUJ0Zrn6ZrLfaTaDpM+jMA0LMK WJRMe4tvKb/Y0tVk3SRGNP3Zzm8c94gg9d12d2PQRYdblaU5LreTE6XZrDFUXqaNm4LO beg4twJHT+8RS3kKSxQvTmo9w2rLR2ixZCzGsyks6YvUC6HIjHXdg7bvww7BVJY/13RT ftre5OjR2GGk4Av6v93nHJ5xLz2W0Au2RL/jPIlveAAQkQQjjdfETszQaNXicEBXv1UN FWTZXFYiO2N9cuOUR4fEwzXzVqbXOrHJkaXLMrmg1FYKHfs3pbqylNZd2rbR6HHbq1TV IT/w== X-Gm-Message-State: AOJu0YyEGFPsLXvYvY6CiKKXmIODdHn5YHRnw/XcvAwthc0xn4tCXuLb yCL/Ib4ZwaRkEAAwML+j8ciXhjgjXREFHA== X-Google-Smtp-Source: AGHT+IF59OkWe5mR4rr8nRybseFC+I4bK9ioB21cnkgP6pVzSgc3J7VujaMCs2VO/Y8X5e2N7OaCaQ== X-Received: by 2002:a5e:d714:0:b0:7bb:398d:d789 with SMTP id v20-20020a5ed714000000b007bb398dd789mr3821427iom.11.1703877862610; Fri, 29 Dec 2023 11:24:22 -0800 (PST) Received: from sparta.internal.asterius.io (c-73-228-213-122.hsd1.mn.comcast.net. [73.228.213.122]) by smtp.gmail.com with ESMTPSA id cd8-20020a0566381a0800b0046ce5f7e87fsm4884599jab.136.2023.12.29.11.24.21 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 29 Dec 2023 11:24:21 -0800 (PST) From: Derek Straka To: openembedded-devel@lists.openembedded.org Cc: Derek Straka Subject: [meta-python][PATCH 5/5] python3-cantools: update to version 39.4.1 Date: Fri, 29 Dec 2023 19:24:07 +0000 Message-Id: <20231229192407.2736363-5-derek@asterius.io> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20231229192407.2736363-1-derek@asterius.io> References: <20231229192407.2736363-1-derek@asterius.io> 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 ; Fri, 29 Dec 2023 19:24:30 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/107904 Signed-off-by: Derek Straka --- .../{python3-cantools_39.4.0.bb => python3-cantools_39.4.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-cantools_39.4.0.bb => python3-cantools_39.4.1.bb} (85%) diff --git a/meta-python/recipes-devtools/python/python3-cantools_39.4.0.bb b/meta-python/recipes-devtools/python/python3-cantools_39.4.1.bb similarity index 85% rename from meta-python/recipes-devtools/python/python3-cantools_39.4.0.bb rename to meta-python/recipes-devtools/python/python3-cantools_39.4.1.bb index e7cafe14b..e26405dd7 100644 --- a/meta-python/recipes-devtools/python/python3-cantools_39.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-cantools_39.4.1.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/cantools" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd" -SRC_URI[sha256sum] = "e38cf3972388436aa8e19ab985bfb19c2cb400d9ba882a5c070c3497629674cb" +SRC_URI[sha256sum] = "98c4d007a6d9803c6433c743c0240e73de930530f8255e1e21d2e20e8991a30b" PYPI_PACKAGE = "cantools"