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 EBE87158091 for ; Fri, 10 Jun 2022 07:52:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0F52E0898; Fri, 10 Jun 2022 07:52:21 +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 8C09AE0898 for ; Fri, 10 Jun 2022 07:52:21 +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 A1E7D341684 for ; Fri, 10 Jun 2022 07:52:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B63CC4FA for ; Fri, 10 Jun 2022 07:52:17 +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: <1654846331.35a2a5d95ae352bd9f17a837e772031bdc76c772.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/breeze-icons-rcc/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.95.0.ebuild X-VCS-Directories: kde-frameworks/breeze-icons-rcc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 35a2a5d95ae352bd9f17a837e772031bdc76c772 X-VCS-Branch: master Date: Fri, 10 Jun 2022 07:52:17 +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: 6d8890a6-cc58-49ef-853f-b0d2781777b1 X-Archives-Hash: fe72e726d1547d9febc32abd39aa4b21 commit: 35a2a5d95ae352bd9f17a837e772031bdc76c772 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jun 10 07:26:48 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jun 10 07:32:11 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=35a2a5d9 kde-frameworks/breeze-icons-rcc: 5.95.0 version bump Signed-off-by: Andreas Sturmlechner gentoo.org> .../breeze-icons-rcc-5.95.0.ebuild | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.95.0.ebuild b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.95.0.ebuild new file mode 100644 index 0000000000..41c19ea3eb --- /dev/null +++ b/kde-frameworks/breeze-icons-rcc/breeze-icons-rcc-5.95.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_NAME="breeze-icons" +PVCUT=$(ver_cut 1-2) +PYTHON_COMPAT=( python3_{8..10} ) +inherit cmake kde.org python-any-r1 + +DESCRIPTION="Breeze SVG icon theme binary resource" +LICENSE="LGPL-3" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" +IUSE="test" + +RESTRICT="!test? ( test )" + +BDEPEND="${PYTHON_DEPS} + $(python_gen_any_dep 'dev-python/lxml[${PYTHON_USEDEP}]') + dev-qt/qtcore:5 + >=kde-frameworks/extra-cmake-modules-${PVCUT}:5 + test? ( app-misc/fdupes ) +" +DEPEND="test? ( dev-qt/qttest:5 )" + +python_check_deps() { + has_version "dev-python/lxml[${PYTHON_USEDEP}]" +} + +src_prepare() { + cmake_src_prepare + use test || cmake_comment_add_subdirectory autotests +} + +src_configure() { + local mycmakeargs=( + -DPython_EXECUTABLE="${PYTHON}" + -DBINARY_ICONS_RESOURCE=ON + -DSKIP_INSTALL_ICONS=ON + ) + cmake_src_configure +}