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 94572158041 for ; Wed, 20 Mar 2024 15:14:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4BCBE29AD; Wed, 20 Mar 2024 15:14:02 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0038E29AD for ; Wed, 20 Mar 2024 15:14:02 +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 B317C33FE60 for ; Wed, 20 Mar 2024 15:14:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE648FC2 for ; Wed, 20 Mar 2024 15:13:59 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1710947636.1b94b6c1b4a09d1d9d43933f8552437292ef2eeb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libjxl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libjxl/libjxl-0.9.1-r1.ebuild X-VCS-Directories: media-libs/libjxl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1b94b6c1b4a09d1d9d43933f8552437292ef2eeb X-VCS-Branch: master Date: Wed, 20 Mar 2024 15:13:59 +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: e7c2407a-dc46-47f7-9e50-d4ea44ebc92e X-Archives-Hash: 4c4160088e17cae79509c404b629e644 commit: 1b94b6c1b4a09d1d9d43933f8552437292ef2eeb Author: Aliaksei Urbanski gmail com> AuthorDate: Tue Mar 19 20:14:31 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Mar 20 15:13:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b94b6c1 media-libs/libjxl-0.9.1-r1: fix gdk_pixbuf_update execution gnome2_gdk_pixbuf_update was never executed since multilib_foreach_impl doesn't exist. multilib_foreach_abi should be used instead. Signed-off-by: Aliaksei Urbanski gmail.com> Closes: https://github.com/gentoo/gentoo/pull/35826 Signed-off-by: Michał Górny gentoo.org> media-libs/libjxl/libjxl-0.9.1-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/libjxl/libjxl-0.9.1-r1.ebuild b/media-libs/libjxl/libjxl-0.9.1-r1.ebuild index 521e8e5b5653..5bcd6ac6d8fa 100644 --- a/media-libs/libjxl/libjxl-0.9.1-r1.ebuild +++ b/media-libs/libjxl/libjxl-0.9.1-r1.ebuild @@ -102,9 +102,9 @@ multilib_src_install() { } pkg_postinst() { - use gdk-pixbuf && multilib_foreach_impl gnome2_gdk_pixbuf_update + use gdk-pixbuf && multilib_foreach_abi gnome2_gdk_pixbuf_update } pkg_postrm() { - use gdk-pixbuf && multilib_foreach_impl gnome2_gdk_pixbuf_update + use gdk-pixbuf && multilib_foreach_abi gnome2_gdk_pixbuf_update }