mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-qt/qt5compat: add 6.7.0_rc
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST qt5compat-everywhere-src-6.6.2.tar.xz 14632168 BLAKE2B b1020344d2c4803b9d76faee15727604b560e2b98a0699507245160df149361453a8c2082cbe37193d7dece673212dc5a6b0f1961e9cc15112152f7b31ed2ba2 SHA512 12e4142ce8e9b0863ee5d39c37f9a04ef696fd34c98b5d955464a1cfcc7d55ea8387b6238a49d9e9380f8c95f4b655ffa64fe250f27fee3d4e9f48065bcabb6a
|
||||
DIST qt5compat-everywhere-src-6.7.0-rc.tar.xz 14633024 BLAKE2B b72f7db3bdf1ad14f5a51f5e01b707b2728b5fc7c6f5f3071446cc25366f4f4c46e2133da134281052ee9e5ee2aaf4bb9307b12dddbd5d37c16cfbba06e0228e SHA512 d0c031fd80724530143abbc7eff1bb4af56f2f199d4e9210d155ba27e4b8c29c134792c8372206af9efdb87796f922b264c39488147c7f5498441d91021aacb2
|
||||
|
||||
37
dev-qt/qt5compat/qt5compat-6.7.0_rc.ebuild
Normal file
37
dev-qt/qt5compat/qt5compat-6.7.0_rc.ebuild
Normal file
@@ -0,0 +1,37 @@
|
||||
# Copyright 2023-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit qt6-build
|
||||
|
||||
DESCRIPTION="Qt module containing the unsupported Qt 5 APIs"
|
||||
|
||||
if [[ ${QT6_BUILD_TYPE} == release ]]; then
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~x86"
|
||||
fi
|
||||
|
||||
IUSE="icu qml"
|
||||
|
||||
RDEPEND="
|
||||
~dev-qt/qtbase-${PV}:6[gui,icu=,network,xml]
|
||||
icu? ( dev-libs/icu:= )
|
||||
qml? (
|
||||
~dev-qt/qtdeclarative-${PV}:6
|
||||
~dev-qt/qtshadertools-${PV}:6
|
||||
)
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
$(cmake_use_find_package qml Qt6Quick)
|
||||
)
|
||||
|
||||
qt6-build_src_configure
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# tst_qxmlinputsource sometimes hang without -j1
|
||||
qt6-build_src_test -j1
|
||||
}
|
||||
Reference in New Issue
Block a user