mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-17 14:49:30 -07:00
dev-qt/qtvirtualkeyboard: add 6.9.0
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST qtvirtualkeyboard-everywhere-opensource-src-5.15.16.tar.xz 10951872 BLAKE2B 5e05b68162e779df73c209f959bb641b7c4eb20badf8299fa7277c99b86e4462fe6d5f98c2c9ae1bc49f4995b61eb0132428409a3286d24232f20cb214686996 SHA512 af7ca963784773b94bfed000cabf5dbfb6363211d6b2601ccb6aed26eccd2eaa1e34dc8e7a6f1bbc678432f4086284df82c66e8da1c7fc7c8f5ec37983f687b9
|
||||
DIST qtvirtualkeyboard-everywhere-src-6.8.2.tar.xz 3264624 BLAKE2B 8cd1f41428f7472faeb8ebf728f0d2770605dc88070a9a389ca80cc5a02d3624aa49202586f3a471ccba442ec159985c76d4642a72e0df6abf91520aab71b638 SHA512 047ea1f7c6c43bb4ddaea67f46819e61e878419c9dda599198cccf80bb53b002d79c44d0ce1df5727711ba45d0528400bc6643d3a9a9b0cc608497558c3013b2
|
||||
DIST qtvirtualkeyboard-everywhere-src-6.8.3.tar.xz 3288724 BLAKE2B 23322cd90f480cb48f05337c18f77ad0e0d9e806ee0a5876e1a17b15437c3b08c11ebe2889ad6f51bf20e9e48b47b73e76ae1de8c093ce9dd7bb8ede09e6f5ee SHA512 a128c8210eec799d81c76b20e32e3c09ccb345d822b5c59b1fbf0960a1e2bec50c43140d86aaae9419a1fc514fc3e14bd283f612bf9133676db1a21e7217f528
|
||||
DIST qtvirtualkeyboard-everywhere-src-6.9.0.tar.xz 3269196 BLAKE2B b867eca12b2b0f3291f5e7e7f4995b1c768e8e6c830b6e7d92bf9ce9e0b0d390827f030478b7fa77c58220fee7f1c4fcdd1f978372e34421d37d05b25f095bab SHA512 f480207b0066da46fc3adca66262c74f604e14b3480c3ae26f21c419f6a9e030043c31117ca04d749cb5cbdc4452b83a42e9ae784c8ec5d8809ce8773d2d76cf
|
||||
|
||||
53
dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-6.9.0.ebuild
Normal file
53
dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-6.9.0.ebuild
Normal file
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user