dev-qt/qtgraphs: add 6.11.2

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
Ionen Wolkens
2026-08-18 07:15:07 -04:00
parent 606760dc87
commit 7d39654456
2 changed files with 42 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST qtgraphs-everywhere-src-6.11.1.tar.xz 9285696 BLAKE2B a1051a426811963188db900c0c409259d036b5ef6d66923ce690c7ec990fa99185b4389764e431bd4d4679ccab737b64e362da7e25ff89706c3d16c5128f241b SHA512 e9fef9b7f65c51ee3076e269fc5b8ed139ecf01295dd7e8d763e380ded1935f6224d3e7957a2ca705877aac83647a49c74573dd69ab067b49535454148fa313b
DIST qtgraphs-everywhere-src-6.11.2.tar.xz 9287464 BLAKE2B d1ee418339842eb41b5be391010851797756e3900709d99e04e6622640d37ee6b21fc8b85f5c0f16d33ba3158032a6f9c404ec3aa3ef652a48b29e0771a685ac SHA512 83472a5a27105a5979c01cd8dc2eff0a5e80c37e18d8009fa3d2ec0c67291446f687e070c621fbab7327e0176785db89bbad24f2375958d871c0641adae91544

View File

@@ -0,0 +1,41 @@
# Copyright 2025-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qt6-build
DESCRIPTION="Graphs component library for the Qt6 framework"
if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64"
fi
IUSE="quick3d"
# note: widgets is only used with quick3d and is technically optional,
# but the top level CMakeLists.txt requires through assertTargets()
RDEPEND="
~dev-qt/qtbase-${PV}:6[gui,widgets]
~dev-qt/qtdeclarative-${PV}:6
quick3d? ( ~dev-qt/qtquick3d-${PV}:6 )
"
DEPEND="${RDEPEND}"
CMAKE_SKIP_TESTS=(
# hangs+timeout with offscreen rendering
tst_qgqmltest
)
PATCHES=(
"${FILESDIR}"/${PN}-6.11.0-no-quick3d.patch
)
src_configure() {
local mycmakeargs=(
# simpler than keeping track of and disabling every graphs-3d* features
$(cmake_use_find_package quick3d Qt6Quick3D)
)
qt6-build_src_configure
}