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 1B68D158086 for ; Mon, 20 Dec 2021 15:20:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E5E02BC017; Mon, 20 Dec 2021 15:20:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 pigeon.gentoo.org (Postfix) with ESMTPS id 085A82BC016 for ; Mon, 20 Dec 2021 15:20:25 +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 2201934309D for ; Mon, 20 Dec 2021 15:20:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B704250 for ; Mon, 20 Dec 2021 15:20:22 +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: <1640013521.3996d9fbec7246e80d83c23418a6885c22be53ab.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kimageformats/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kimageformats/kimageformats-5.89.0-r1.ebuild X-VCS-Directories: kde-frameworks/kimageformats/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3996d9fbec7246e80d83c23418a6885c22be53ab X-VCS-Branch: master Date: Mon, 20 Dec 2021 15:20:22 +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: 4f46254b-0e0a-4a5c-9745-91756d55029f X-Archives-Hash: e09b1cb088486026386b12862032fe56 commit: 3996d9fbec7246e80d83c23418a6885c22be53ab Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 20 13:43:35 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 20 15:18:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3996d9fb kde-frameworks/kimageformats: Switch to media-libs/openexr:3= Now that stable versions of media-libs/openexr:3 are available, switch to unconditionally depend on the new slot instead of trying to support both, involving a messy alternative dependency declaration with media-libs/ilmbase. See also: https://github.com/gentoo/gentoo/pull/20930 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> .../kimageformats/kimageformats-5.89.0-r1.ebuild | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/kde-frameworks/kimageformats/kimageformats-5.89.0-r1.ebuild b/kde-frameworks/kimageformats/kimageformats-5.89.0-r1.ebuild new file mode 100644 index 000000000000..633db4591250 --- /dev/null +++ b/kde-frameworks/kimageformats/kimageformats-5.89.0-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_QTHELP="false" +PVCUT=$(ver_cut 1-2) +QTMIN=5.15.2 +VIRTUALX_REQUIRED="test" +inherit ecm kde.org + +DESCRIPTION="Framework providing additional format plugins for Qt's image I/O system" +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="avif eps heif openexr" + +DEPEND=" + >=dev-qt/qtgui-${QTMIN}:5 + =kde-frameworks/karchive-${PVCUT}*:5 + avif? ( >=media-libs/libavif-0.8.2:= ) + eps? ( >=dev-qt/qtprintsupport-${QTMIN}:5 ) + heif? ( >=media-libs/libheif-1.10.0:= ) + openexr? ( media-libs/openexr:3= ) +" +RDEPEND="${DEPEND}" + +DOCS=( src/imageformats/AUTHORS ) + +src_configure() { + local mycmakeargs=( + -DKIMAGEFORMATS_JXL=OFF # TODO: libjxl not packaged yet + $(cmake_use_find_package avif libavif) + $(cmake_use_find_package eps Qt5PrintSupport) + -DKIMAGEFORMATS_HEIF=$(usex heif) + $(cmake_use_find_package openexr OpenEXR) + ) + + ecm_src_configure +}