kde-frameworks/kconfig: 6.24.0 version bump

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2026-03-13 21:14:23 +01:00
parent 2effce7a6a
commit c8d2605a67
2 changed files with 37 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST kconfig-6.23.0.tar.xz 360852 BLAKE2B 976a67ec8fb3826b57720efbfeaf45e1214da8735f46e7d97c49d5947167be636d2af0957974e78db487ef672882975faf08da5f01473213460afdcdcac744cf SHA512 d2817a90a30fcd22121cd69bf461f147870d899236ecd8fd98457bdc065a59e8d0e3a0bf0860e0e4f783d8f1aac0944fa04e396583cfd4a5c469ad2a72b020c2
DIST kconfig-6.24.0.tar.xz 375852 BLAKE2B 1765e2971e0247dbdd1fa04ff714770f439426a380d9b47b0d8f39fc01bde475a6ae715e726f3361d93df9e9a1b2f0d3ddd024fd590939aefb3a279d45b0d25c SHA512 8a3240750a2f6563b4c004a7f12689c46566271083bb0e500816a98793228ec31fa2a192183b11b7240ae6025848c4e43945ffd936bd87adb11de20a2cfb32b3

View File

@@ -0,0 +1,36 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
QTMIN=6.10.1
inherit ecm frameworks.kde.org
DESCRIPTION="Framework for reading and writing configuration"
LICENSE="LGPL-2+"
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
IUSE="dbus qml"
REQUIRED_USE="test? ( qml )"
# bug 560086
RESTRICT="test"
RDEPEND="
>=dev-qt/qtbase-${QTMIN}:6[dbus?,gui,xml]
qml? ( >=dev-qt/qtdeclarative-${QTMIN}:6 )
"
DEPEND="${RDEPEND}
test? ( >=dev-qt/qtbase-${QTMIN}:6[concurrent] )
"
BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]"
DOCS=( DESIGN docs/{DESIGN.kconfig,options.md} )
src_configure() {
local mycmakeargs=(
-DUSE_DBUS=$(usex dbus)
-DKCONFIG_USE_QML=$(usex qml)
)
ecm_src_configure
}