diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-02-11 10:34:36 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-02-11 11:06:22 +0100 |
commit | 6245bb308a6af305b10a23e4809bfef9cb06c0e1 (patch) | |
tree | d35c741ecbc81c8219813f662c0d9f2c98292b1a /dev-qt/qtdeclarative | |
parent | dev-python/pytest-testinfra: Bump to 6.6.0 (diff) | |
download | gentoo-6245bb308a6af305b10a23e4809bfef9cb06c0e1.tar.gz gentoo-6245bb308a6af305b10a23e4809bfef9cb06c0e1.tar.bz2 gentoo-6245bb308a6af305b10a23e4809bfef9cb06c0e1.zip |
dev-qt/qtdeclarative: 5.15.2-r15 version bump at KDE 29ee9a0e
Joni Poikelin (1):
Fix crash during model reset
QTBUG: https://bugreports.qt.io/browse/QTBUG-83352
Marc Mutz (1):
QQmlJs::FixedPoolArray: fix UB (precondition violation) in allocate()
Ulf Hermann (1):
V4: Do not call dtor of an object we continue to use
QTBUG: https://bugreports.qt.io/browse/QTBUG-100431
Vlad Zahorodnii (1):
Make sure QQuickWidget and its offscreen window's screens are always in sync
Wang Chuan (1):
QQuickTextInput: update cursor rectangle after padding changed
QTBUG: https://bugreports.qt.io/browse/QTBUG-91867
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtdeclarative')
-rw-r--r-- | dev-qt/qtdeclarative/Manifest | 1 | ||||
-rw-r--r-- | dev-qt/qtdeclarative/qtdeclarative-5.15.2-r15.ebuild | 59 |
2 files changed, 60 insertions, 0 deletions
diff --git a/dev-qt/qtdeclarative/Manifest b/dev-qt/qtdeclarative/Manifest index f573e7b4954d..5eaadade0d6a 100644 --- a/dev-qt/qtdeclarative/Manifest +++ b/dev-qt/qtdeclarative/Manifest @@ -1 +1,2 @@ +DIST qtdeclarative-5.15.2-29ee9a0e.tar.gz 24346706 BLAKE2B 5bd518a61aaa24672164fad41599ca6cc4ed7e8ab3eac56d8a38d9b0d892f92ddc3e4f7a6a66c16043d1eb29578602a91824413283fdcf971bbfaf95e0a59af0 SHA512 7964cf301f8cceb01cc4eaa7b3a5bc1e882633f61abcd250fee6dc27110baa4e32622d0b24e2cdc3874b0518c79f6f42fa1ac434535270af3b35081e663d8cd4 DIST qtdeclarative-5.15.2-7024ac83.tar.gz 24346858 BLAKE2B 75a6a36fcf39bdf38292af1fe10b0f5bf3e72b39c8403fdbfed9c0c0a739919d93592157cf8d8f33523e8db52662f1f7d63209d173730b4c06045e9c1f0a4563 SHA512 8be70e68abd035a43ecfab7a1e23969428abf9425558875b8ee5e24a45a563afbef30d0852b495ab918b22118fa88877bb6d390cf90a928b02c96ee1e77f2331 diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r15.ebuild b/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r15.ebuild new file mode 100644 index 000000000000..f5c0300c7f2a --- /dev/null +++ b/dev-qt/qtdeclarative/qtdeclarative-5.15.2-r15.ebuild @@ -0,0 +1,59 @@ +# Copyright 2009-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_COMMIT=29ee9a0e9f02ec74153a2cf09dc63722bc273544 +PYTHON_COMPAT=( python3_{8..10} ) +inherit python-any-r1 qt5-build + +DESCRIPTION="The QML and Quick modules for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" +fi + +IUSE="gles2-only +jit localstorage vulkan +widgets" + +# qtgui[gles2-only=] is needed because of bug 504322 +DEPEND=" + =dev-qt/qtcore-${QT5_PV}* + =dev-qt/qtgui-${QT5_PV}*:5=[gles2-only=,vulkan=] + =dev-qt/qtnetwork-${QT5_PV}* + =dev-qt/qttest-${QT5_PV}* + media-libs/libglvnd + localstorage? ( =dev-qt/qtsql-${QT5_PV}* ) + widgets? ( =dev-qt/qtwidgets-${QT5_PV}*[gles2-only=] ) +" +RDEPEND="${DEPEND}" +BDEPEND="${PYTHON_DEPS}" + +PATCHES=( + "${FILESDIR}/${PN}-5.14.2-QQuickItemView-fix-maxXY-extent.patch" # QTBUG-83890 + "${FILESDIR}/${PN}-5.15.2-riscv-atomic.patch" # bug 790689 +) + +src_prepare() { + use jit || PATCHES+=( "${FILESDIR}/${PN}-5.4.2-disable-jit.patch" ) + + qt_use_disable_mod localstorage sql \ + src/imports/imports.pro + + qt_use_disable_mod widgets widgets \ + src/src.pro \ + src/qmltest/qmltest.pro \ + tests/auto/auto.pro \ + tools/tools.pro \ + tools/qmlscene/qmlscene.pro \ + tools/qml/qml.pro + + qt5-build_src_prepare +} + +src_configure() { + local myqmakeargs=( + -- + -qml-debug + ) + qt5-build_src_configure +} |