From patchwork Thu Apr 16 10:30:58 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 86275 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 B5225F8A159 for ; Thu, 16 Apr 2026 10:31:12 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.10859.1776335470991014968 for ; Thu, 16 Apr 2026 03:31:11 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=oFP+AVFI; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id AAD8825E2 for ; Thu, 16 Apr 2026 03:31:04 -0700 (PDT) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id E260B3F7D8 for ; Thu, 16 Apr 2026 03:31:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1776335470; bh=phGamMS4N8qEBBm/N5UFxIlyDQ6PKCpuTj2Ngw1ASjU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=oFP+AVFIH3HxZmxjDupZnUfwcQ6AHHNCECOY227dVRGpeNYyaWKfhrr1jRhlSpg9O DCvG7bDexamc+shcLPPwZZPLW5Q+5FAWKWL5be72gWaWRQ61YQeKBSlAraTK81Ihnw CVhMFPv1uFZa1lbfa+sw9MNuwzumI4HtUx37ATbs= From: Ross Burton To: openembedded-core@lists.openembedded.org Subject: [PATCH v3 2/4] libsoup: actually apply patches for CVE-2025-32049 and CVE-2026-1539 Date: Thu, 16 Apr 2026 11:30:58 +0100 Message-ID: <20260416103100.3152304-2-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260416103100.3152304-1-ross.burton@arm.com> References: <20260416103100.3152304-1-ross.burton@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Thu, 16 Apr 2026 10:31:12 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/235394 The patches were added to SRC_URI before inheriting gnomebase, which does SRC_URI = "...". This means the patches were never actually part of SRC_URI, so never applied. Signed-off-by: Ross Burton --- meta/recipes-support/libsoup/libsoup_3.6.6.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-support/libsoup/libsoup_3.6.6.bb b/meta/recipes-support/libsoup/libsoup_3.6.6.bb index 981e74d8160..b51368adb64 100644 --- a/meta/recipes-support/libsoup/libsoup_3.6.6.bb +++ b/meta/recipes-support/libsoup/libsoup_3.6.6.bb @@ -9,6 +9,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2" DEPENDS = "glib-2.0 glib-2.0-native libxml2 sqlite3 libpsl nghttp2" +inherit gettext gnomebase upstream-version-is-even gobject-introspection gi-docgen vala + SRC_URI[archive.sha256sum] = "51ed0ae06f9d5a40f401ff459e2e5f652f9a510b7730e1359ee66d14d4872740" SRC_URI += "file://CVE-2025-32049-1.patch \ @@ -20,8 +22,6 @@ SRC_URI += "file://CVE-2025-32049-1.patch \ PROVIDES = "libsoup-3.0" -inherit gettext gnomebase upstream-version-is-even gobject-introspection gi-docgen vala - GIR_MESON_ENABLE_FLAG = 'enabled' GIR_MESON_DISABLE_FLAG = 'disabled'