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 49827158091 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 C0146E0895; 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 7DBC6E0895 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 86E79341700 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 A314B518 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.830bd0102e8b5907b7bcb4ef423d4b68088c1e1c.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/breeze-icons/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/breeze-icons/breeze-icons-5.95.0.ebuild X-VCS-Directories: kde-frameworks/breeze-icons/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 830bd0102e8b5907b7bcb4ef423d4b68088c1e1c 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: b5252e66-be9d-4e7a-a4b9-d4c006eb5753 X-Archives-Hash: 271088610dae75b32cedde7d517adf76 commit: 830bd0102e8b5907b7bcb4ef423d4b68088c1e1c Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jun 10 07:26:47 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=830bd010 kde-frameworks/breeze-icons: 5.95.0 version bump Signed-off-by: Andreas Sturmlechner gentoo.org> .../breeze-icons/breeze-icons-5.95.0.ebuild | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/kde-frameworks/breeze-icons/breeze-icons-5.95.0.ebuild b/kde-frameworks/breeze-icons/breeze-icons-5.95.0.ebuild new file mode 100644 index 0000000000..152a388fe1 --- /dev/null +++ b/kde-frameworks/breeze-icons/breeze-icons-5.95.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PVCUT=$(ver_cut 1-2) +PYTHON_COMPAT=( python3_{8..10} ) +inherit cmake kde.org python-any-r1 xdg-utils + +DESCRIPTION="Breeze SVG icon theme" + +LICENSE="LGPL-3" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="test" + +RESTRICT="!test? ( test )" + +DEPEND="test? ( dev-qt/qttest:5 )" +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 ) +" + +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=OFF + ) + cmake_src_configure +} + +src_install() { + cmake_src_install + # bug 770988 + find "${ED}"/usr/share/icons/ -type d -empty -delete || die + find "${ED}"/usr/share/icons/ -xtype l -delete || die +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +}