From patchwork Thu Jun 26 14:47:40 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Leitner X-Patchwork-Id: 65675 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 4FC42C7EE30 for ; Thu, 26 Jun 2025 14:48:03 +0000 (UTC) Received: from out-189.mta0.migadu.com (out-189.mta0.migadu.com [91.218.175.189]) by mx.groups.io with SMTP id smtpd.web10.10012.1750949273534388469 for ; Thu, 26 Jun 2025 07:47:54 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@g0hl1n.net header.s=key1 header.b=U20fHQp/; spf=pass (domain: g0hl1n.net, ip: 91.218.175.189, mailfrom: dev@g0hl1n.net) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=g0hl1n.net; s=key1; t=1750949271; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=WJdMH/8tbps0EZIm47rPV0ygyoQDIW/6cVDgIdXRM6o=; b=U20fHQp/yIUZobq78yI2Dq0Xqi687WsDALBUxhDtSYxu8vK1ptiVyDrPhoPRa/Ps5Ie4Bc sdHJo8/6MbM7eq/E20zjMtaQPI/2H9aKHfAnA62Ffp4hNiPx1M2G8xORWUV7zknBEdn0hH QOCOig6nOM3JIbY/hY64AR9iVnIxmMU= From: Richard Leitner To: openembedded-devel@lists.openembedded.org Cc: Richard Leitner , Richard Leitner Subject: [meta-python][PATCH] python3-can: upgrade 4.4.2 -> 4.5.0 Date: Thu, 26 Jun 2025 16:47:40 +0200 Message-ID: <20250626144740.3775245-1-dev@g0hl1n.net> MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 26 Jun 2025 14:48:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118126 python3-can 4.4.y requires msgpack~=1.0.0, but openembedded-core versions newer than scarthgap provide msgpack 1.1.0 [1], causing "pip check" to fail with the following error: python-can 4.4.2 has requirement msgpack~=1.0.0; platform_system != "Windows", but you have msgpack 1.1.0. This patch resolves the issue by updating python3-can to 4.5.0. [1] https://layers.openembedded.org/layerindex/recipe/66997/ Signed-off-by: Richard Leitner --- .../python/{python3-can_4.4.2.bb => python3-can_4.5.0.bb} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-can_4.4.2.bb => python3-can_4.5.0.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-can_4.4.2.bb b/meta-python/recipes-devtools/python/python3-can_4.5.0.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-can_4.4.2.bb rename to meta-python/recipes-devtools/python/python3-can_4.5.0.bb index 31190a9f1d..8e32cee622 100644 --- a/meta-python/recipes-devtools/python/python3-can_4.4.2.bb +++ b/meta-python/recipes-devtools/python/python3-can_4.5.0.bb @@ -4,13 +4,15 @@ SECTION = "devel/python" LICENSE = "LGPL-3.0-only" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e6a600fd5e1d9cbde2d983680233ad02" -SRC_URI[sha256sum] = "1c46c0935f39f7a9c3e76b03249af0580689ebf7a1844195e92f87257f009df5" +SRC_URI[sha256sum] = "d3684cebe5b028a148c1742b3a45cec4fcaf83a7f7c52d0680b2eaeaf52f8eb7" PYPI_PACKAGE = "python_can" UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" inherit pypi python_setuptools_build_meta +DEPENDS += "python3-setuptools-scm-native" + RDEPENDS:${PN} += "\ python3-aenum \ python3-asyncio \ @@ -21,6 +23,7 @@ RDEPENDS:${PN} += "\ python3-json \ python3-logging \ python3-misc \ + python3-msgpack \ python3-netserver \ python3-packaging \ python3-pkg-resources \