Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwayland/
Date: Wed, 12 Jan 2022 21:24:45
Message-Id: 1642022663.8f2e8db71d9a21b58d2cade0045b3ed41bc534a2.asturm@gentoo
1 commit: 8f2e8db71d9a21b58d2cade0045b3ed41bc534a2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 12 21:09:13 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 12 21:24:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f2e8db7
7
8 dev-qt/qtwayland: 5.15.2-r17 version bump at 867540b9
9
10 Changes since 5.15.2-r16:
11
12 Arjen Hiemstra (1):
13 Client: Delay deletion of QDrag object until after we're done with it
14
15 David Edmundson (1):
16 Client: Implement DataDeviceV3
17
18 Weng Xuetian (1):
19 Set preedit cursor when cursor equals to 0
20
21 Package-Manager: Portage-3.0.30, Repoman-3.0.3
22 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
23
24 dev-qt/qtwayland/Manifest | 1 +
25 dev-qt/qtwayland/qtwayland-5.15.2-r17.ebuild | 44 ++++++++++++++++++++++++++++
26 2 files changed, 45 insertions(+)
27
28 diff --git a/dev-qt/qtwayland/Manifest b/dev-qt/qtwayland/Manifest
29 index 18076e21b623..abf1cb63eafc 100644
30 --- a/dev-qt/qtwayland/Manifest
31 +++ b/dev-qt/qtwayland/Manifest
32 @@ -1 +1,2 @@
33 +DIST qtwayland-5.15.2-867540b9.tar.gz 830061 BLAKE2B b831288d6a3e671631b4df00eb1edb72e35128f3ed5a73983b3e15193f554fddcd0337deb832d44b795d2e37f0601fe35b8b0fcb5986bcc44154d172f3a54193 SHA512 b834802811d9f65559ef5e7468189b53c666e390aa09edeb490e5fee2dece13082b11da0f8b5924b89f7dc8e1eba375a485940f4dfbf0445f3d1e96033e33f24
34 DIST qtwayland-5.15.2-eb422ab5.tar.gz 829140 BLAKE2B e913e481741b23873a88db32896c7f3445a2ddee2dc9cfdf8e132fdd79021de369506e32ce9ed50977fb1c42d624169b7d67c9247f7609276e699e5ab3a9462e SHA512 b5094b00feab5909b4de6382a3633fc321d5f5fbc34e4cbde1f364123b24990df95cef5c34a90f73dca67b0578e0da71b894f771ebbd8d152dcdc71b114d9773
35
36 diff --git a/dev-qt/qtwayland/qtwayland-5.15.2-r17.ebuild b/dev-qt/qtwayland/qtwayland-5.15.2-r17.ebuild
37 new file mode 100644
38 index 000000000000..658532095a0c
39 --- /dev/null
40 +++ b/dev-qt/qtwayland/qtwayland-5.15.2-r17.ebuild
41 @@ -0,0 +1,44 @@
42 +# Copyright 1999-2022 Gentoo Authors
43 +# Distributed under the terms of the GNU General Public License v2
44 +
45 +EAPI=8
46 +
47 +KDE_ORG_COMMIT=867540b9d913760a847ff67c8694d817c821f2c2
48 +inherit qt5-build
49 +
50 +DESCRIPTION="Wayland platform plugin for Qt"
51 +SLOT=5/${QT5_PV} # bug 815646
52 +
53 +if [[ ${QT5_BUILD_TYPE} == release ]]; then
54 + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
55 +fi
56 +
57 +IUSE="vulkan X"
58 +
59 +DEPEND="
60 + dev-libs/wayland
61 + =dev-qt/qtcore-${QT5_PV}*:5=
62 + =dev-qt/qtdeclarative-${QT5_PV}*:5=
63 + =dev-qt/qtgui-${QT5_PV}*:5=[egl,libinput,vulkan=,X?]
64 + media-libs/libglvnd
65 + vulkan? ( dev-util/vulkan-headers )
66 + X? (
67 + =dev-qt/qtgui-${QT5_PV}*[-gles2-only]
68 + x11-libs/libX11
69 + x11-libs/libXcomposite
70 + )
71 +"
72 +RDEPEND="${DEPEND}"
73 +BDEPEND="
74 + dev-util/wayland-scanner
75 +"
76 +
77 +src_configure() {
78 + local myqmakeargs=(
79 + --
80 + $(qt_use vulkan feature-wayland-vulkan-server-buffer)
81 + $(qt_use X feature-xcomposite-egl)
82 + $(qt_use X feature-xcomposite-glx)
83 + )
84 + qt5-build_src_configure
85 +}