dev-qt/qtscript: add 5.15.17

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-05-22 22:35:00 +02:00
parent 5eaf126bdc
commit 6e744df0a4
2 changed files with 38 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST qtscript-everywhere-opensource-src-5.15.16.tar.xz 2656892 BLAKE2B a563a1e271dba4f9b654729fbbff67378209ba3173bf7e3c6c560e3d5432a952bd6ac0465e6927abe98f7db8e2e359d0215c3dcab728af868ab75b54f2717db0 SHA512 6f209db647823084c3a9894e25e65b3161d3e14f2dc06f79c2503a319bb7449259450e8845fb76461a75be7faa1ad18fec8c4724da2754e626d7797717915e0c
DIST qtscript-everywhere-opensource-src-5.15.17.tar.xz 2658400 BLAKE2B 161a954d469e0cb87b188063f61e70e557cc2fc8eaef12ba4850b6d967967b0917632d37e0efd15c4e3f0e002fb37e95b15345c3b9f7569ad04952e9b3de5d7e SHA512 72e4478e9a2adc8092431dc40985b43d4cafe9b849b76cccfdd15fdcdc992dd2c137220f75f5d2abf037c8ce3c68b4759022bf504801f1c88597d7c83d9971fe

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qt5-build
DESCRIPTION="Application scripting library for the Qt5 framework (deprecated)"
if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
fi
IUSE="+jit scripttools"
DEPEND="
=dev-qt/qtcore-${QT5_PV}*
scripttools? (
=dev-qt/qtgui-${QT5_PV}*
=dev-qt/qtwidgets-${QT5_PV}*
)
"
RDEPEND="${DEPEND}"
src_prepare() {
qt_use_disable_mod scripttools widgets \
src/src.pro
qt5-build_src_prepare
}
src_configure() {
local myqmakeargs=(
JAVASCRIPTCORE_JIT=$(usex jit)
)
qt5-build_src_configure
}