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 0E1FF15852A for ; Wed, 21 Aug 2024 21:51:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7576F2BC016; Wed, 21 Aug 2024 21:51:19 +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 06005E2A7F for ; Wed, 21 Aug 2024 21:51:19 +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 0696D340CA7 for ; Wed, 21 Aug 2024 21:51:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 651B81EFD for ; Wed, 21 Aug 2024 21:51:16 +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: <1724274876.369ef68988424eda5c02212ec242115868f41145.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kdesdk-thumbnailers/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kdesdk-thumbnailers/kdesdk-thumbnailers-24.05.2-r1.ebuild X-VCS-Directories: kde-apps/kdesdk-thumbnailers/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 369ef68988424eda5c02212ec242115868f41145 X-VCS-Branch: master Date: Wed, 21 Aug 2024 21:51:16 +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: 2580ab8b-5e33-4c33-a136-f2080f72cbb6 X-Archives-Hash: cee6bf29b4e7fe761e2439ab033664fe commit: 369ef68988424eda5c02212ec242115868f41145 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Aug 20 15:34:41 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 21 21:14:36 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=369ef689 kde-apps/kdesdk-thumbnailers: SLOT 5 shall RDEPEND on *-common too Signed-off-by: Andreas Sturmlechner gentoo.org> .../kdesdk-thumbnailers-24.05.2-r1.ebuild | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/kde-apps/kdesdk-thumbnailers/kdesdk-thumbnailers-24.05.2-r1.ebuild b/kde-apps/kdesdk-thumbnailers/kdesdk-thumbnailers-24.05.2-r1.ebuild new file mode 100644 index 000000000000..9792926cb301 --- /dev/null +++ b/kde-apps/kdesdk-thumbnailers/kdesdk-thumbnailers-24.05.2-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KFMIN=5.115.0 +QTMIN=5.15.12 +inherit ecm gear.kde.org + +DESCRIPTION="Thumbnail generator for PO files" + +LICENSE="GPL-2" # TODO: CHECK +SLOT="5" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" +IUSE="" + +DEPEND=" + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtwidgets-${QTMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 + sys-devel/gettext +" +RDEPEND="${DEPEND} + ${CATEGORY}/${PN}-common +" + +ECM_REMOVE_FROM_INSTALL=( + /usr/share/config.kcfg/pocreatorsettings.kcfg +) + +src_prepare() { + ecm_src_prepare + ecm_punt_po_install +}