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: Tue, 28 Sep 2021 14:59:00
Message-Id: 1632841121.2b77233d485dc1960d0c24ab7148867c838d9b05.asturm@gentoo
1 commit: 2b77233d485dc1960d0c24ab7148867c838d9b05
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 28 14:45:20 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 28 14:58:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b77233d
7
8 dev-qt/qtwayland: 5.15.2-r13 version bump at KDE efe6edca
9
10 "Client: Don't always recreate frame callbacks"
11 See also: https://invent.kde.org/qt/qt/qtwayland/-/merge_requests/16
12 QTBUG: https://bugreports-test.qt.io/browse/QTBUG-81504
13
14 "Wayland client: Fix crash when windows are shown/hidden during drag"
15 See also: https://invent.kde.org/qt/qt/qtwayland/-/merge_requests/17
16 QTBUG: https://bugreports-test.qt.io/browse/QTBUG-87624
17
18 Bug: https://bugs.gentoo.org/806797
19 Package-Manager: Portage-3.0.24, Repoman-3.0.3
20 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
21
22 dev-qt/qtwayland/Manifest | 1 +
23 dev-qt/qtwayland/qtwayland-5.15.2-r13.ebuild | 41 ++++++++++++++++++++++++++++
24 2 files changed, 42 insertions(+)
25
26 diff --git a/dev-qt/qtwayland/Manifest b/dev-qt/qtwayland/Manifest
27 index 9e110f7478c..70b2d66acb4 100644
28 --- a/dev-qt/qtwayland/Manifest
29 +++ b/dev-qt/qtwayland/Manifest
30 @@ -1,2 +1,3 @@
31 DIST qtwayland-5.15.2-3c420cd1.tar.gz 829193 BLAKE2B dcd6f466184263b8988f5ae8e8cd47d22711ec791d5f7afdc156ce6de31488f6b37970bac00edbbe9a485b3627f86f865e45d9515e48eccf37cc12a831d7740e SHA512 d4e247d08ed17a31073005b4bef818571cd1268f8b4a430dd366f680a0f652d3aa321ea264efc88628405ac254693bdc1b34d32a2bcb14f4d987d5380e4cedfc
32 +DIST qtwayland-5.15.2-efe6edca.tar.gz 829293 BLAKE2B 6ccc5a4e111818cc65855eb4570727f30932bec9a749069550d07332df719eaeec0baf472c025150a32c9c380294f5e9496ad3babd181887a02fc37d1bfd5f2a SHA512 87190cd1ade57c98da972a2f5d48aa0376ccc4bfa589f5832b8a62a63b3eafa6acf88d812ae98c484d4b02878ae2c1986c3759c0ba3f46894c76af713d7b8346
33 DIST qtwayland-everywhere-src-5.15.2.tar.xz 564884 BLAKE2B 472effd3e9f3fd5470e0449703a52d45f2fd823770880b5ad15d8bf99196eee5d8511ca2bc9e23df6e27c933551d1853928ba79b4b1e5fa6e53334c54c04a463 SHA512 e8657ed676873da7b949e6a1605d025918a03336af9c68f32741945ec3c71a604def55bb00737ba4d97b91c00d0e2df1a83cdcedcf5795c6b2a1ef2caa21c91c
34
35 diff --git a/dev-qt/qtwayland/qtwayland-5.15.2-r13.ebuild b/dev-qt/qtwayland/qtwayland-5.15.2-r13.ebuild
36 new file mode 100644
37 index 00000000000..04ad1dcd63c
38 --- /dev/null
39 +++ b/dev-qt/qtwayland/qtwayland-5.15.2-r13.ebuild
40 @@ -0,0 +1,41 @@
41 +# Copyright 1999-2021 Gentoo Authors
42 +# Distributed under the terms of the GNU General Public License v2
43 +
44 +EAPI=8
45 +
46 +KDE_ORG_COMMIT=efe6edcaf8eba601dff99ec6ad4457c8a4442f86
47 +inherit qt5-build
48 +
49 +DESCRIPTION="Wayland platform plugin for Qt"
50 +
51 +if [[ ${QT5_BUILD_TYPE} == release ]]; then
52 + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
53 +fi
54 +
55 +IUSE="vulkan X"
56 +
57 +DEPEND="
58 + dev-libs/wayland
59 + =dev-qt/qtcore-${QT5_PV}*:5=
60 + =dev-qt/qtdeclarative-${QT5_PV}*:5=
61 + =dev-qt/qtgui-${QT5_PV}*:5=[egl,libinput,vulkan=,X?]
62 + media-libs/libglvnd
63 + >=x11-libs/libxkbcommon-0.2.0
64 + vulkan? ( dev-util/vulkan-headers )
65 + X? (
66 + =dev-qt/qtgui-${QT5_PV}*[-gles2-only]
67 + x11-libs/libX11
68 + x11-libs/libXcomposite
69 + )
70 +"
71 +RDEPEND="${DEPEND}"
72 +
73 +src_configure() {
74 + local myqmakeargs=(
75 + --
76 + $(qt_use vulkan feature-wayland-vulkan-server-buffer)
77 + $(qt_use X feature-xcomposite-egl)
78 + $(qt_use X feature-xcomposite-glx)
79 + )
80 + qt5-build_src_configure
81 +}