dev-qt/qtvirtualkeyboard: drop 6.10.0

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
Ionen Wolkens
2025-11-22 08:09:57 -05:00
parent 55c8843d18
commit 58f08781e0
2 changed files with 0 additions and 54 deletions

View File

@@ -1,3 +1,2 @@
DIST qtvirtualkeyboard-everywhere-src-6.10.0.tar.xz 3282960 BLAKE2B 52cf6a1ccdc78eb2c2ac7cc6a53b16827fb690d896a6b42bd7f2b583a2752786b124092e4346983729d3d3d16077fc70145b953a7b8bf26629ab08a71d0e4d7f SHA512 9465bf6ac8671450357b003aeb1f62fe4972231bbecf892f0f4d1537ce2ac6c74ae2a1595fa57f69e7a5f21b4ad5f9e5838733e24fc06f53389e3677f2d4d9a7
DIST qtvirtualkeyboard-everywhere-src-6.10.1.tar.xz 3269920 BLAKE2B 515a075acf2f026c69c528aa33562041efbb6346c0c5179f1e5ce3271a1fd8f4574b6789bd9b59d76819bc7af183a450e30e188efb5101fc7fb41fb95050d3f1 SHA512 84c42fb43fc4c604d90d57c0d85d035a730c3eec025dbaec330eca46d424e283872679cb38016284cef5efedc3dc27abbe786a850dbc2de7a58a09e145ae07e5
DIST qtvirtualkeyboard-everywhere-src-6.9.3.tar.xz 3260472 BLAKE2B ccfd9162c2d519ecf9bc3254a4be0c5de35c8309fe72174a15afd52c4912c90b6112755f9ffe4b8276d65f11579d0785ebbb8dda8fb64d620651906a9867bcd1 SHA512 98a91be495adde8a0e8396883fe147f34d90f8985903c885a74a76cd6946f6d366338880f306767eee171a74df7cf5ddff079e6a67be86045c82e0356e8f7890

View File

@@ -1,53 +0,0 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qt6-build
DESCRIPTION="Customizable input framework and virtual keyboard for Qt"
if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
fi
IUSE="+sound +spell"
RDEPEND="
~dev-qt/qtbase-${PV}:6[gui]
~dev-qt/qtdeclarative-${PV}:6
~dev-qt/qtsvg-${PV}:6
sound? ( ~dev-qt/qtmultimedia-${PV}:6[qml] )
spell? ( app-text/hunspell:= )
"
DEPEND="${RDEPEND}"
src_configure() {
local mycmakeargs=(
$(cmake_use_find_package sound Qt6Multimedia)
$(qt_feature spell hunspell)
-DINPUT_vkb_handwriting=no # neither cerence nor myscript are packaged
)
qt6-build_src_configure
}
src_test() {
local CMAKE_SKIP_TESTS=(
# rarely randomly(?) fails even with -j1
tst_layoutfilesystem
)
if use spell && has_version app-dicts/myspell-en; then
# 99% pass but minor sub-tests fail with myspell-en, needs looking into
ewarn "Warning: notable tests were skipped due to ${_} being installed"
CMAKE_SKIP_TESTS+=(
tst_inputpanel
tst_inputpanelcontrols2
)
else
einfo "tst_inputpanel can take >5mins, not known to actually hang"
fi
qt6-build_src_test
}