kde-frameworks/breeze-icons: 6.13.0 version bump

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-04-11 21:06:22 +02:00
parent 9469cb4255
commit 2e8ba9c83e
2 changed files with 49 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST breeze-icons-6.10.0.tar.xz 2255876 BLAKE2B c1f1743e7cd19c1e9c0f3ab499ec233404c33fb76b2b897e5b9d2da9516156c676246f886bee399d886e6222677d18911b681c72c69781a4322250e1bbb619c6 SHA512 e843f5704302db371b9588b2fbdfa82852108b20e7c532ec19afacefd45049e0164c7c2fc7f8af46c22f1446d4a78bbeaa9995bb6d52471a14f52c6ba4d556c3
DIST breeze-icons-6.12.0.tar.xz 2256036 BLAKE2B b42850a86781fdc87155e535494b130506c006235997a40c5727c477d85d756fc3cc669dd6379dd634f17c238812f83f0a6b9840211eb57ad0c86a08083282a6 SHA512 eb6088ecb771e4b6a998223ec3b6addd13bb6b10d59c4ec2d6e9e54b95ed2f6b80a52f453cac13f24dc080bc7eca292fbdfe7a52be35a543ed46e154f52731f4
DIST breeze-icons-6.13.0.tar.xz 2255616 BLAKE2B e81489fdc704b0a5d15f4af693214c4b07846d43b0e99c0a029828c8e729c3c05475d96b9556b13d825e00797d8a1a03c843f6d85c4b69ac5a03b9da4c51ef1f SHA512 03734a0838b2545d4320d9a0b75625558cb83247cd1c455c909cca917a8c7e4b46df3ff4ea9d0935237a57d6bf1387e290b1005e3eb01c46d506339d5ca68687

View File

@@ -0,0 +1,48 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
inherit cmake frameworks.kde.org python-any-r1 xdg
DESCRIPTION="Breeze SVG icon theme"
LICENSE="LGPL-3"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
!kde-frameworks/${PN}:5
!kde-frameworks/${PN}-rcc:5
!kde-frameworks/${PN}-rcc:6
"
BDEPEND="${PYTHON_DEPS}
$(python_gen_any_dep 'dev-python/lxml[${PYTHON_USEDEP}]')
dev-qt/qtbase:6[gui]
>=kde-frameworks/extra-cmake-modules-${KDE_CATV}:*
test? ( app-misc/fdupes )
"
python_check_deps() {
python_has_version "dev-python/lxml[${PYTHON_USEDEP}]"
}
src_configure() {
local mycmakeargs=(
-DPython_EXECUTABLE="${PYTHON}"
-DBINARY_ICONS_RESOURCE=ON # TODO: remove when kexi was ported away
-DSKIP_INSTALL_ICONS=OFF
-DBUILD_TESTING="$(usex test)"
)
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
}