From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 0FB3C1582EF for ; Tue, 04 Mar 2025 23:54:38 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id EA813343025 for ; Tue, 04 Mar 2025 23:54:37 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id ED8051102D0; Tue, 04 Mar 2025 23:54:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id DF3071102D0 for ; Tue, 04 Mar 2025 23:54:36 +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 8CB90343025 for ; Tue, 04 Mar 2025 23:54:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC6BF285A for ; Tue, 04 Mar 2025 23:54:34 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1741132237.2e6f03ba215e10afa60360cf6833399ce622342d.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/imlib2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/imlib2/imlib2-1.12.3-r1.ebuild media-libs/imlib2/imlib2-1.12.3.ebuild X-VCS-Directories: media-libs/imlib2/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 2e6f03ba215e10afa60360cf6833399ce622342d X-VCS-Branch: master Date: Tue, 04 Mar 2025 23:54:34 +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: 2ea6a876-883f-40b2-98b4-583ae7185180 X-Archives-Hash: 6c5134856f536cff0faf95cd61e6af73 commit: 2e6f03ba215e10afa60360cf6833399ce622342d Author: NRK disroot org> AuthorDate: Tue Mar 4 21:10:53 2025 +0000 Commit: Yixun Lan gentoo org> CommitDate: Tue Mar 4 23:50:37 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e6f03ba media-libs/imlib2: fix zlib dependency on 1.12.3 since v1.12.3 zlib is a mandatory dependency: https://git.enlightenment.org/old/legacy-imlib2/commit/f8a45104387184c7ec7e29f9e3164018443d6160 Closes: https://github.com/gentoo/gentoo/pull/40893 Signed-off-by: NRK disroot.org> Signed-off-by: Yixun Lan gentoo.org> media-libs/imlib2/{imlib2-1.12.3.ebuild => imlib2-1.12.3-r1.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/media-libs/imlib2/imlib2-1.12.3.ebuild b/media-libs/imlib2/imlib2-1.12.3-r1.ebuild similarity index 95% rename from media-libs/imlib2/imlib2-1.12.3.ebuild rename to media-libs/imlib2/imlib2-1.12.3-r1.ebuild index 9519e8e06cee..267599ffa4b1 100644 --- a/media-libs/imlib2/imlib2-1.12.3.ebuild +++ b/media-libs/imlib2/imlib2-1.12.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -21,6 +21,7 @@ raw +shm static-libs svg +text +tiff +webp zlib" REQUIRED_USE="shm? ( X )" +# NOTE: zlib is required even if zlib loader is disabled RDEPEND=" X? ( x11-libs/libX11[${MULTILIB_USEDEP}] @@ -41,7 +42,7 @@ RDEPEND=" svg? ( >=gnome-base/librsvg-2.46.0:=[${MULTILIB_USEDEP}] ) tiff? ( >=media-libs/tiff-4.0.4:=[${MULTILIB_USEDEP}] ) webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] ) - zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] ) + sys-libs/zlib[${MULTILIB_USEDEP}] !