Diff qtquicktimeline-5.15.10 with a qtquicktimeline-6.5.2

/usr/portage/dev-qt/qtquicktimeline/qtquicktimeline-6.5.2.ebuild 2023-10-09 14:52:30.412368373 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 2021-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit qt5-build
6
inherit qt6-build
7 7

  
8 8
DESCRIPTION="Qt module for keyframe-based timeline construction"
9 9

  
10
if [[ ${QT5_BUILD_TYPE} == release ]]; then
11
	KEYWORDS="amd64 ~arm ~x86"
10
if [[ ${QT6_BUILD_TYPE} == release ]]; then
11
	KEYWORDS="amd64"
12 12
fi
13 13

  
14
DEPEND="
15
	=dev-qt/qtcore-${QT5_PV}*
16
	=dev-qt/qtdeclarative-${QT5_PV}*
14
RDEPEND="
15
	~dev-qt/qtbase-${PV}:6
16
	~dev-qt/qtdeclarative-${PV}:6
17 17
"
18
RDEPEND="${DEPEND}"
18
DEPEND="${RDEPEND}"
Thank you!