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-util/wayland-scanner/
Date: Sun, 03 Jul 2022 22:30:39
Message-Id: 1656887419.4df7a08b3ce864476f71d2304d59d6fe84c37cbd.mattst88@gentoo
1 commit: 4df7a08b3ce864476f71d2304d59d6fe84c37cbd
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 3 22:16:44 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=4df7a08b
7
8 dev-util/wayland-scanner: Version bump to 1.21.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-util/wayland-scanner/Manifest | 1 +
13 .../wayland-scanner/wayland-scanner-1.21.0.ebuild | 44 ++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/dev-util/wayland-scanner/Manifest b/dev-util/wayland-scanner/Manifest
17 index 680b0b621abe..46d7d2fbf65d 100644
18 --- a/dev-util/wayland-scanner/Manifest
19 +++ b/dev-util/wayland-scanner/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-util/wayland-scanner/wayland-scanner-1.21.0.ebuild b/dev-util/wayland-scanner/wayland-scanner-1.21.0.ebuild
25 new file mode 100644
26 index 000000000000..a71f5f47ad48
27 --- /dev/null
28 +++ b/dev-util/wayland-scanner/wayland-scanner-1.21.0.ebuild
29 @@ -0,0 +1,44 @@
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/wayland/-/releases/${PV}/downloads/wayland-${PV}.tar.xz"
40 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
41 + S="${WORKDIR}/wayland-${PV}"
42 +fi
43 +inherit meson
44 +
45 +DESCRIPTION="wayland-scanner tool"
46 +HOMEPAGE="https://wayland.freedesktop.org/ https://gitlab.freedesktop.org/wayland/wayland"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +
51 +BDEPEND="virtual/pkgconfig"
52 +RDEPEND="
53 + !<dev-libs/wayland-${PV}
54 + >=dev-libs/expat-2.1.0-r3
55 +"
56 +DEPEND="${RDEPEND}"
57 +
58 +src_configure() {
59 + local emesonargs=(
60 + -Ddocumentation=false
61 + -Ddtd_validation=false
62 + -Dlibraries=false
63 + -Dscanner=true
64 + -Dtests=false
65 + )
66 + meson_src_configure
67 +}
68 +
69 +src_install() {
70 + meson_src_install
71 +
72 + mv "${ED}"/usr/$(get_libdir)/pkgconfig "${ED}"/usr/share/pkgconfig
73 +}