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: Thu, 20 Jan 2022 10:01:23
Message-Id: 1642672868.fd8e9a8acb5a3db96f416ff50eddb94b9550ef86.asturm@gentoo
1 commit: fd8e9a8acb5a3db96f416ff50eddb94b9550ef86
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 09:50:45 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 10:01:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd8e9a8a
7
8 dev-qt/qtwayland: 5.15.2-r18 version bump at 4644d51f
9
10 Adrien Faveraux (1):
11 Move the wayland socket polling to a separate event thread
12
13 Elvis Lee (2):
14 Handle registry_global out of constructor
15 Connect flushRequest after forceRoundTrip
16
17 Package-Manager: Portage-3.0.30, Repoman-3.0.3
18 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
19
20 dev-qt/qtwayland/Manifest | 1 +
21 dev-qt/qtwayland/qtwayland-5.15.2-r18.ebuild | 44 ++++++++++++++++++++++++++++
22 2 files changed, 45 insertions(+)
23
24 diff --git a/dev-qt/qtwayland/Manifest b/dev-qt/qtwayland/Manifest
25 index abf1cb63eafc..343c801c49a2 100644
26 --- a/dev-qt/qtwayland/Manifest
27 +++ b/dev-qt/qtwayland/Manifest
28 @@ -1,2 +1,3 @@
29 +DIST qtwayland-5.15.2-4644d51f.tar.gz 831697 BLAKE2B c3d60416ef71030018918ec5157122e2585d270d5aa1a74d66874a33f14f0c4ac85da5a1dd7bfb422a1090f79e5d2c08763c68fe724416b34bad16f945d1740c SHA512 e350396e9bdfa6f0fda938af74c722792d50473eb3d786442ba11919e7801f0cd8d045916c8e49d8a63ffd966376cb74e7cc1c3d4d1732e71061fb8343a497d3
30 DIST qtwayland-5.15.2-867540b9.tar.gz 830061 BLAKE2B b831288d6a3e671631b4df00eb1edb72e35128f3ed5a73983b3e15193f554fddcd0337deb832d44b795d2e37f0601fe35b8b0fcb5986bcc44154d172f3a54193 SHA512 b834802811d9f65559ef5e7468189b53c666e390aa09edeb490e5fee2dece13082b11da0f8b5924b89f7dc8e1eba375a485940f4dfbf0445f3d1e96033e33f24
31 DIST qtwayland-5.15.2-eb422ab5.tar.gz 829140 BLAKE2B e913e481741b23873a88db32896c7f3445a2ddee2dc9cfdf8e132fdd79021de369506e32ce9ed50977fb1c42d624169b7d67c9247f7609276e699e5ab3a9462e SHA512 b5094b00feab5909b4de6382a3633fc321d5f5fbc34e4cbde1f364123b24990df95cef5c34a90f73dca67b0578e0da71b894f771ebbd8d152dcdc71b114d9773
32
33 diff --git a/dev-qt/qtwayland/qtwayland-5.15.2-r18.ebuild b/dev-qt/qtwayland/qtwayland-5.15.2-r18.ebuild
34 new file mode 100644
35 index 000000000000..48fffae55af5
36 --- /dev/null
37 +++ b/dev-qt/qtwayland/qtwayland-5.15.2-r18.ebuild
38 @@ -0,0 +1,44 @@
39 +# Copyright 1999-2022 Gentoo Authors
40 +# Distributed under the terms of the GNU General Public License v2
41 +
42 +EAPI=8
43 +
44 +KDE_ORG_COMMIT=4644d51f4b52e83fc1b4d02b380d80d9d57e76fa
45 +inherit qt5-build
46 +
47 +DESCRIPTION="Wayland platform plugin for Qt"
48 +
49 +if [[ ${QT5_BUILD_TYPE} == release ]]; then
50 + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
51 +fi
52 +
53 +SLOT=5/${QT5_PV} # bug 815646
54 +IUSE="vulkan X"
55 +
56 +DEPEND="
57 + dev-libs/wayland
58 + =dev-qt/qtcore-${QT5_PV}*:5=
59 + =dev-qt/qtdeclarative-${QT5_PV}*:5=
60 + =dev-qt/qtgui-${QT5_PV}*:5=[egl,libinput,vulkan=,X?]
61 + media-libs/libglvnd
62 + vulkan? ( dev-util/vulkan-headers )
63 + X? (
64 + =dev-qt/qtgui-${QT5_PV}*[-gles2-only]
65 + x11-libs/libX11
66 + x11-libs/libXcomposite
67 + )
68 +"
69 +RDEPEND="${DEPEND}"
70 +BDEPEND="
71 + dev-util/wayland-scanner
72 +"
73 +
74 +src_configure() {
75 + local myqmakeargs=(
76 + --
77 + $(qt_use vulkan feature-wayland-vulkan-server-buffer)
78 + $(qt_use X feature-xcomposite-egl)
79 + $(qt_use X feature-xcomposite-glx)
80 + )
81 + qt5-build_src_configure
82 +}