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 88CF8158043 for ; Sat, 20 Apr 2024 12:57:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AA19E2A03; Sat, 20 Apr 2024 12:57:50 +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 6CF76E2A03 for ; Sat, 20 Apr 2024 12:57:50 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 844C3343454 for ; Sat, 20 Apr 2024 12:57:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4E0E1746 for ; Sat, 20 Apr 2024 12:57:46 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1713617840.fd5f96251585aea0a96136b348925bdc04273273.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/exiv2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/exiv2/exiv2-0.28.2-r1.ebuild X-VCS-Directories: media-gfx/exiv2/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: fd5f96251585aea0a96136b348925bdc04273273 X-VCS-Branch: master Date: Sat, 20 Apr 2024 12:57:46 +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: 5040f652-9df8-4250-bb16-ef6e8d75c675 X-Archives-Hash: 508a7cf305ef25ef12b63c39567061ed commit: fd5f96251585aea0a96136b348925bdc04273273 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Apr 20 12:42:05 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Apr 20 12:57:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5f9625 media-gfx/exiv2: Add IUSE jpegxl Also fix DEPENDs, amends commit 796df1b8e5b17ac16f93676c64acd055eb337cc7 Thanks-to: David Korth Closes: https://bugs.gentoo.org/915213 Signed-off-by: Andreas Sturmlechner gentoo.org> media-gfx/exiv2/exiv2-0.28.2-r1.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/media-gfx/exiv2/exiv2-0.28.2-r1.ebuild b/media-gfx/exiv2/exiv2-0.28.2-r1.ebuild index ff96fd33e732..f9cb7f722f63 100644 --- a/media-gfx/exiv2/exiv2-0.28.2-r1.ebuild +++ b/media-gfx/exiv2/exiv2-0.28.2-r1.ebuild @@ -22,20 +22,19 @@ LICENSE="GPL-2" # We may be able to change it to $(ver_cut 1-2) once e.g. # https://github.com/Exiv2/exiv2/pull/917 is merged. SLOT="0/$(ver_cut 1-2)" -IUSE="+bmff doc examples nls +png test webready +xmp" +IUSE="+bmff doc examples jpegxl nls +png test webready +xmp" RESTRICT="!test? ( test )" RDEPEND=" dev-libs/inih[${MULTILIB_USEDEP}] >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] + jpegxl? ( app-arch/brotli:=[${MULTILIB_USEDEP}] ) nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] ) png? ( sys-libs/zlib[${MULTILIB_USEDEP}] ) - webready? ( - net-misc/curl[${MULTILIB_USEDEP}] - ) + webready? ( net-misc/curl[${MULTILIB_USEDEP}] ) xmp? ( dev-libs/expat[${MULTILIB_USEDEP}] ) " -DEPEND="${DEPEND} +DEPEND="${RDEPEND} test? ( dev-cpp/gtest ) " BDEPEND=" @@ -74,7 +73,7 @@ src_prepare() { multilib_src_configure() { local mycmakeargs=( -DEXIV2_BUILD_SAMPLES=NO - -DEXIV2_ENABLE_BROTLI=OFF + -DEXIV2_ENABLE_BROTLI=$(usex jpegxl) -DEXIV2_ENABLE_NLS=$(usex nls) -DEXIV2_ENABLE_PNG=$(usex png) -DEXIV2_ENABLE_CURL=$(usex webready)