From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1661768-garchives=archives.gentoo.org@lists.gentoo.org> 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 97DC115852A for <garchives@archives.gentoo.org>; Thu, 15 Aug 2024 08:11:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3F4FE2A1B; Thu, 15 Aug 2024 08:11:49 +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 94CF0E2A18 for <gentoo-commits@lists.gentoo.org>; Thu, 15 Aug 2024 08:11:49 +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 B1E6F340C76 for <gentoo-commits@lists.gentoo.org>; Thu, 15 Aug 2024 08:11:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00D011EF2 for <gentoo-commits@lists.gentoo.org>; Thu, 15 Aug 2024 08:11:46 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> 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" <asturm@gentoo.org> Message-ID: <1723709227.c4efd012208180e2be1909ba08d4db611c0eb8fa.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: media-gfx/kio-raw-thumbnailer/ X-VCS-Repository: proj/kde X-VCS-Files: media-gfx/kio-raw-thumbnailer/kio-raw-thumbnailer-24.08.49.9999.ebuild X-VCS-Directories: media-gfx/kio-raw-thumbnailer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c4efd012208180e2be1909ba08d4db611c0eb8fa X-VCS-Branch: master Date: Thu, 15 Aug 2024 08:11:46 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b503d6aa-e53d-49c8-83d4-ad53978a3a02 X-Archives-Hash: 999e39421cbd8bf967def16bde0f0dc6 commit: c4efd012208180e2be1909ba08d4db611c0eb8fa Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Thu Aug 15 07:53:24 2024 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Thu Aug 15 08:07:07 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=c4efd012 media-gfx/kio-raw-thumbnailer: 24.08.49.9999 version bump Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> .../kio-raw-thumbnailer-24.08.49.9999.ebuild | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/media-gfx/kio-raw-thumbnailer/kio-raw-thumbnailer-24.08.49.9999.ebuild b/media-gfx/kio-raw-thumbnailer/kio-raw-thumbnailer-24.08.49.9999.ebuild new file mode 100644 index 0000000000..9e2b12d531 --- /dev/null +++ b/media-gfx/kio-raw-thumbnailer/kio-raw-thumbnailer-24.08.49.9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_NAME="kdegraphics-thumbnailers" +PVCUT=$(ver_cut 1-3) +KFMIN=6.5.0 +QTMIN=6.7.2 +inherit ecm gear.kde.org + +DESCRIPTION="KIO thumbnail generator for RAW files" +HOMEPAGE="https://apps.kde.org/kdegraphics_thumbnailers/" + +LICENSE="GPL-2+" +SLOT="6" +KEYWORDS="" + +DEPEND=" + >=dev-qt/qtbase-${QTMIN}:6[gui] + >=kde-apps/libkdcraw-${PVCUT}:6 + >=kde-apps/libkexiv2-${PVCUT}:6 + >=kde-frameworks/kio-${KFMIN}:6 +" +RDEPEND="${DEPEND} + !<kde-apps/thumbnailers-24.05.2-r1:6 +" + +src_prepare() { + ecm_src_prepare + ecm_punt_kf_module Archive +} + +src_configure() { + local mycmakeargs=( + -DBUILD_blend=OFF + -DBUILD_ps=OFF + -DDISABLE_MOBIPOCKET=ON + -DCMAKE_DISABLE_FIND_PACKAGE_QMobipocket6=ON + ) + + ecm_src_configure +}