From patchwork Mon Aug 4 08:33:23 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68009 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 69FBFC87FCB for ; Mon, 4 Aug 2025 08:33:53 +0000 (UTC) Received: from esa2.hc1455-7.c3s2.iphmx.com (esa2.hc1455-7.c3s2.iphmx.com [207.54.90.48]) by mx.groups.io with SMTP id smtpd.web10.13434.1754296426957342607 for ; Mon, 04 Aug 2025 01:33:47 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=q/PBDR7e; spf=pass (domain: fujitsu.com, ip: 207.54.90.48, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296427; x=1785832427; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=t96u9+XleCHhMscjNsePmodISE8+jVUmaxfC8Yq4grE=; b=q/PBDR7eGAG9loPuPmAKUMWq1/fu/gF73oJnEcr/DsbKnux78d3BI3fS CFntVNN17XtkGmwXIcj+DCTyZEu2jh5p27KAW11ybMHPHJ9v3n0g4EVaZ ZHBJXlhsDgiVcKM1rv1Zlwb1PNeInGj0W2jt73zStX8RbNpp3nuMVP6wu EyaSJi2M3Asr1cDdZB5rFSjXECsE6RlR6Hw18P1577ggN33JMYCeIYm8P Q2v8Z/04hP6Jxk5G98q1Hm1hV+8QTqjuEjYm47HsQIbCUv4r/qZ40p1DW H+drIeeVqtwbnKnebTaiIXHHrR8Kop4zZo5E06rwYtf1UimcFgXd1cyxy w==; X-CSE-ConnectionGUID: ojdgDavBSuej/Ad3eEEEFw== X-CSE-MsgGUID: QoBSe+LvTCano6dtKUF/Ag== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="208301660" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="208301660" Received: from unknown (HELO az2uksmgr2.o.css.fujitsu.com) ([52.151.125.19]) by esa2.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:45 +0900 Received: from az2uksmgm3.o.css.fujitsu.com (unknown [10.151.22.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgr2.o.css.fujitsu.com (Postfix) with ESMTPS id 0A8AC8204F3 for ; Mon, 4 Aug 2025 08:33:45 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgm3.o.css.fujitsu.com (Postfix) with ESMTPS id 7459DC01812 for ; Mon, 4 Aug 2025 08:33:44 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 9AC8B1A0071; Mon, 4 Aug 2025 16:33:41 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-oe] [PATCH 01/18] aml: upgrade 0.3.0 -> 1.0.0 Date: Mon, 4 Aug 2025 16:33:23 +0800 Message-ID: <20250804083340.1649-1-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.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 ; Mon, 04 Aug 2025 08:33:53 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118834 From: Wang Mingyu Changelog: =========== - sys/queue.h: Remove "#include " - FUNDING.yml: Add github sponsors - Stop single-shot also when no cb is set - Replicate methods for every type - Use explicit types in callbacks - meson: Add run_command check argument - meson: Relocate headers and pkgconfig - kqueue: Call EV_SET without NOTE_ABSTIME on Mach - kqueue: Pass unspecified timeout as NULL - thread-pool: Make pthread_setcancelstate optional for Android - build: Make librt optional - Properly initialize global mutex Signed-off-by: Wang Mingyu --- meta-oe/recipes-graphics/aml/{aml_git.bb => aml_1.0.0.bb} | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) rename meta-oe/recipes-graphics/aml/{aml_git.bb => aml_1.0.0.bb} (91%) diff --git a/meta-oe/recipes-graphics/aml/aml_git.bb b/meta-oe/recipes-graphics/aml/aml_1.0.0.bb similarity index 91% rename from meta-oe/recipes-graphics/aml/aml_git.bb rename to meta-oe/recipes-graphics/aml/aml_1.0.0.bb index a0b27bd256..c88591f114 100644 --- a/meta-oe/recipes-graphics/aml/aml_git.bb +++ b/meta-oe/recipes-graphics/aml/aml_1.0.0.bb @@ -4,12 +4,9 @@ HOMEPAGE = "https://github.com/any1/aml" LICENSE = "ISC" LIC_FILES_CHKSUM = "file://COPYING;md5=e6f3cfaa39204b96e14b68b9d50d3e4e" -SRC_URI = "git://github.com/any1/aml;branch=master;protocol=https" - -SRCREV = "b83f3576ce4187d9285f06e9066ef43a691464d4" - -PV = "0.3.0+git" +SRC_URI = "git://github.com/any1/aml;branch=master;protocol=https;tag=v${PV}" +SRCREV = "685035c9830aa89df02a43df89b644690bd885f5" PACKAGECONFIG ??= "" PACKAGECONFIG[examples] = "-Dexamples=true,-Dexamples=false" From patchwork Mon Aug 4 08:33:24 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68010 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 75CF3C87FDB for ; Mon, 4 Aug 2025 08:33:53 +0000 (UTC) Received: from esa5.hc1455-7.c3s2.iphmx.com (esa5.hc1455-7.c3s2.iphmx.com [68.232.139.130]) by mx.groups.io with SMTP id smtpd.web10.13435.1754296427871557363 for ; Mon, 04 Aug 2025 01:33:48 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=fSrdg7DL; spf=pass (domain: fujitsu.com, ip: 68.232.139.130, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296428; x=1785832428; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=E4y+USHJlJMyuuBuyGhMEreNXkXzK+Hk6U79UFsptnw=; b=fSrdg7DLLYJtBnjcdg235fTLoeR9Pmoenlhd/TZM3BNsVI0V3SYQvetV 5MT7vL5zQLUIejCsktis6rrFXhla9I2ND8Nv9LxnV2fiI8K+9adA6Bk4f 6sVg9m2vyLYPXlmeiP5AK3eIyEmrvykw0+AZF7Ua32tlq+AFNv5JpVsRg 6rDpGVw7HiuUhYNsaYO/EV7/V/+56sH+EQuYx5BXZGmX8rNHKZO8XjUSh fvvLsja6T4/p1yr1aYNj3O+UqnkvP9sMU0mCvUJNO01WZ9UxzY82SzQVV BihN/nv2+CGOa3/UepkrxX5r4IWuZzLASTzewhKS1o0FJYOGj5pfV6PpQ g==; X-CSE-ConnectionGUID: TC0yv+onT0ikZa1b30WE8g== X-CSE-MsgGUID: uHndhTrCSTqCPoegpyy9bQ== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="207643576" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="207643576" Received: from unknown (HELO az2uksmgr2.o.css.fujitsu.com) ([52.151.125.128]) by esa5.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:46 +0900 Received: from az2uksmgm1.o.css.fujitsu.com (unknown [10.151.22.198]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgr2.o.css.fujitsu.com (Postfix) with ESMTPS id 36FF8820411 for ; Mon, 4 Aug 2025 08:33:46 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id A26F88606C6 for ; Mon, 4 Aug 2025 08:33:45 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id C37FA1A0073; Mon, 4 Aug 2025 16:33:42 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-oe] [PATCH 02/18] ctags: upgrade 6.2.20250713.0 -> 6.2.20250727.0 Date: Mon, 4 Aug 2025 16:33:24 +0800 Message-ID: <20250804083340.1649-2-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:33:53 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118835 From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../ctags/{ctags_6.2.20250713.0.bb => ctags_6.2.20250727.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-oe/recipes-devtools/ctags/{ctags_6.2.20250713.0.bb => ctags_6.2.20250727.0.bb} (95%) diff --git a/meta-oe/recipes-devtools/ctags/ctags_6.2.20250713.0.bb b/meta-oe/recipes-devtools/ctags/ctags_6.2.20250727.0.bb similarity index 95% rename from meta-oe/recipes-devtools/ctags/ctags_6.2.20250713.0.bb rename to meta-oe/recipes-devtools/ctags/ctags_6.2.20250727.0.bb index e830d3ded7..204778b3b2 100644 --- a/meta-oe/recipes-devtools/ctags/ctags_6.2.20250713.0.bb +++ b/meta-oe/recipes-devtools/ctags/ctags_6.2.20250727.0.bb @@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3" inherit autotools-brokensep pkgconfig manpages -SRCREV = "6ade39359729b121661ed985f5b0b1f86faaf122" +SRCREV = "2fd182cffd09614f9e23db9403e78d2884f42818" SRC_URI = "git://github.com/universal-ctags/ctags;branch=master;protocol=https;tag=p${PV}" From patchwork Mon Aug 4 08:33:25 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68008 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 6ACF7C87FDA for ; Mon, 4 Aug 2025 08:33:53 +0000 (UTC) Received: from esa5.hc1455-7.c3s2.iphmx.com (esa5.hc1455-7.c3s2.iphmx.com [68.232.139.130]) by mx.groups.io with SMTP id smtpd.web10.13435.1754296427871557363 for ; Mon, 04 Aug 2025 01:33:49 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=NgBimn8q; spf=pass (domain: fujitsu.com, ip: 68.232.139.130, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296429; x=1785832429; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=0IlcI1ZjxaAyRD7E+QckYu1iQHChBmKMtj8VlFpvxk4=; b=NgBimn8qITXhk+mE1pL6emvmvpmGqa+53hTBLBduQZ1+jYXNkyJMllpy P5tCEPfCmHbfbnrCU02aDfFFXkVSIuukHRaxRR2UOH3R3/QHBnfwbeEwU K6gDE71Wq2RPhqWY890f18G9LF6mvv4XUjVGH/1jT/BlQeQCzSov8s7El fNa53MyJpNYvH0deo4zy6ClUQ6TuIkfU9uLIL/o/8TrRPgF+R1dNUnLsq 5R6OleDRwZYcYQ8oZi7WcpvXeB+Vn+CrrEcONw/J7hvz6gxXsNq6gicfv E62Rd1hqZgmWie9RiHmjExWEEhLinwDGZIlZIKDCJkrlZUPGjeNCa7BiB g==; X-CSE-ConnectionGUID: VcsKHh3pQ4mMuIBXwnYFlg== X-CSE-MsgGUID: dZoI2ta/Rti2K865BBqSWA== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="207643579" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="207643579" Received: from unknown (HELO az2uksmgr4.o.css.fujitsu.com) ([52.151.125.19]) by esa5.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:47 +0900 Received: from az2uksmgm1.o.css.fujitsu.com (unknown [10.151.22.198]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgr4.o.css.fujitsu.com (Postfix) with ESMTPS id 70490C00561 for ; Mon, 4 Aug 2025 08:33:47 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2uksmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id DF4F683D94F for ; Mon, 4 Aug 2025 08:33:46 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 0706D1A0074; Mon, 4 Aug 2025 16:33:43 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-oe] [PATCH 03/18] graphviz: upgrade 13.1.0 -> 13.1.1 Date: Mon, 4 Aug 2025 16:33:25 +0800 Message-ID: <20250804083340.1649-3-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:33:53 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118836 From: Wang Mingyu Changelog: ============= - When built with PangoCairo, the Kitty plugin is now available in Graphviz static builds. Previously it was only available in shared library (on-demand plugin loading) builds. - The distributed Fedora and Rocky Linux packages now include the Kitty plugin. - On Windows, the GDI+ plugin is now available in Graphviz static builds. Previously it was only available in shared library (on-demand plugin loading) builds. - Processing a graph with GVPR no longer makes explicit the default '"\N"' label for nodes. This undoes a change from Graphviz 13.0.1. - 'nop' no longer preserves empty string labels. This undoes a change from Graphviz 13.0.1. - The order of programmatic calls to 'gvContext'/'gvContextPlugin' and 'agmemread' once again affects default node labels. This undoes a change from Graphviz 13.0.1. - Spline routing can now deal with horizontal and vertical lines. This removes some instances of the "Something is probably seriously wrong" warning. - Using 'layerselect' beyond layer 1 no longer causes crashes. - Correct parsing of a PDF file's '/MediaBox' section no longer depends on the internal 'BUFSIZ' constant. - Round tripping a graph through a file no longer causes it to acquire a default node label '\N'. Signed-off-by: Wang Mingyu --- .../graphviz/{graphviz_13.1.0.bb => graphviz_13.1.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-oe/recipes-graphics/graphviz/{graphviz_13.1.0.bb => graphviz_13.1.1.bb} (97%) diff --git a/meta-oe/recipes-graphics/graphviz/graphviz_13.1.0.bb b/meta-oe/recipes-graphics/graphviz/graphviz_13.1.1.bb similarity index 97% rename from meta-oe/recipes-graphics/graphviz/graphviz_13.1.0.bb rename to meta-oe/recipes-graphics/graphviz/graphviz_13.1.1.bb index d15cd7288f..f385280f6d 100644 --- a/meta-oe/recipes-graphics/graphviz/graphviz_13.1.0.bb +++ b/meta-oe/recipes-graphics/graphviz/graphviz_13.1.1.bb @@ -23,7 +23,7 @@ SRC_URI = "https://gitlab.com/api/v4/projects/4207231/packages/generic/${BPN}-re SRC_URI:append:class-nativesdk = "\ file://graphviz-setup.sh \ " -SRC_URI[sha256sum] = "13339b83ee5467001a035cfacd175702ac4b14f5d390f0d34e89437b29881278" +SRC_URI[sha256sum] = "6c49d7dda4329f5a35ce70035d1ec6602dadae7a7077cd7efe43cb57f4bc8f22" UPSTREAM_CHECK_URI = "https://graphviz.org/download/" UPSTREAM_CHECK_REGEX = "(?P\d+(\.\d+)+)" From patchwork Mon Aug 4 08:33:26 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68011 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 69412C87FDA for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa1.hc1455-7.c3s2.iphmx.com (esa1.hc1455-7.c3s2.iphmx.com [207.54.90.47]) by mx.groups.io with SMTP id smtpd.web10.13436.1754296434495116537 for ; Mon, 04 Aug 2025 01:33:54 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=abA8G1+O; spf=pass (domain: fujitsu.com, ip: 207.54.90.47, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296435; x=1785832435; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9ggcmxergY5sPOjVSK0SLp0bEZ/y23rLPPm51rY26zw=; b=abA8G1+ODXQV1iHWxMaDdhpz7zLBRI+TuvrbYMkjIgUEOQIzfNoEUlrC NPvt620aDZrQsj4G13FZ0nPNTYHThZo7NKFXo6pLTufR9DoQybvKt9HvF Emw0kQJ+zxCYcOxuV6bkG77pFD+G+APhPC2Q/tAod9mkL/TDL5Ejjoq5M pjWKQ6IW/MBZjLQF8SMKqpCXeeF8zsoL/tkXq3PIK9ULFuBlYoxYN0oY/ JCfegIqQkBnlNpN3NKRY9ZVnEl1PbBUPrm7BmhuzF2iKOIF8j/aeF8Q+Z MpGIcoCRIOTmGwiJAau4jxc4I9WvnAZeEIhaMTYl2ctzRSqsIyDOOCKiZ A==; X-CSE-ConnectionGUID: F9Ea3rQoTGKO0JaC3fhU+Q== X-CSE-MsgGUID: 5l2K965GSJK5xfHn+6/RAg== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="208387045" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="208387045" Received: from unknown (HELO az2nlsmgr3.o.css.fujitsu.com) ([51.138.80.169]) by esa1.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:53 +0900 Received: from az2nlsmgm3.fujitsu.com (unknown [10.150.26.205]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr3.o.css.fujitsu.com (Postfix) with ESMTPS id A347F1000346 for ; Mon, 4 Aug 2025 08:33:52 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgm3.fujitsu.com (Postfix) with ESMTPS id 1542D180033B for ; Mon, 4 Aug 2025 08:33:52 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id A2DC71A0071; Mon, 4 Aug 2025 16:33:48 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-perl] [PATCH 04/18] libnet-dns-perl: upgrade 1.51 -> 1.52 Date: Mon, 4 Aug 2025 16:33:26 +0800 Message-ID: <20250804083340.1649-4-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118837 From: Wang Mingyu Changelog: ========== - Refactor SVCB to avoid internal use of generic keyNN. - DELEG documentation and code improvement. - Fix rt.cpan.org: bug in resolver base selection on non-Unix/Linux platforms Signed-off-by: Wang Mingyu --- .../libnet/{libnet-dns-perl_1.51.bb => libnet-dns-perl_1.52.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-perl/recipes-perl/libnet/{libnet-dns-perl_1.51.bb => libnet-dns-perl_1.52.bb} (95%) diff --git a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.51.bb b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.52.bb similarity index 95% rename from meta-perl/recipes-perl/libnet/libnet-dns-perl_1.51.bb rename to meta-perl/recipes-perl/libnet/libnet-dns-perl_1.52.bb index 48dba40a8c..d0f8141794 100644 --- a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.51.bb +++ b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.52.bb @@ -9,7 +9,7 @@ DEPENDS += "perl" SRC_URI = "${CPAN_MIRROR}/authors/id/N/NL/NLNETLABS/Net-DNS-${PV}.tar.gz" -SRC_URI[sha256sum] = "40eec0b2866c67b86505a1c79cbb4b131c98c0bb59f305aa48959c89093d4503" +SRC_URI[sha256sum] = "c9884fcb08e4d03c23188d4e10836c2382fcb65b69859581a20845a3235a7203" UPSTREAM_CHECK_REGEX = "Net\-DNS\-(?P(\d+\.\d+))(?!_\d+).tar" From patchwork Mon Aug 4 08:33:27 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68017 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 8B484CA0EC2 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa8.hc1455-7.c3s2.iphmx.com (esa8.hc1455-7.c3s2.iphmx.com [139.138.61.253]) by mx.groups.io with SMTP id smtpd.web11.13466.1754296435477372958 for ; Mon, 04 Aug 2025 01:33:55 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=aHxspwsm; spf=pass (domain: fujitsu.com, ip: 139.138.61.253, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296434; x=1785832434; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=NBR6B5SJfDx4KfP8H3RkieSIognwZhsRY6uw+1+YkWE=; b=aHxspwsmF1Gi3UM/7n/6nYtOCMnVLdAJXS8rf+SGREuJYFKQ2iZXTNnc mhjrIIucQUfAKd2tClAxc0PrifWbMyulLQABrPF7319ZPKdFndewgzQJa kb4k3wk5ADSKClYORMqvTRIsTUi9Zgp9/lpHwNEMdD+Sf2yedLfvRMhyl vmtFg2xmnRnzrgW0k2EFzIt0sIMMYG/D18lGCgCC6TtkLQZPkjhtS/CVj UL1H8xwEvINi0/rtu/HQMcLUJWXf3Qx8NxqXKWjhXIqtUnTotTpEy6xqa WaA/bi+ZBHLXJG4PqNir+7apqeWCT1QjhQQ118o4sHkOM0bPwhabXxhHO Q==; X-CSE-ConnectionGUID: kU9DWFrBSOWk1c+e/t/phg== X-CSE-MsgGUID: sSBChNzmSNao46W7UsNzPA== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="196325405" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="196325405" Received: from unknown (HELO az2nlsmgr3.o.css.fujitsu.com) ([51.138.80.169]) by esa8.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:52 +0900 Received: from az2nlsmgm3.fujitsu.com (unknown [10.150.26.205]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr3.o.css.fujitsu.com (Postfix) with ESMTPS id C5C4D100034A for ; Mon, 4 Aug 2025 08:33:53 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2nlsmgm3.fujitsu.com (Postfix) with ESMTPS id 38C3F180033B for ; Mon, 4 Aug 2025 08:33:53 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 340731A0074; Mon, 4 Aug 2025 16:33:50 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-oe] [PATCH 05/18] lvm2: upgrade 2.03.33 -> 2.03.34 Date: Mon, 4 Aug 2025 16:33:27 +0800 Message-ID: <20250804083340.1649-5-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118838 From: Wang Mingyu Signed-off-by: Wang Mingyu --- meta-oe/recipes-support/lvm2/lvm2.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-support/lvm2/lvm2.inc b/meta-oe/recipes-support/lvm2/lvm2.inc index 4038e83d46..2e623df45d 100644 --- a/meta-oe/recipes-support/lvm2/lvm2.inc +++ b/meta-oe/recipes-support/lvm2/lvm2.inc @@ -18,8 +18,8 @@ SRC_URI = "git://sourceware.org/git/lvm2.git;branch=main \ file://0001-include-libgen.h-for-basename.patch \ " -SRCREV = "0e01a5d3ae1100a6641772ab295e0185d8d6a6b0" -PV = "2.03.33" +SRCREV = "f6abf8abe2bf8493806ed549e92fcc8d41ed8dfb" +PV = "2.03.34" UPSTREAM_CHECK_GITTAGREGEX = "v(?P\d+(\_\d+)+)" From patchwork Mon Aug 4 08:33:28 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68020 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 BFFF5CA0EC6 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa2.hc1455-7.c3s2.iphmx.com (esa2.hc1455-7.c3s2.iphmx.com [207.54.90.48]) by mx.groups.io with SMTP id smtpd.web10.13437.1754296436254496950 for ; Mon, 04 Aug 2025 01:33:56 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=Brs0Oh7r; spf=pass (domain: fujitsu.com, ip: 207.54.90.48, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296437; x=1785832437; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=GKoRYyqJ0a7/4ypJQEMmzldtTWtYsUlmjOnB6nJ1CbA=; b=Brs0Oh7rBTbpk7iFWUGX8wyqMf6kUn+4pqDpEjFjoe6kJXF4NoiBZZyG SWeipe/6qtMXU7HaIwz9CpSVYJXJ/vBEcLwEj1TY3dKzhOVUT/jlMi1aG OzWMFzpohzuEQZyPqXTvGR/lmCyhRPJlN1I+PuZC7IsczIU/h9xk1qlQ8 tJyMoSB5X0ojSE+oCUKwfppoIXBWq3cWtUU4/XFUWPMRO57W/q36ffgbW CJFW+T0CYOjTK/8YbKfBi7Y3b9ET0n/vsftKroXWZyHcSVh0IZP0lhbAX 14WV5rk2xhYV14vBfLscOEb9M9fysYfzVSyM69XDT2G3OIB+ZbBifWYvl A==; X-CSE-ConnectionGUID: bo5YH0KgRSe3uXbIzH3+2g== X-CSE-MsgGUID: 5Ivst3dUTba7eVIK1mcQZg== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="208301698" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="208301698" Received: from unknown (HELO az2uksmgr4.o.css.fujitsu.com) ([52.151.125.128]) by esa2.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:55 +0900 Received: from az2uksmgm1.o.css.fujitsu.com (unknown [10.151.22.198]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgr4.o.css.fujitsu.com (Postfix) with ESMTPS id 7ACEEC00406 for ; Mon, 4 Aug 2025 08:33:54 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2uksmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id E672D844BEC for ; Mon, 4 Aug 2025 08:33:53 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 061DA1A0073; Mon, 4 Aug 2025 16:33:50 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-networking] [PATCH 06/18] memcached: upgrade 1.6.38 -> 1.6.39 Date: Mon, 4 Aug 2025 16:33:28 +0800 Message-ID: <20250804083340.1649-6-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118839 From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../memcached/{memcached_1.6.38.bb => memcached_1.6.39.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-networking/recipes-support/memcached/{memcached_1.6.38.bb => memcached_1.6.39.bb} (95%) diff --git a/meta-networking/recipes-support/memcached/memcached_1.6.38.bb b/meta-networking/recipes-support/memcached/memcached_1.6.39.bb similarity index 95% rename from meta-networking/recipes-support/memcached/memcached_1.6.38.bb rename to meta-networking/recipes-support/memcached/memcached_1.6.39.bb index 9799b55a09..efcc6b4487 100644 --- a/meta-networking/recipes-support/memcached/memcached_1.6.38.bb +++ b/meta-networking/recipes-support/memcached/memcached_1.6.39.bb @@ -22,7 +22,7 @@ RDEPENDS:${PN} += "perl perl-module-posix perl-module-autoloader \ SRC_URI = "http://www.memcached.org/files/${BP}.tar.gz \ file://memcached-add-hugetlbfs-check.patch \ " -SRC_URI[sha256sum] = "334d792294e37738796b5b03375c47bb6db283b1152e2ea4ccb720152dd17c66" +SRC_URI[sha256sum] = "23e5507e933b15463161d4c5d3921b0c5f340b542d6edd7f6c5e17c34f11a363" CVE_STATUS[CVE-2022-26635] = "disputed: this is a problem of applications using php-memcached inproperly" From patchwork Mon Aug 4 08:33:29 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68021 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 B5BE2CA0EC5 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa7.hc1455-7.c3s2.iphmx.com (esa7.hc1455-7.c3s2.iphmx.com [139.138.61.252]) by mx.groups.io with SMTP id smtpd.web11.13467.1754296436870096092 for ; Mon, 04 Aug 2025 01:33:57 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=sTYx+jw9; spf=pass (domain: fujitsu.com, ip: 139.138.61.252, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296436; x=1785832436; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=U2zJEIuwh/hXekJ4WVk00WUhSzjEKi5qBInVQInk3cY=; b=sTYx+jw9RKV/KYqQiHLRrM0c6lq5GrghuGIuU6lSg03DIENtGpZiwG9Q K9ZfCKhD8s9y3qpBGBp4AdJIuPjGlgR34MHhMSsh4qoez52DfusiFv46a 5msdb3OKdMs9+oRhoyu+raQcxmhjpcO4rMF2gd9N4dDpHAidbAqQ2SHWv /wA1z12Bijeep8/X2+wj2F+Je5d9sJvM8gt/RfzfTxup5fWoWiXrB2Vck OEqFYXI2qNrBwJvYSIJ74dU4YOdGTLNJR/WbeHkJWnZONh60U2aDfj5OT ePMRC0Q/c6/GIehxzl0Xduk2j6Mztl/cYVpTq1KMrfTRxcueDwYqX8liL w==; X-CSE-ConnectionGUID: Ks7g6AzPQt+StUwvoA+LsQ== X-CSE-MsgGUID: F9N7UDu5Tq+GnVPLW1bbPA== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="187235741" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="187235741" Received: from unknown (HELO az2uksmgr3.o.css.fujitsu.com) ([52.151.125.128]) by esa7.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:54 +0900 Received: from az2uksmgm1.o.css.fujitsu.com (unknown [10.151.22.198]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgr3.o.css.fujitsu.com (Postfix) with ESMTPS id 2F7431002B97 for ; Mon, 4 Aug 2025 08:33:55 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2uksmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id 9A9E9844BF1 for ; Mon, 4 Aug 2025 08:33:54 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id AC2941A0078; Mon, 4 Aug 2025 16:33:51 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-oe] [PATCH 07/18] pv: upgrade 1.9.31 -> 1.9.34 Date: Mon, 4 Aug 2025 16:33:29 +0800 Message-ID: <20250804083340.1649-7-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118840 From: Wang Mingyu Signed-off-by: Wang Mingyu --- meta-oe/recipes-support/pv/{pv_1.9.31.bb => pv_1.9.34.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-oe/recipes-support/pv/{pv_1.9.31.bb => pv_1.9.34.bb} (95%) diff --git a/meta-oe/recipes-support/pv/pv_1.9.31.bb b/meta-oe/recipes-support/pv/pv_1.9.34.bb similarity index 95% rename from meta-oe/recipes-support/pv/pv_1.9.31.bb rename to meta-oe/recipes-support/pv/pv_1.9.34.bb index 578012fcfd..b6e2c42812 100644 --- a/meta-oe/recipes-support/pv/pv_1.9.31.bb +++ b/meta-oe/recipes-support/pv/pv_1.9.34.bb @@ -8,7 +8,7 @@ SRC_URI = "https://www.ivarch.com/programs/sources/${BP}.tar.gz \ file://pv-test-system-version.patch \ file://run-ptest \ " -SRC_URI[sha256sum] = "a35e92ec4ac0e8f380e8e840088167ae01014bfa008a3a9d6506b848079daedf" +SRC_URI[sha256sum] = "c0626bed6cbef5006b53d3281e8e3ae4b2838729462b21eccf28140eefef6bb1" UPSTREAM_CHECK_URI = "http://www.ivarch.com/programs/pv.shtml" UPSTREAM_CHECK_REGEX = "pv-(?P\d+(\.\d+)+).tar" From patchwork Mon Aug 4 08:33:30 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68019 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 A7EE5CA0EC1 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa12.hc1455-7.c3s2.iphmx.com (esa12.hc1455-7.c3s2.iphmx.com [139.138.37.100]) by mx.groups.io with SMTP id smtpd.web10.13438.1754296437615756567 for ; Mon, 04 Aug 2025 01:33:58 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=MeGzocYq; spf=pass (domain: fujitsu.com, ip: 139.138.37.100, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296438; x=1785832438; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=s3Da0NmTPPHlNitKldr6DQGRd1DU7srX5p56lv+/ENI=; b=MeGzocYq8dYbmS1TfGPIyIU9mwED9VXFsP3HY9WVbHv/Jr8LvTpx0lk2 pNi34VaHpe47uKJYJBF6sVnlCATexMH922MgCQgyiag+6KfIlCbWk09me V4JQAfIvC27y7+37/NPduCzpGe0ZKEhYGVK/kxjcwoHMoC2+fVh1vuPns e+PiFtEaZ2rDHOSa3Rsjbm3hkSxh2H0qxvgAVrGyd0QsrqKSjIOENU4JV Xsm6NuhH+6lMhJqAvdH/CMKYNWoGKlrsQ6EI8nUz6d1x1axZrx1iglAu5 If68S055j7CKCZuM8CwhaDEjJtA11/o6ZLvHM8eS7hQzbubHT25wc4hql g==; X-CSE-ConnectionGUID: Xvh9jQhPSP+LqeheJgsUCw== X-CSE-MsgGUID: ltHuj+EkSt28e1wNWukgoA== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="187291964" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="187291964" Received: from unknown (HELO az2nlsmgr2.o.css.fujitsu.com) ([20.61.8.234]) by esa12.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:56 +0900 Received: from az2nlsmgm1.o.css.fujitsu.com (unknown [10.150.26.203]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr2.o.css.fujitsu.com (Postfix) with ESMTPS id 0CEC71428 for ; Mon, 4 Aug 2025 08:33:56 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id 6E8EDC012A1 for ; Mon, 4 Aug 2025 08:33:55 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 795821A008D; Mon, 4 Aug 2025 16:33:52 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-python] [PATCH 08/18] python3-bitarray: upgrade 3.5.2 -> 3.6.0 Date: Mon, 4 Aug 2025 16:33:30 +0800 Message-ID: <20250804083340.1649-8-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118841 From: Wang Mingyu Changelog: ============== - add 'util.random_k()' - add 'util.sum_indices()' - optimize 'util.xor_indices()' - move development files from 'examples/' to 'devel/' Signed-off-by: Wang Mingyu --- .../{python3-bitarray_3.5.2.bb => python3-bitarray_3.6.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-bitarray_3.5.2.bb => python3-bitarray_3.6.0.bb} (81%) diff --git a/meta-python/recipes-devtools/python/python3-bitarray_3.5.2.bb b/meta-python/recipes-devtools/python/python3-bitarray_3.6.0.bb similarity index 81% rename from meta-python/recipes-devtools/python/python3-bitarray_3.5.2.bb rename to meta-python/recipes-devtools/python/python3-bitarray_3.6.0.bb index 43ea07173c..83062317e8 100644 --- a/meta-python/recipes-devtools/python/python3-bitarray_3.5.2.bb +++ b/meta-python/recipes-devtools/python/python3-bitarray_3.6.0.bb @@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray" LICENSE = "PSF-2.0" LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=6abe80c028e4ee53045a33ae807c64fd" -SRC_URI[sha256sum] = "08a86f85fd0534da3b753f072c7b0d392d4c0c9418fe2a358be378152cf6b085" +SRC_URI[sha256sum] = "20febc849a1f858e6a57a7d47b323fe9e727c579ddd526d317ad8831748a66a8" inherit python_setuptools_build_meta pypi From patchwork Mon Aug 4 08:33:31 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68018 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 A3944CA0EC3 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa4.hc1455-7.c3s2.iphmx.com (esa4.hc1455-7.c3s2.iphmx.com [68.232.139.117]) by mx.groups.io with SMTP id smtpd.web10.13439.1754296438419731426 for ; Mon, 04 Aug 2025 01:33:58 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=Wz7AWhLp; spf=pass (domain: fujitsu.com, ip: 68.232.139.117, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296438; x=1785832438; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Ajru8LkVyEAxfodLjQbx0F7dVpw0aVLpXXcaNNaccMM=; b=Wz7AWhLpGtYEWkhWC43fWFgww09WEpNTfss5kuHA4jJD1wOvGiMNx8UZ cgpGU7M0a7o1fceYVHNNktq020neCkSZZDnr086B5Orbe/vqtFuMQF6rD ryFWqRU+xWnuZyMrStEhzLCdopzwcZmYh4iC+Xd7yn0f1J0AocTXIDFaG EuH9F/YsOQVlGNqlQZppAEuSy3l1qIKVoLZoYhKgxjsT4S9rn7/D8qQQ7 802KoqfUHmrS98xq9j9MwO2paOLp4kRyvrvCfrcku3362MSU5m6pyRwxK KMVC8UVUyW7CUE/Nkm3m85da5Q23o2Cm1fjBYPnwmk250DPvXdNTR6tBi g==; X-CSE-ConnectionGUID: 3NmOc++/RWS7Le3VErRM5g== X-CSE-MsgGUID: 0LUci11RRDGto2qSFVnqTw== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="208890685" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="208890685" Received: from unknown (HELO az2nlsmgr3.o.css.fujitsu.com) ([51.138.80.169]) by esa4.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:56 +0900 Received: from az2nlsmgm3.fujitsu.com (unknown [10.150.26.205]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr3.o.css.fujitsu.com (Postfix) with ESMTPS id C6F4A1000346 for ; Mon, 4 Aug 2025 08:33:56 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2nlsmgm3.fujitsu.com (Postfix) with ESMTPS id 3AE2B1800BFB for ; Mon, 4 Aug 2025 08:33:56 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 3505B1A0071; Mon, 4 Aug 2025 16:33:53 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-python] [PATCH 09/18] python3-freezegun: upgrade 1.5.3 -> 1.5.4 Date: Mon, 4 Aug 2025 16:33:31 +0800 Message-ID: <20250804083340.1649-9-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118842 From: Wang Mingyu Changelog: * Fix: Ability to yield fixtures (broken in 1.5.3) Signed-off-by: Wang Mingyu --- .../{python3-freezegun_1.5.3.bb => python3-freezegun_1.5.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-freezegun_1.5.3.bb => python3-freezegun_1.5.4.bb} (84%) diff --git a/meta-python/recipes-devtools/python/python3-freezegun_1.5.3.bb b/meta-python/recipes-devtools/python/python3-freezegun_1.5.4.bb similarity index 84% rename from meta-python/recipes-devtools/python/python3-freezegun_1.5.3.bb rename to meta-python/recipes-devtools/python/python3-freezegun_1.5.4.bb index 26b14fc8ce..a6e31228c3 100644 --- a/meta-python/recipes-devtools/python/python3-freezegun_1.5.3.bb +++ b/meta-python/recipes-devtools/python/python3-freezegun_1.5.4.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/spulec/freezegun" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=acf1d209bb6eddae4cbe6ffd6a0144fe" -SRC_URI[sha256sum] = "d7c6204e33a50affd7c7aa284f4f92e04e96f72d63313b89ceaaf60d9c64bc5e" +SRC_URI[sha256sum] = "798b9372fdd4d907f33e8b6a58bc64e682d9ffa8d494ce60f780197ee81faed1" inherit pypi python_setuptools_build_meta ptest-python-pytest From patchwork Mon Aug 4 08:33:32 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68023 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 C4341CA0EC8 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa9.hc1455-7.c3s2.iphmx.com (esa9.hc1455-7.c3s2.iphmx.com [139.138.36.223]) by mx.groups.io with SMTP id smtpd.web10.13440.1754296438818344616 for ; Mon, 04 Aug 2025 01:33:59 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=tFkGECM4; spf=pass (domain: fujitsu.com, ip: 139.138.36.223, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296439; x=1785832439; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9NlveSkcMGbHY+pztMCnlESaZRzn/xVKM/C8D21h6B4=; b=tFkGECM4kdEkCAmWJbeNRb7JN2guMX0sCN9840jKLsZks1lqwp9tTGhA Zxytfi3HeTg4t5OzLUnDww9mWCY99rnWtBNCo0VxD02eU98V13VXXP/FG iZLY2UpXkUQBrjyca4sSFtabOmgilDDXrZ23DOEOevv/paPn3CTPYM2Ow YtP0WYJ+v2FCordBpCSSXMI4Ix71r1Q4zDIlSxm8QkebD4EDFZGLEnmXV 6XGZX34TS6rz5kgpZiVzbbjyA8gUWyDtKE0dklY9dEUE0Nnw5QPbPLSy8 d8eROFmw40Hdl7LJbcODtsio07VzXNq6Bd07Ajw8XIExq3Z1KJblbsdM2 w==; X-CSE-ConnectionGUID: Bjb30iZyRu6hHCvBKBxwPQ== X-CSE-MsgGUID: GQXW9o4tQoauKeiv3ukFLg== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="196835202" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="196835202" Received: from unknown (HELO az2uksmgr3.o.css.fujitsu.com) ([52.151.125.128]) by esa9.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:57 +0900 Received: from az2uksmgm1.o.css.fujitsu.com (unknown [10.151.22.198]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgr3.o.css.fujitsu.com (Postfix) with ESMTPS id 619301002B9D for ; Mon, 4 Aug 2025 08:33:57 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2uksmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id CCD83844BFF for ; Mon, 4 Aug 2025 08:33:56 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id E5AED1A0074; Mon, 4 Aug 2025 16:33:53 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-python] [PATCH 10/18] python3-inline-snapshot: upgrade 0.25.3 -> 0.26.0 Date: Mon, 4 Aug 2025 16:33:32 +0800 Message-ID: <20250804083340.1649-10-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118844 From: Wang Mingyu Changed ----------- now have to specify test-dir in pyproject.toml when save tests in a folder other than tests/ in project root Fixed -------- pyproject.toml is now also located based on the current directory and the pytest-root, which solves problems when use inline-snapshot with uv-workspaces Signed-off-by: Wang Mingyu --- ...ine-snapshot_0.25.3.bb => python3-inline-snapshot_0.26.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-inline-snapshot_0.25.3.bb => python3-inline-snapshot_0.26.0.bb} (88%) diff --git a/meta-python/recipes-devtools/python/python3-inline-snapshot_0.25.3.bb b/meta-python/recipes-devtools/python/python3-inline-snapshot_0.26.0.bb similarity index 88% rename from meta-python/recipes-devtools/python/python3-inline-snapshot_0.25.3.bb rename to meta-python/recipes-devtools/python/python3-inline-snapshot_0.26.0.bb index 4f7949bf41..3296210017 100644 --- a/meta-python/recipes-devtools/python/python3-inline-snapshot_0.25.3.bb +++ b/meta-python/recipes-devtools/python/python3-inline-snapshot_0.26.0.bb @@ -4,7 +4,7 @@ LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=7a35eb90dfdf03953dd2074d0fdba1d4" DEPENDS = "python3-hatchling-native" -SRC_URI[sha256sum] = "99fc959d1362443b7551246d787f80c4c1d7cc69963ac018caeda3f0a0b3736f" +SRC_URI[sha256sum] = "cfb66e4c11984eaa9d258c50a6e56fc57bc1e91d253acb4312968899e3f7ad54" inherit pypi python_hatchling From patchwork Mon Aug 4 08:33:33 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68016 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 99F9CCA0EC4 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa7.hc1455-7.c3s2.iphmx.com (esa7.hc1455-7.c3s2.iphmx.com [139.138.61.252]) by mx.groups.io with SMTP id smtpd.web11.13467.1754296436870096092 for ; Mon, 04 Aug 2025 01:33:59 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=CrO/jecG; spf=pass (domain: fujitsu.com, ip: 139.138.61.252, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296438; x=1785832438; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=chyi5LKj+Mhm/VitJERaslKAuHjDXAorg2omj1WqJBM=; b=CrO/jecGzq5AQNC9RurARXwn/+M6O9QGnXkmCONpTQPy5cZvLr7mqo6E 1OicFPpn0rQ654IaIROJB1u+IIs96tdNxLb5/HRvLe+LqZc8bo7NbxJVw en5qT5eszO76vXG/S2xUP2KFCN+yM/rw75HY/hVOkyCpJlvhyvM3X4iBL dT2yfoanXYtvFZ7bpgHlUbDErpwMmlZqaCf0d3HuR6n6JfkdY8RkdTMvT 55JqUy8LpNnLRTpB4td+wgs1q1ZM4/Qh7jSPEkf08+FboD0YcLyhEzc/9 IHUVaIhL+J2zO6MOkfsEItcfdc8gJ+++T8P3+Rvz8JAepQt4ZOyusvqlv w==; X-CSE-ConnectionGUID: nMlkH20sRiyHnIhLYwJlMQ== X-CSE-MsgGUID: ROWr65Y3R4uSo+cJWDFQhg== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="187235753" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="187235753" Received: from unknown (HELO az2nlsmgr4.o.css.fujitsu.com) ([20.61.8.234]) by esa7.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:58 +0900 Received: from az2nlsmgm1.o.css.fujitsu.com (unknown [10.150.26.203]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr4.o.css.fujitsu.com (Postfix) with ESMTPS id 3EDAC42A30A for ; Mon, 4 Aug 2025 08:33:58 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2nlsmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id A35B1C0129B for ; Mon, 4 Aug 2025 08:33:57 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 997771A0073; Mon, 4 Aug 2025 16:33:54 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-python] [PATCH 11/18] python3-matplotlib: upgrade 3.10.3 -> 3.10.5 Date: Mon, 4 Aug 2025 16:33:33 +0800 Message-ID: <20250804083340.1649-11-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118843 From: Wang Mingyu Signed-off-by: Wang Mingyu --- ...ython3-matplotlib_3.10.3.bb => python3-matplotlib_3.10.5.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-matplotlib_3.10.3.bb => python3-matplotlib_3.10.5.bb} (93%) diff --git a/meta-python/recipes-devtools/python/python3-matplotlib_3.10.3.bb b/meta-python/recipes-devtools/python/python3-matplotlib_3.10.5.bb similarity index 93% rename from meta-python/recipes-devtools/python/python3-matplotlib_3.10.3.bb rename to meta-python/recipes-devtools/python/python3-matplotlib_3.10.5.bb index 97a2910fa2..6c4d496c02 100644 --- a/meta-python/recipes-devtools/python/python3-matplotlib_3.10.3.bb +++ b/meta-python/recipes-devtools/python/python3-matplotlib_3.10.5.bb @@ -22,7 +22,7 @@ SRC_URI += "file://run-ptest \ file://0001-Do-not-download-external-dependency-tarballs-via-mes.patch \ file://0001-Change-types-for-width-height-to-match-definitions-i.patch \ " -SRC_URI[sha256sum] = "2f82d2c5bb7ae93aaaa4cd42aca65d76ce6376f83304fa3a630b569aca274df0" +SRC_URI[sha256sum] = "352ed6ccfb7998a00881692f38b4ca083c691d3e275b4145423704c34c909076" inherit pypi pkgconfig python3targetconfig meson ptest-python-pytest From patchwork Mon Aug 4 08:33:34 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68015 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 86E85CA0EC0 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa12.hc1455-7.c3s2.iphmx.com (esa12.hc1455-7.c3s2.iphmx.com [139.138.37.100]) by mx.groups.io with SMTP id smtpd.web10.13438.1754296437615756567 for ; Mon, 04 Aug 2025 01:33:59 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=ZALc0s5k; spf=pass (domain: fujitsu.com, ip: 139.138.37.100, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296439; x=1785832439; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=UQ2mcOlGSMw165nIrjIWaWwVFDerws4rKjBxipwnPtU=; b=ZALc0s5kthaAzlUlDPxxsFPeRfmr85aetvjeWbqklRhl51aCcjwWnBqn xr+jH3b8fTg3jdx0uyCAJMUUGUCSdaG09pqILPJbUj83gdiHNioC4Tcct O58Axwj7hJwJItyhc90Su4WHbyMcZRiSqSyrh+Ao7WGqfKlQe3WSC1jdf VM7GaqNJxq1N1ZPqpGD9mAf9HfgjFBEkBahYgtnKCwX0+wUxj1q9/uTC1 hW+88UxyxznjCRSkgqL6Iyyl+FBFF3RkJH+SGyCGiPDVtOVNnWk6PEDWl kCh5OG4+T65ot9/Z1TKYOREGr8rnEIlizkZv+iXV/l+erwkrXfv2Hy7kU g==; X-CSE-ConnectionGUID: rYJ0VvouQDiNvdqWfE/uDA== X-CSE-MsgGUID: kI3s/aYMSlul6h7jvx/1Rg== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="187291971" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="187291971" Received: from unknown (HELO az2nlsmgr2.o.css.fujitsu.com) ([20.61.8.234]) by esa12.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:33:59 +0900 Received: from az2nlsmgm1.o.css.fujitsu.com (unknown [10.150.26.203]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr2.o.css.fujitsu.com (Postfix) with ESMTPS id 02C5D147A for ; Mon, 4 Aug 2025 08:33:59 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2nlsmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id 67176C012B0 for ; Mon, 4 Aug 2025 08:33:58 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 63E241A0078; Mon, 4 Aug 2025 16:33:55 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-python] [PATCH 12/18] python3-polyline: upgrade 2.0.2 -> 2.0.3 Date: Mon, 4 Aug 2025 16:33:34 +0800 Message-ID: <20250804083340.1649-12-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118845 From: Wang Mingyu Changelog: Remove deprecated toml dependency in favor of native tomllib (or tomli on older Python versions). Signed-off-by: Wang Mingyu --- .../{python3-polyline_2.0.2.bb => python3-polyline_2.0.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-polyline_2.0.2.bb => python3-polyline_2.0.3.bb} (80%) diff --git a/meta-python/recipes-devtools/python/python3-polyline_2.0.2.bb b/meta-python/recipes-devtools/python/python3-polyline_2.0.3.bb similarity index 80% rename from meta-python/recipes-devtools/python/python3-polyline_2.0.2.bb rename to meta-python/recipes-devtools/python/python3-polyline_2.0.3.bb index a91ceb76ee..371bcf0163 100644 --- a/meta-python/recipes-devtools/python/python3-polyline_2.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-polyline_2.0.3.bb @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/frederickjansen/polyline" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=1fb8d1dc685695195bb3c1e48adfef48" -SRC_URI[sha256sum] = "10541e759c5fd51f746ee304e9af94744089a4055b6257b293b3afd1df64e369" +SRC_URI[sha256sum] = "abc786b9332e84f27e6e59fd4fcbcb0c4b9af6a7f7b4175e2eb6c2786278deae" inherit pypi python_setuptools_build_meta ptest-python-pytest From patchwork Mon Aug 4 08:33:35 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68013 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 7C96BC87FDB for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa6.hc1455-7.c3s2.iphmx.com (esa6.hc1455-7.c3s2.iphmx.com [68.232.139.139]) by mx.groups.io with SMTP id smtpd.web11.13468.1754296441141920287 for ; Mon, 04 Aug 2025 01:34:01 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=nwK7vQc/; spf=pass (domain: fujitsu.com, ip: 68.232.139.139, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296442; x=1785832442; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ieSkVOgiR5CfFZSpSdqJ6W0wqbtozf0mycEOqsUti7c=; b=nwK7vQc/WL39jWICiiNNO2ggSBOHJDh5tHeNWWDMfInCHPLH3VSAxHJJ GVvgGTzMuTbkYQnufFgtEyM0NsTgwDbr2IpMxl8rlP2YpVvykU7Z1w8Bd mK/nl455/kwH81EC7gtUVP9a42ZZJKv/8mLo3AfJvIUPIJKA9mlT2oVuv ubcRffSodhuim4Z5L23L/5FVmqrXG2vAtBfgDM9yYOg78xjTEQlPOnSS0 RmfJP9P21ruT6/fLHImbfNjXMi80IGztMOwTFyeTOUWp1j8g4pYQvKrV3 FVIDJ/CLJipv+644CyEWtlrgq3pKjEbCx1R+nugSZYTBbswVZLx2AwLRk w==; X-CSE-ConnectionGUID: FmCWaRPBRayPCmm8e0LvUQ== X-CSE-MsgGUID: Xa2gXC/QTK+KSD9rws4dAg== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="211661988" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="211661988" Received: from unknown (HELO az2nlsmgr3.o.css.fujitsu.com) ([20.61.8.234]) by esa6.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:34:00 +0900 Received: from az2nlsmgm3.fujitsu.com (unknown [10.150.26.205]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr3.o.css.fujitsu.com (Postfix) with ESMTPS id A24F4100034B for ; Mon, 4 Aug 2025 08:33:59 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2nlsmgm3.fujitsu.com (Postfix) with ESMTPS id 164921800BE5 for ; Mon, 4 Aug 2025 08:33:59 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 18B691A008D; Mon, 4 Aug 2025 16:33:56 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-python] [PATCH 13/18] python3-pymodbus: upgrade 3.9.2 -> 3.10.0 Date: Mon, 4 Aug 2025 16:33:35 +0800 Message-ID: <20250804083340.1649-13-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118846 From: Wang Mingyu License-Update: Copyright year updated to 2025 Changelog: ========== - Raise runtimeerror if listen() fails. - Correct values parameter in setValues. - Correct return from getValues. - Add request fc to exceptionResponse. - DummyProtocol is not async - Handle "little" for multiple values in to_registers - Remove unused const. - Add retries to ModbusPDU class - Don't invoke trace_connect callback twice - ensure unpacking of proper length during decoding - README clean-up - Bump coverage to 95,5% - Simplify response rejection. - Bump coverage to 93%. - Solve ModbusDeviceContext bug. - Bit handling LSB -> MSB across bytes. - Change slave to device_id and slave= to device_id=. - Remove payload. Signed-off-by: Wang Mingyu --- .../{python3-pymodbus_3.9.2.bb => python3-pymodbus_3.10.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-pymodbus_3.9.2.bb => python3-pymodbus_3.10.0.bb} (83%) diff --git a/meta-python/recipes-devtools/python/python3-pymodbus_3.9.2.bb b/meta-python/recipes-devtools/python/python3-pymodbus_3.10.0.bb similarity index 83% rename from meta-python/recipes-devtools/python/python3-pymodbus_3.9.2.bb rename to meta-python/recipes-devtools/python/python3-pymodbus_3.10.0.bb index afede52161..17846ece00 100644 --- a/meta-python/recipes-devtools/python/python3-pymodbus_3.9.2.bb +++ b/meta-python/recipes-devtools/python/python3-pymodbus_3.10.0.bb @@ -1,9 +1,9 @@ SUMMARY = "A fully featured modbus protocol stack in python" HOMEPAGE = "https://github.com/riptideio/pymodbus/" LICENSE = "BSD-3-Clause" -LIC_FILES_CHKSUM = "file://LICENSE;md5=eba8057aa82c058d2042b4b0a0e9cc63" +LIC_FILES_CHKSUM = "file://LICENSE;md5=12a490c6cffa2e76a6df8aa1fa29e183" -SRC_URI[sha256sum] = "2d08ab7bf6d1abc55a87f4faa3a7b04f74d7310b8c9771c3d66ee5fccf2e25ac" +SRC_URI[sha256sum] = "5b7ce71f9da2fabd1f8484de564a7e2c56085e94e3d4ee2a0fbc14c59dfa9da7" inherit pypi python_setuptools_build_meta From patchwork Mon Aug 4 08:33:36 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68025 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 CB9B8C87FDB for ; Mon, 4 Aug 2025 08:34:13 +0000 (UTC) Received: from esa4.hc1455-7.c3s2.iphmx.com (esa4.hc1455-7.c3s2.iphmx.com [68.232.139.117]) by mx.groups.io with SMTP id smtpd.web10.13443.1754296449301090965 for ; Mon, 04 Aug 2025 01:34:09 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=oqLBKrEP; spf=pass (domain: fujitsu.com, ip: 68.232.139.117, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296449; x=1785832449; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=8Kwpg2mfy4QYNVZvW9dwKMNpOzYEYlBnQCEyU0QAFao=; b=oqLBKrEP8c39fl2oB5y2oqal79IWc2bNmWocKyGF8rR4XJJrosKV0+WU 7ueF/TthzZSCtGzFRJ529PXBOJN6ZIfcmseMYJnV0LErA/Bz8HG84rqBm O7vEeml8fihXa2jI9zJQu+HzNgQjXecchClukFhevqeMFDh3jOdirz20P mN69D0I6PDkrvvybzEjfyP9SCFtiP8SUNfk//KluNp5APF1mN29jW4cKs 7N3uoriwDR5SV9sBULHpB8jLpISPjj9rinW0b+giuV8IeeDL5oLIeFzec aia8HXFS55pGFG+xe/3J0oksdmTGAe0OoEBOL5iI3KwllrtqR3zzdYZol w==; X-CSE-ConnectionGUID: JBWwSuo7S9W7a+2toDAH2g== X-CSE-MsgGUID: kPKy10Z/RXG7P4rrDPw7qA== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="208890693" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="208890693" Received: from unknown (HELO az2nlsmgr3.o.css.fujitsu.com) ([51.138.80.169]) by esa4.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:34:00 +0900 Received: from az2nlsmgm3.fujitsu.com (unknown [10.150.26.205]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr3.o.css.fujitsu.com (Postfix) with ESMTPS id 587C6100034B for ; Mon, 4 Aug 2025 08:34:00 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2nlsmgm3.fujitsu.com (Postfix) with ESMTPS id BF60E1800BF6 for ; Mon, 4 Aug 2025 08:33:59 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id B01891A0071; Mon, 4 Aug 2025 16:33:56 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-python] [PATCH 14/18] python3-pyroute2: upgrade 0.9.3 -> 0.9.4 Date: Mon, 4 Aug 2025 16:33:36 +0800 Message-ID: <20250804083340.1649-14-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:13 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118850 From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../{python3-pyroute2_0.9.3.bb => python3-pyroute2_0.9.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pyroute2_0.9.3.bb => python3-pyroute2_0.9.4.bb} (92%) diff --git a/meta-python/recipes-devtools/python/python3-pyroute2_0.9.3.bb b/meta-python/recipes-devtools/python/python3-pyroute2_0.9.4.bb similarity index 92% rename from meta-python/recipes-devtools/python/python3-pyroute2_0.9.3.bb rename to meta-python/recipes-devtools/python/python3-pyroute2_0.9.4.bb index b0478ecbdf..2925ebbd5a 100644 --- a/meta-python/recipes-devtools/python/python3-pyroute2_0.9.3.bb +++ b/meta-python/recipes-devtools/python/python3-pyroute2_0.9.4.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=dccbff78d7d79ae7e53953d43445c6e6 \ file://LICENSE.GPL-2.0-or-later;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ file://LICENSE.Apache-2.0;md5=34281e312165f843a2b7d1f114fe65ce" -SRC_URI[sha256sum] = "97253f8a192e92ac29db9c159a50a59195d72f2b8cdcf20c069d59187fa49ad1" +SRC_URI[sha256sum] = "3cbccbe1af0c2b2aeae81b327e0e91aa94c81ab19f851e74b26bef70202f3070" inherit python_setuptools_build_meta pypi ptest-python-pytest From patchwork Mon Aug 4 08:33:37 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68012 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 60A44C87FCB for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa5.hc1455-7.c3s2.iphmx.com (esa5.hc1455-7.c3s2.iphmx.com [68.232.139.130]) by mx.groups.io with SMTP id smtpd.web11.13469.1754296442322897872 for ; Mon, 04 Aug 2025 01:34:02 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=hBgs/mYE; spf=pass (domain: fujitsu.com, ip: 68.232.139.130, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296442; x=1785832442; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=GMc2YcVu6BIqBh25VoEfZPPDS9iURGags5+14PXXVSE=; b=hBgs/mYEJVpCSHqVAezFC9y2WFwHP4v475ScoMGoeqP1VakqNgfbWX0k JHIZZWVjvwE3ESFnAwaujRVU0cNv5w+LUgdUGbLipMChpvJCsoE7sg4T8 X9s5dIaqN8ir/9d9b9Qawi/bEoWW0AVfLPUUGAYUjKr6yjPlTZ2+zYR1t JrSiQjJZHhlX1IGAntFK8e0E6erl6UMdN93vLpoTmSeOSPuuLI2RnohMK F3o9Y5IerPQaxtlEMXU99TAhUhbsQB5UE9oBJ+v8/d4BNgkH7CzG9QUOl SJsKPtcTrykDoSDhkZgXX6wxVb5j8+jxSWf6JBxMNEozIp/zn7g4AwlOf Q==; X-CSE-ConnectionGUID: PlD/vvy/TeOlN9kde7/uJw== X-CSE-MsgGUID: fS08p9wpSlKmXQzMi7xp2Q== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="207643606" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="207643606" Received: from unknown (HELO az2nlsmgr2.o.css.fujitsu.com) ([51.138.80.169]) by esa5.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:34:01 +0900 Received: from az2nlsmgm1.o.css.fujitsu.com (unknown [10.150.26.203]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr2.o.css.fujitsu.com (Postfix) with ESMTPS id D2C281462 for ; Mon, 4 Aug 2025 08:34:00 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2nlsmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id 44C5FC012B2 for ; Mon, 4 Aug 2025 08:34:00 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 37D0D1A008F; Mon, 4 Aug 2025 16:33:57 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-python] [PATCH 15/18] python3-regex: upgrade 2024.11.6 -> 2025.7.34 Date: Mon, 4 Aug 2025 16:33:37 +0800 Message-ID: <20250804083340.1649-15-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118848 From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../{python3-regex_2024.11.6.bb => python3-regex_2025.7.34.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-regex_2024.11.6.bb => python3-regex_2025.7.34.bb} (80%) diff --git a/meta-python/recipes-devtools/python/python3-regex_2024.11.6.bb b/meta-python/recipes-devtools/python/python3-regex_2025.7.34.bb similarity index 80% rename from meta-python/recipes-devtools/python/python3-regex_2024.11.6.bb rename to meta-python/recipes-devtools/python/python3-regex_2025.7.34.bb index 4a84414f12..94063b31cd 100644 --- a/meta-python/recipes-devtools/python/python3-regex_2024.11.6.bb +++ b/meta-python/recipes-devtools/python/python3-regex_2025.7.34.bb @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7b5751ddd6b643203c31ff873051d069" inherit pypi python_setuptools_build_meta -SRC_URI[sha256sum] = "7ab159b063c52a0333c884e4679f8d7a85112ee3078fe3d9004b2dd875585519" +SRC_URI[sha256sum] = "9ead9765217afd04a86822dfcd4ed2747dfe426e887da413b15ff0ac2457e21a" RDEPENDS:${PN} += " \ python3-stringold \ From patchwork Mon Aug 4 08:33:38 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68014 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 6E7B2C88CB9 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa2.hc1455-7.c3s2.iphmx.com (esa2.hc1455-7.c3s2.iphmx.com [207.54.90.48]) by mx.groups.io with SMTP id smtpd.web10.13437.1754296436254496950 for ; Mon, 04 Aug 2025 01:34:02 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=T2bbbGVm; spf=pass (domain: fujitsu.com, ip: 207.54.90.48, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296442; x=1785832442; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Td58AvheRRZZnDBGrGJ31P3F5lc2Lezbw5ymMXkTO7M=; b=T2bbbGVmd90LCvveAueRLN83v6CSkJr//VKya5fjN2yhw6cGdyhDicXl x6Q1qxSw2OG6Vfb5zFiKBTXAkMAKh+C2qDeKBJeTaxnHwg2Guf0Y3ga9Q iRvUAvdqgdVEYdgCJF3so/WfJTd0sY4aVxPQ/XKCfQpX8Uhyt1OHDWdU8 /xgEl2QnGdj9ZNONkEdOyJFBTOjN6QNWxYKKr0OLfYR2UWj4CQaJ4hCx9 iHoiFqqPI8EIVzNALDKCpqAOVrM95JekmcxEy8EZ8kSQ41GAN27HoTLGb zRkxA75t6c2woPdJxvmseE6QBUX0zfBeA6qs0w7wpBWTffpAULmSLMDNR A==; X-CSE-ConnectionGUID: tiUN9QjIR2CcoAuJ46mYxw== X-CSE-MsgGUID: qLHwbSwZTte+FVGHw4KjJw== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="208301717" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="208301717" Received: from unknown (HELO az2uksmgr4.o.css.fujitsu.com) ([52.151.125.19]) by esa2.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:34:02 +0900 Received: from az2uksmgm1.o.css.fujitsu.com (unknown [10.151.22.198]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgr4.o.css.fujitsu.com (Postfix) with ESMTPS id 6C469C00542 for ; Mon, 4 Aug 2025 08:34:01 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2uksmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id DB8DB844BEC for ; Mon, 4 Aug 2025 08:34:00 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id E9AB91A0074; Mon, 4 Aug 2025 16:33:57 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-python] [PATCH 16/18] python3-sqlalchemy: upgrade 2.0.41 -> 2.0.42 Date: Mon, 4 Aug 2025 16:33:38 +0800 Message-ID: <20250804083340.1649-16-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118847 From: Wang Mingyu Signed-off-by: Wang Mingyu --- ...ython3-sqlalchemy_2.0.41.bb => python3-sqlalchemy_2.0.42.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-sqlalchemy_2.0.41.bb => python3-sqlalchemy_2.0.42.bb} (87%) diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.41.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.42.bb similarity index 87% rename from meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.41.bb rename to meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.42.bb index c9f337946a..2859b3483d 100644 --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.41.bb +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_2.0.42.bb @@ -4,7 +4,7 @@ HOMEPAGE = "https://www.sqlalchemy.org/" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=061025f14213ac2818ff353223d6eca6" -SRC_URI[sha256sum] = "edba70118c4be3c2b1f90754d308d0b79c6fe2c0fdc52d8ddf603916f83f4db9" +SRC_URI[sha256sum] = "160bedd8a5c28765bd5be4dec2d881e109e33b34922e50a3b881a7681773ac5f" inherit pypi python_setuptools_build_meta cython From patchwork Mon Aug 4 08:33:39 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68022 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 D077DCA0EC7 for ; Mon, 4 Aug 2025 08:34:03 +0000 (UTC) Received: from esa2.hc1455-7.c3s2.iphmx.com (esa2.hc1455-7.c3s2.iphmx.com [207.54.90.48]) by mx.groups.io with SMTP id smtpd.web10.13437.1754296436254496950 for ; Mon, 04 Aug 2025 01:34:03 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=kt5INKGn; spf=pass (domain: fujitsu.com, ip: 207.54.90.48, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296443; x=1785832443; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ptobmNz4T3TZ1VVz5Bm8kqzOWtPDttGEqtOgeoyD6U8=; b=kt5INKGn+403/ceLzVFvx3OpCJRPCufNxwRH3n2c0Hw9tNJM2Vlm0rxG LIuO5Gi1mUePcJ4aWR8Si0SKv1hRQDzSxJSmJKPUrX+s6Y6alJT4PnKu/ /wF9AGQUtbKHgu8xc7i3TVmRQtBnzakRFuADNMgK146wQ/fuQejPfav0g fWo/E80lpuo+GF5WJFiffqAEr+lPBzlZg2QOIHyTFIx5z75mxNYQ90Z8n PrEWdFyn3KHUipGsQ8i7ErJ3LXIdkhmyYTcr1mhDSl7mmFDjZHcCC2RCz vWlhMSfgQ7sfvlIbdyAN9NUOP6kVTYxpII9iMyEsgG/jt8AOO07cLHzWf A==; X-CSE-ConnectionGUID: +LdufC4rS9e1q6y84SpkDw== X-CSE-MsgGUID: G+dz7zLSRK26ap9oKgIy6g== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="208301719" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="208301719" Received: from unknown (HELO az2nlsmgr1.o.css.fujitsu.com) ([51.138.80.169]) by esa2.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:34:03 +0900 Received: from az2nlsmgm2.o.css.fujitsu.com (unknown [10.150.26.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2nlsmgr1.o.css.fujitsu.com (Postfix) with ESMTPS id 590AE1C00086 for ; Mon, 4 Aug 2025 08:34:02 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2nlsmgm2.o.css.fujitsu.com (Postfix) with ESMTPS id BFBA31C00197 for ; Mon, 4 Aug 2025 08:34:01 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id C97281A0073; Mon, 4 Aug 2025 16:33:58 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-webserver] [PATCH 17/18] swagger-ui: upgrade 5.27.0 -> 5.27.1 Date: Mon, 4 Aug 2025 16:33:39 +0800 Message-ID: <20250804083340.1649-17-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118849 From: Wang Mingyu bugfix: use open-cli instead of require('open') for Node 20+ compatibility Signed-off-by: Wang Mingyu --- .../swagger-ui/{swagger-ui_5.27.0.bb => swagger-ui_5.27.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-webserver/recipes-devtools/swagger-ui/{swagger-ui_5.27.0.bb => swagger-ui_5.27.1.bb} (92%) diff --git a/meta-webserver/recipes-devtools/swagger-ui/swagger-ui_5.27.0.bb b/meta-webserver/recipes-devtools/swagger-ui/swagger-ui_5.27.1.bb similarity index 92% rename from meta-webserver/recipes-devtools/swagger-ui/swagger-ui_5.27.0.bb rename to meta-webserver/recipes-devtools/swagger-ui/swagger-ui_5.27.1.bb index 4dc1b86125..f1eb6e4423 100644 --- a/meta-webserver/recipes-devtools/swagger-ui/swagger-ui_5.27.0.bb +++ b/meta-webserver/recipes-devtools/swagger-ui/swagger-ui_5.27.1.bb @@ -10,9 +10,9 @@ SECTION = "net" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" -SRC_URI = "git://github.com/swagger-api/swagger-ui;branch=master;protocol=https" +SRC_URI = "git://github.com/swagger-api/swagger-ui;branch=master;protocol=https;tag=v${PV}" -SRCREV = "7b86721ad6494216d8bad0540c737efe1885688c" +SRCREV = "43ed706e9519841e97401cfad83faca564b37eaf" CVE_STATUS[CVE-2016-1000229] = "fixed-version: fixed since 2.2.1" From patchwork Mon Aug 4 08:33:40 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wang Mingyu X-Patchwork-Id: 68024 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 CB97FC87FDA for ; Mon, 4 Aug 2025 08:34:13 +0000 (UTC) Received: from esa8.hc1455-7.c3s2.iphmx.com (esa8.hc1455-7.c3s2.iphmx.com [139.138.61.253]) by mx.groups.io with SMTP id smtpd.web10.13444.1754296450367403498 for ; Mon, 04 Aug 2025 01:34:10 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@fujitsu.com header.s=fj2 header.b=OVyfY3S7; spf=pass (domain: fujitsu.com, ip: 139.138.61.253, mailfrom: wangmy@fujitsu.com) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=fujitsu.com; i=@fujitsu.com; q=dns/txt; s=fj2; t=1754296449; x=1785832449; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=/IjE/mNkfusU/zIJkMBc9gOMjUpBlJIFqyadSaeZBac=; b=OVyfY3S7O4CglcrtUU3z33SYfg+c/WySqn5SOd7Kei0p4maN+iUZ3N4W 0m/G2iJGmLdZvyLX/QDmlON8geT6172US0adv6oj/gyds/PXux8syWzwu 4UllAYB2X2B7Ju+F808xOMsi6hFrXmAoF8rYj1z/gsEcCn55MTSjW4VMD eoxqLZcsy8MF2PUway0esU988/4MO3kEYFqwidPLsV4aDMZj5IvvCnh1V 6gsuTHcG0ttuLhJE7wqzleYsZpn0TtL/sVZ0+3TMY0hayhy3pVLk6rmGg J+d4imHTQeqqNzAUoZlLvonWIkao5+1kAfmyJPVRKXHOavesykz0k6suh Q==; X-CSE-ConnectionGUID: NBHi7PqWScSM0bwK/7ypvQ== X-CSE-MsgGUID: BLNuZ4fHQIOjddSSI8iD8A== X-IronPort-AV: E=McAfee;i="6800,10657,11511"; a="196325422" X-IronPort-AV: E=Sophos;i="6.17,258,1747666800"; d="scan'208";a="196325422" Received: from unknown (HELO az2uksmgr2.o.css.fujitsu.com) ([52.151.125.19]) by esa8.hc1455-7.c3s2.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2025 17:34:01 +0900 Received: from az2uksmgm1.o.css.fujitsu.com (unknown [10.151.22.198]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by az2uksmgr2.o.css.fujitsu.com (Postfix) with ESMTPS id D9FD9820405 for ; Mon, 4 Aug 2025 08:34:02 +0000 (UTC) Received: from edo.cn.fujitsu.com (edo.cn.fujitsu.com [10.167.33.5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by az2uksmgm1.o.css.fujitsu.com (Postfix) with ESMTPS id 533B0844BEC for ; Mon, 4 Aug 2025 08:34:02 +0000 (UTC) Received: from G08FNSTD200057.g08.fujitsu.local (unknown [10.193.128.28]) by edo.cn.fujitsu.com (Postfix) with ESMTP id 6A25C1A0090; Mon, 4 Aug 2025 16:33:59 +0800 (CST) From: Wang Mingyu < wangmy@fujitsu.com> To: openembedded-devel@lists.openembedded.org Cc: Wang Mingyu Subject: [oe] [meta-oe] [PATCH 18/18] xgamma: upgrade 1.0.7 -> 1.0.8 Date: Mon, 4 Aug 2025 16:33:40 +0800 Message-ID: <20250804083340.1649-18-wangmy@fujitsu.com> X-Mailer: git-send-email 2.49.0.windows.1 In-Reply-To: <20250804083340.1649-1-wangmy@fujitsu.com> References: <20250804083340.1649-1-wangmy@fujitsu.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 ; Mon, 04 Aug 2025 08:34:13 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/118851 From: Wang Mingyu Signed-off-by: Wang Mingyu --- .../xorg-app/{xgamma_1.0.7.bb => xgamma_1.0.8.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-oe/recipes-graphics/xorg-app/{xgamma_1.0.7.bb => xgamma_1.0.8.bb} (80%) diff --git a/meta-oe/recipes-graphics/xorg-app/xgamma_1.0.7.bb b/meta-oe/recipes-graphics/xorg-app/xgamma_1.0.8.bb similarity index 80% rename from meta-oe/recipes-graphics/xorg-app/xgamma_1.0.7.bb rename to meta-oe/recipes-graphics/xorg-app/xgamma_1.0.8.bb index dc9cbadb4c..1f1a9b51bf 100644 --- a/meta-oe/recipes-graphics/xorg-app/xgamma_1.0.7.bb +++ b/meta-oe/recipes-graphics/xorg-app/xgamma_1.0.8.bb @@ -12,4 +12,4 @@ DEPENDS += "libxxf86vm" BBCLASSEXTEND = "native" SRC_URI_EXT = "xz" -SRC_URI[sha256sum] = "1c79dae85a8953a15f4fe5c2895a033307b43b8613456c87ec47b374b113bc8f" +SRC_URI[sha256sum] = "98f9f69e53a11c354a6637ea5c3d7699ceb5c5b1f8ad6f0a14d9931e5a10d079"