Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/wayland/
Date: Sun, 03 Jul 2022 22:30:40
Message-Id: 1656887419.b79bff070e814b0c365c4309af01e33592e4a4f1.mattst88@gentoo
1 commit: b79bff070e814b0c365c4309af01e33592e4a4f1
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 3 22:28:12 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 3 22:30:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b79bff07
7
8 dev-libs/wayland: Version bump to 1.21.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-libs/wayland/Manifest | 1 +
13 dev-libs/wayland/wayland-1.21.0.ebuild | 57 ++++++++++++++++++++++++++++++++++
14 2 files changed, 58 insertions(+)
15
16 diff --git a/dev-libs/wayland/Manifest b/dev-libs/wayland/Manifest
17 index 680b0b621abe..46d7d2fbf65d 100644
18 --- a/dev-libs/wayland/Manifest
19 +++ b/dev-libs/wayland/Manifest
20 @@ -1 +1,2 @@
21 DIST wayland-1.20.0.tar.xz 225188 BLAKE2B d607610ad8b30b6b3bbfc3945679f698030f271766cfb72425f98f170a96469fb085fb9a746a866b8562d7f452c844e61ad57f634dcf365474c7d050b76022e9 SHA512 e8a1f410994b947f850799bdd0d95a2429d8467f853e62a0ab3915a4e9fe130f8aa977e03715114ab740c6ec546edea63d275ce7f927d4f3029ea126e6a7d215
22 +DIST wayland-1.21.0.tar.xz 225936 BLAKE2B 2b43eb1517d476bb2b4daed1083373655b57d047968fdb93dbbbbe4235af12e25557627e30b5c3d2575bac4beaf1e0a0b8ef10a3c673538d9097501f33c05836 SHA512 5575216d30fdf5c63caa6bcad071e15f2a4f3acb12df776806073f65db37a50b5b5b3cc7957c5497636f4ac01893e2eaab26e453ded44b287acde01762f5fdc3
23
24 diff --git a/dev-libs/wayland/wayland-1.21.0.ebuild b/dev-libs/wayland/wayland-1.21.0.ebuild
25 new file mode 100644
26 index 000000000000..bbe4c3904bca
27 --- /dev/null
28 +++ b/dev-libs/wayland/wayland-1.21.0.ebuild
29 @@ -0,0 +1,57 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +if [[ ${PV} = *9999* ]]; then
36 + EGIT_REPO_URI="https://gitlab.freedesktop.org/wayland/wayland.git"
37 + inherit git-r3
38 +else
39 + SRC_URI="https://gitlab.freedesktop.org/wayland/${PN}/-/releases/${PV}/downloads/${P}.tar.xz"
40 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
41 +fi
42 +inherit meson-multilib
43 +
44 +DESCRIPTION="Wayland protocol libraries"
45 +HOMEPAGE="https://wayland.freedesktop.org/ https://gitlab.freedesktop.org/wayland/wayland"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +IUSE="doc test"
50 +RESTRICT="!test? ( test )"
51 +
52 +BDEPEND="
53 + ~dev-util/wayland-scanner-${PV}
54 + virtual/pkgconfig
55 + doc? (
56 + >=app-doc/doxygen-1.6[dot]
57 + app-text/xmlto
58 + >=media-gfx/graphviz-2.26.0
59 + )
60 +"
61 +DEPEND="
62 + >=dev-libs/libffi-3.0.13-r1:=[${MULTILIB_USEDEP}]
63 +"
64 +RDEPEND="${DEPEND}"
65 +
66 +multilib_src_configure() {
67 + local emesonargs=(
68 + $(meson_native_use_bool doc documentation)
69 + $(meson_native_true dtd_validation)
70 + -Dlibraries=true
71 + -Dscanner=false
72 + $(meson_use test tests)
73 + )
74 + meson_src_configure
75 +}
76 +
77 +src_test() {
78 + # We set it on purpose to only a short subdir name, as socket paths are
79 + # created in there, which are 108 byte limited. With this it hopefully
80 + # barely fits to the limit with /var/tmp/portage/${CATEGORY}/${PF}/temp/x
81 + export XDG_RUNTIME_DIR="${T}"/x
82 + mkdir "${XDG_RUNTIME_DIR}" || die
83 + chmod 0700 "${XDG_RUNTIME_DIR}" || die
84 +
85 + multilib-minimal_src_test
86 +}