Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xisxwayland/
Date: Wed, 24 Aug 2022 14:14:24
Message-Id: 1661350105.8c82714f7c5a4803039aa05717d10143c125aaa5.mattst88@gentoo
1 commit: 8c82714f7c5a4803039aa05717d10143c125aaa5
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 24 14:06:47 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 24 14:08:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c82714f
7
8 x11-apps/xisxwayland: Version bump to 2
9
10 Closes: https://bugs.gentoo.org/864136
11 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
12
13 x11-apps/xisxwayland/Manifest | 1 +
14 x11-apps/xisxwayland/xisxwayland-2.ebuild | 29 +++++++++++++++++++++++++++++
15 2 files changed, 30 insertions(+)
16
17 diff --git a/x11-apps/xisxwayland/Manifest b/x11-apps/xisxwayland/Manifest
18 index b38a23609e7c..471cf332ef8b 100644
19 --- a/x11-apps/xisxwayland/Manifest
20 +++ b/x11-apps/xisxwayland/Manifest
21 @@ -1 +1,2 @@
22 DIST xisxwayland-1.tar.xz 4168 BLAKE2B a8e4a658427f5b03e3d05b25772c4f136c13be47a68619a6beab3db72a70e836e495fcbc8a19d5f9347f3336a1dc9b353f483fb75e47ebfdbb9b8409e63444f0 SHA512 9514442313cff4df0c71fed445ba0e3fe52f3c84ebbec81725a590f68cc42ea01ac96b23736a0108fe206da3aee48434c5c30d1c58905bfc75db35205c288bca
23 +DIST xisxwayland-2.tar.xz 5220 BLAKE2B 47bd626ad2cbeb5b0e114a4f603858c82f4f870f16de038bcadd3010f90e140fb8a3b0531e4102da7527c49bcc6bae6039aa6b42c6182da80467d5a3f040b817 SHA512 b89e19c85a5cd7e62a52e22772f80f03bfea069e31412ca11ac38174c4a2994be559e9d5fb49e6d1921b3f1b06ee71b50ede48990a1e7804a96207b08fc7827f
24
25 diff --git a/x11-apps/xisxwayland/xisxwayland-2.ebuild b/x11-apps/xisxwayland/xisxwayland-2.ebuild
26 new file mode 100644
27 index 000000000000..aaa53f42f155
28 --- /dev/null
29 +++ b/x11-apps/xisxwayland/xisxwayland-2.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 2020-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +if [[ ${PV} = 9999* ]]; then
37 + GIT_ECLASS="git-r3"
38 + EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/app/${PN}.git"
39 +fi
40 +
41 +inherit ${GIT_ECLASS} meson
42 +
43 +DESCRIPTION="Tool to determine whether the X server in use is Xwayland"
44 +HOMEPAGE="https://gitlab.freedesktop.org/xorg/app/xisxwayland"
45 +if [[ ${PV} = 9999* ]]; then
46 + SRC_URI=""
47 +else
48 + KEYWORDS="~amd64"
49 + SRC_URI="https://xorg.freedesktop.org/archive/individual/app/${P}.tar.xz"
50 +fi
51 +
52 +LICENSE="MIT"
53 +SLOT="0"
54 +
55 +RDEPEND="
56 + x11-libs/libX11
57 + x11-libs/libXrandr"
58 +DEPEND="${RDEPEND}
59 + x11-base/xorg-proto"