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-protocols/
Date: Thu, 25 Nov 2021 06:53:38
Message-Id: 1637823130.0b569f130d898ca3c1fee631dc2a88f85cda87dd.mattst88@gentoo
1 commit: 0b569f130d898ca3c1fee631dc2a88f85cda87dd
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 25 06:48:46 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 25 06:52:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b569f13
7
8 dev-libs/wayland-protocols: Version bump to 1.24
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-libs/wayland-protocols/Manifest | 1 +
13 .../wayland-protocols-1.24.ebuild | 38 ++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/dev-libs/wayland-protocols/Manifest b/dev-libs/wayland-protocols/Manifest
17 index 9e9eff1e36cc..0c9cb95b812b 100644
18 --- a/dev-libs/wayland-protocols/Manifest
19 +++ b/dev-libs/wayland-protocols/Manifest
20 @@ -1 +1,2 @@
21 DIST wayland-protocols-1.23.tar.xz 74116 BLAKE2B a92f9d80e8d9062fb79c06e13141b46e0f43d0813f461e087a9fa724fa752df3b4fe5698e34e7431f3b43cca0adf7b86ab77c948060f6c02e4c7693f7975cd15 SHA512 11f09147da1dd01a9f5c921eb0bfc6244a72023a052ef96bc121e16437a2c43d0dbba748c2de832539f57371e90b16bd13069bec07391305717f8fca295ea2a6
22 +DIST wayland-protocols-1.24.tar.xz 77120 BLAKE2B 912132cb2b65b99184f25942e02000444ce5d37b60f33363999e8431db5835d3c0dab41dae312f0dbb02d03ab7e4f3f588e7b507e767ec132a82fd816700b09a SHA512 4b1122517db56f48a5fafd4bd0cb7f94faef6fdd2d80e6cec17e5a6bafbaf2f5a71b958ed12e6d13965494885c209b2fb6dd8331487b39c6f251e71f1e770a15
23
24 diff --git a/dev-libs/wayland-protocols/wayland-protocols-1.24.ebuild b/dev-libs/wayland-protocols/wayland-protocols-1.24.ebuild
25 new file mode 100644
26 index 000000000000..f9b1910a51a1
27 --- /dev/null
28 +++ b/dev-libs/wayland-protocols/wayland-protocols-1.24.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit meson
36 +
37 +DESCRIPTION="Wayland protocol files"
38 +HOMEPAGE="https://wayland.freedesktop.org/"
39 +
40 +if [[ ${PV} = 9999* ]]; then
41 + EGIT_REPO_URI="https://gitlab.freedesktop.org/wayland/${PN}.git/"
42 + inherit git-r3
43 +else
44 + SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz"
45 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
46 +fi
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +IUSE="test"
51 +RESTRICT="!test? ( test )"
52 +
53 +DEPEND="
54 + test? ( dev-libs/wayland )
55 +"
56 +RDEPEND=""
57 +BDEPEND="
58 + dev-util/wayland-scanner
59 + virtual/pkgconfig
60 +"
61 +
62 +src_configure() {
63 + local emesonargs=(
64 + $(meson_use test tests)
65 + )
66 + meson_src_configure
67 +}