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: Tue, 04 May 2021 02:07:42
Message-Id: 1620094030.f3ddb335a463997ded3565a9acfcf2fbebc6d60f.mattst88@gentoo
1 commit: f3ddb335a463997ded3565a9acfcf2fbebc6d60f
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 4 01:49:38 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue May 4 02:07:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3ddb335
7
8 dev-libs/wayland-protocols: Version bump to 1.21
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-libs/wayland-protocols/Manifest | 1 +
13 .../wayland-protocols-1.21.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 ba97a46f7cc..0d351438fad 100644
18 --- a/dev-libs/wayland-protocols/Manifest
19 +++ b/dev-libs/wayland-protocols/Manifest
20 @@ -1 +1,2 @@
21 DIST wayland-protocols-1.20.tar.xz 111684 BLAKE2B 2ddd3d0b0dde94fda4788a1fd6631b6fcf22fb134e74a55f2c310ab4b72802d3b069d294e3d7b68ea6ddfdb0f944ac9011b73a9678e65eec924135822f697087 SHA512 d13f65d03add2c39cc32bf6bda0e981e9f52504bf8505fceea045c8baeb73bea64fa4edb99cb837677fbab1b5b3023054adff36fac127e819690f366b81c4977
22 +DIST wayland-protocols-1.21.tar.xz 117296 BLAKE2B 91dbfea6045e981fe94172fd13b74b150b0585560c06ad6990cfc57e02c97a013428431de54b196b4ed16db43724aae56f57dffb2b3f21615fe5522fe33aedc8 SHA512 40133ba36d4201de9626e9869ebdf2d4f7ad06904d6a747d5af87958a08368abdc65be3acc21b8959d0c5ec37d47051ba5b81d3844079fe237dac81a7291bbb8
23
24 diff --git a/dev-libs/wayland-protocols/wayland-protocols-1.21.ebuild b/dev-libs/wayland-protocols/wayland-protocols-1.21.ebuild
25 new file mode 100644
26 index 00000000000..f9b1910a51a
27 --- /dev/null
28 +++ b/dev-libs/wayland-protocols/wayland-protocols-1.21.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 +}