Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/wayland-utils/
Date: Tue, 27 Sep 2022 04:14:11
Message-Id: 1664252038.a128a8f646f74ecf098a20851f3bd5ee71f48bc4.mattst88@gentoo
1 commit: a128a8f646f74ecf098a20851f3bd5ee71f48bc4
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 27 04:04:40 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 04:13:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a128a8f6
7
8 app-misc/wayland-utils: Version bump to 1.1.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 app-misc/wayland-utils/Manifest | 1 +
13 app-misc/wayland-utils/wayland-utils-1.1.0.ebuild | 30 +++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/app-misc/wayland-utils/Manifest b/app-misc/wayland-utils/Manifest
17 index ac307144fd0d..2175f6a243f5 100644
18 --- a/app-misc/wayland-utils/Manifest
19 +++ b/app-misc/wayland-utils/Manifest
20 @@ -1 +1,2 @@
21 +DIST wayland-utils-1.1.0.tar.bz2 14071 BLAKE2B b2726205c8d123a4543aa316928fe2909917f70bbde4318376581c1ec97f658f0d5743a7df091799ef2adce4c962e83aefdc805e25cf1af5429520eddff2918c SHA512 5cd842c286c1960c1f604287826625c23c87306e9e31daba23a65402d4ae0abd0cec4a701c8fb65af2aea6adbcb018660e646939062c51628a65dde41ebd64bf
22 DIST wayland-utils-wayland-utils-1.0.0.tar.gz 13188 BLAKE2B b05917c611a54e157e31c6e83b026c0960189c36d71361e12ec6dbc33872184fb2ea30cf04a0c57ba6a9b776e5aa51baf286f092eb8780fdd6f0462c8e36ae87 SHA512 0e5886fc74bf84396facb79bfc2fcc4fa7ababc39f861fc62d198656c65dec31150bc7fd27773dfa8add421f08ad0dd43a7d72c9e8f6f5733ac34fb8212658cc
23
24 diff --git a/app-misc/wayland-utils/wayland-utils-1.1.0.ebuild b/app-misc/wayland-utils/wayland-utils-1.1.0.ebuild
25 new file mode 100644
26 index 000000000000..89f1a7935cc8
27 --- /dev/null
28 +++ b/app-misc/wayland-utils/wayland-utils-1.1.0.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit meson
36 +
37 +DESCRIPTION="Display information about supported Wayland protocols and current compositor"
38 +HOMEPAGE="https://gitlab.freedesktop.org/wayland/wayland-utils"
39 +SRC_URI="https://gitlab.freedesktop.org/wayland/${PN}/-/archive/${PV}/${P}.tar.bz2"
40 +
41 +LICENSE="MIT"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
44 +
45 +RDEPEND="
46 + >=dev-libs/wayland-1.20.0
47 + x11-libs/libdrm
48 +"
49 +DEPEND="${RDEPEND}
50 + dev-libs/wayland-protocols
51 +"
52 +BDEPEND="dev-util/wayland-scanner"
53 +
54 +src_configure() {
55 + local emesonargs=(
56 + -Ddrm=enabled
57 + )
58 + meson_src_configure
59 +}