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 450F9158021 for ; Sun, 16 Oct 2022 09:25:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7727EE0866; Sun, 16 Oct 2022 09:25:56 +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 5EE85E0866 for ; Sun, 16 Oct 2022 09:25:56 +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 06E77340F30 for ; Sun, 16 Oct 2022 09:25:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D483617 for ; Sun, 16 Oct 2022 09:25:53 +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: <1665912342.63bfe89cd08babb7aebb800e7a6e22d4e94d5d1c.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.99.0.ebuild X-VCS-Directories: kde-frameworks/kimageformats/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 63bfe89cd08babb7aebb800e7a6e22d4e94d5d1c X-VCS-Branch: master Date: Sun, 16 Oct 2022 09:25:53 +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: e5d3c4b1-a942-49c3-8a72-296927c12ccc X-Archives-Hash: 36c7a2c3d9c42b12dbfacf654509e620 commit: 63bfe89cd08babb7aebb800e7a6e22d4e94d5d1c Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 16 09:25:42 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 16 09:25:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63bfe89c kde-frameworks/kimageformats: drop 5.99.0 Signed-off-by: Andreas Sturmlechner gentoo.org> .../kimageformats/kimageformats-5.99.0.ebuild | 42 ---------------------- 1 file changed, 42 deletions(-) diff --git a/kde-frameworks/kimageformats/kimageformats-5.99.0.ebuild b/kde-frameworks/kimageformats/kimageformats-5.99.0.ebuild deleted file mode 100644 index 9721b97462eb..000000000000 --- a/kde-frameworks/kimageformats/kimageformats-5.99.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2022 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.5 -VIRTUALX_REQUIRED="test" -inherit ecm frameworks.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 jpegxl openexr raw" - -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:= ) - jpegxl? ( media-libs/libjxl ) - openexr? ( >=media-libs/openexr-3:= ) - raw? ( media-libs/libraw:= ) -" -RDEPEND="${DEPEND}" - -DOCS=( src/imageformats/AUTHORS ) - -src_configure() { - local mycmakeargs=( - -DKIMAGEFORMATS_JXL=$(usex jpegxl) - $(cmake_use_find_package avif libavif) - $(cmake_use_find_package eps Qt5PrintSupport) - -DKIMAGEFORMATS_HEIF=$(usex heif) - $(cmake_use_find_package openexr OpenEXR) - $(cmake_use_find_package raw LibRaw) - ) - ecm_src_configure -}