summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2025-08-26 06:10:21 -0400
committerIonen Wolkens <ionen@gentoo.org>2025-08-26 06:57:26 -0400
commit97b849643f9fd43c5269878954a695e88fe30573 (patch)
tree27b7f78c24bb132e7664f248f7c75ebddefcf26d
parent49ac452a85025b8cfec3c47d11632b245774a4ff (diff)
downloadgentoo-97b849643f9fd43c5269878954a695e88fe30573.tar.gz
gentoo-97b849643f9fd43c5269878954a695e88fe30573.tar.bz2
gentoo-97b849643f9fd43c5269878954a695e88fe30573.zip
dev-qt/qtvirtualkeyboard: add 6.9.2
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
-rw-r--r--dev-qt/qtvirtualkeyboard/Manifest1
-rw-r--r--dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-6.9.2.ebuild53
2 files changed, 54 insertions, 0 deletions
diff --git a/dev-qt/qtvirtualkeyboard/Manifest b/dev-qt/qtvirtualkeyboard/Manifest
index 08b7c98f71e2..7187f5a35992 100644
--- a/dev-qt/qtvirtualkeyboard/Manifest
+++ b/dev-qt/qtvirtualkeyboard/Manifest
@@ -1 +1,2 @@
DIST qtvirtualkeyboard-everywhere-src-6.9.1.tar.xz 3285440 BLAKE2B 8b0087f22246cf054d62df273525a2f219369deea0c0347dd78c7b29ca9f93a153f8812b8602c8481a922da1cb8eee0c6992cbb43eacb6995b66a2b50ce7e0d7 SHA512 97814ec5a5ae35bb2adb41c78fd82f23f2e683b02508cfcc34e8f3808f843b0e3aee4d37440158c588ae038d1427b4864062eed18bfb520a3099da36b1b51025
+DIST qtvirtualkeyboard-everywhere-src-6.9.2.tar.xz 3275760 BLAKE2B ca9acb486d3f82a7b73ff6230caf95c36d46fc7356618bea01702c1e8a446cf87dd46cffc69dc54d5f5ead02446bc463988ffdb5c274e3577600c3377077ddec SHA512 0e7bdcaa3b37499f7160c12ad7b178365b1b246a77fed6ae1903eefab4dfb09758305893a62496d515c0a762beb7602cdf73cc01a5ecbd01d47c4bfbe01a3835
diff --git a/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-6.9.2.ebuild b/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-6.9.2.ebuild
new file mode 100644
index 000000000000..accb2ea78ae5
--- /dev/null
+++ b/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-6.9.2.ebuild
@@ -0,0 +1,53 @@
+# 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 )
+ 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
+}