From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (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 finch.gentoo.org (Postfix) with ESMTPS id AFF38158041 for ; Wed, 27 Mar 2024 07:55:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B1C7E2A42; Wed, 27 Mar 2024 07:55:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76B60E2A42 for ; Wed, 27 Mar 2024 07:55:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 635D6335C8E for ; Wed, 27 Mar 2024 07:55:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7354415C7 for ; Wed, 27 Mar 2024 07:55:35 +0000 (UTC) From: "Matt Jolly" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Jolly" Message-ID: <1711526018.ce49374a3c3df7571a6cd2c420d8c83b13ee88da.kangie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/files/chromium-124-libwebp-shim-sharpyuv.patch X-VCS-Directories: www-client/chromium/files/ X-VCS-Committer: kangie X-VCS-Committer-Name: Matt Jolly X-VCS-Revision: ce49374a3c3df7571a6cd2c420d8c83b13ee88da X-VCS-Branch: master Date: Wed, 27 Mar 2024 07:55:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 53a55143-3eb2-474b-a975-77f89e9109e0 X-Archives-Hash: 5926bcb4895cd0cef7df787dee8b98f6 commit: ce49374a3c3df7571a6cd2c420d8c83b13ee88da Author: Matt Jolly gentoo org> AuthorDate: Wed Mar 27 07:53:38 2024 +0000 Commit: Matt Jolly gentoo org> CommitDate: Wed Mar 27 07:53:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce49374a www-client/chromium: add missed 124 patch Closes: https://bugs.gentoo.org/927932 Signed-off-by: Matt Jolly gentoo.org> .../files/chromium-124-libwebp-shim-sharpyuv.patch | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/www-client/chromium/files/chromium-124-libwebp-shim-sharpyuv.patch b/www-client/chromium/files/chromium-124-libwebp-shim-sharpyuv.patch new file mode 100644 index 000000000000..fa038731cd4a --- /dev/null +++ b/www-client/chromium/files/chromium-124-libwebp-shim-sharpyuv.patch @@ -0,0 +1,36 @@ +From 40c466949bd8ccb61cb55655848d23684a9f8a94 Mon Sep 17 00:00:00 2001 +From: Matt Jolly +Date: Mon, 25 Mar 2024 21:38:35 +1000 +Subject: [PATCH] libwebp shim: add libwebp_sharpyuv target + +Signed-off-by: Matt Jolly +--- a/build/linux/unbundle/libwebp.gn ++++ b/build/linux/unbundle/libwebp.gn +@@ -22,14 +22,24 @@ shim_headers("libwebp_shim") { + "webp/mux.h", + "webp/mux_types.h", + "webp/types.h", ++ "webp/sharpyuv/sharpyuv.h", ++ "webp/sharpyuv/sharpyuv_csp.h", + ] + } + ++source_set("libwebp_sharpyuv") { ++ deps = [ ":libwebp_shim" ] ++ public_configs = [ ":system_libwebp" ] ++} ++ + source_set("libwebp_webp") { + deps = [ ":libwebp_shim" ] + public_configs = [ ":system_libwebp" ] + } + + group("libwebp") { +- deps = [ ":libwebp_webp" ] ++ deps = [ ++ ":libwebp_webp", ++ ":libwebp_sharpyuv" ++ ] + } +-- +2.44.0