diff --git a/dev-qt/qtgraphs/Manifest b/dev-qt/qtgraphs/Manifest index e513976b00455..75cec77ab8ea6 100644 --- a/dev-qt/qtgraphs/Manifest +++ b/dev-qt/qtgraphs/Manifest @@ -1,2 +1,3 @@ DIST qtgraphs-everywhere-src-6.10.0.tar.xz 5243552 BLAKE2B c0754fbca928627a45bdf72103fc25e9586fe65293647976e1974c284639add5bfee9ae593e50abfcd653d3b05ff100ac1fe95412dc8a0f63b65de07f4226825 SHA512 77e5f740c583df9ec2d7d007d612725f6e4751a796757a354d89b889649f23f1a1ca23879e2432088071e0e4b95bd687d14586fbd3083c52a2b650c5d3c8e3c5 +DIST qtgraphs-everywhere-src-6.10.1.tar.xz 5282316 BLAKE2B 6a3f2db9b7c839496c1f5c66c69ab0686eb9f45c5fce8f7697d67d1aa13669ab8a4bad349eb266be46c58ddad2a7968513e8cceb2a9e7a350a580a11dfa3c370 SHA512 21426529c3ba9f45fce4b73e6bb4e52f5df62d5fab09b5c093b78b0246dcc537f65c3dc2378523203d44c6b7c4e860f884925c1ef73aecc733f159dec97b5e95 DIST qtgraphs-everywhere-src-6.9.3.tar.xz 5214976 BLAKE2B 2c3bfa2133acfc729586bce1286ebc614cb460bff78c45efba86070fcfd5f11f3262bd315af5ff6ff3a22d341ff394490910ce0524e4ac4a12a6c74b98cf4880 SHA512 20a3549dcd48369133d08062ea6b69fce6f990452ed8fc37f12523fa147cc005ea390ed70f95e62c8b836df4eb2c44dd525d633bb6d7d691d249d968346f2a5d diff --git a/dev-qt/qtgraphs/qtgraphs-6.10.1.ebuild b/dev-qt/qtgraphs/qtgraphs-6.10.1.ebuild new file mode 100644 index 0000000000000..72421a0dfd52a --- /dev/null +++ b/dev-qt/qtgraphs/qtgraphs-6.10.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 2025 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 +) + +src_configure() { + local mycmakeargs=( + # simpler than keeping track of and disabling every graphs-3d* features + $(cmake_use_find_package quick3d Qt6Quick3D) + ) + + cmake_src_configure +}