Diff qttranslations-5.15.10 with a qttranslations-6.5.2

/usr/portage/dev-qt/qttranslations/qttranslations-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
if [[ ${PV} != *9999* ]]; then
7
	KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~sparc x86"
8
fi
9

  
10
inherit qt5-build
6
inherit qt6-build
11 7

  
12
DESCRIPTION="Translation files for the Qt5 framework"
8
DESCRIPTION="Translation files for the Qt6 framework"
13 9

  
14
IUSE=""
10
if [[ ${QT6_BUILD_TYPE} == release ]]; then
11
	KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ~x86"
12
fi
15 13

  
16
DEPEND="=dev-qt/qtcore-${QT5_PV}*"
17
BDEPEND="=dev-qt/linguist-tools-${QT5_PV}*"
14
DEPEND="~dev-qt/qtbase-${PV}:6"
15
BDEPEND="~dev-qt/qttools-${PV}:6[linguist]"
Thank you!