Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
Date: Wed, 24 Aug 2022 19:36:37
Message-Id: 1661369776.a33551d32261cb63dd5197e75af0c0bc2ec727b0.arthurzam@gentoo
1 commit: a33551d32261cb63dd5197e75af0c0bc2ec727b0
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 24 19:06:53 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 24 19:36:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33551d3
7
8 gui-apps/kanshi: remove live ebuild
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 gui-apps/kanshi/kanshi-9999.ebuild | 43 --------------------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/gui-apps/kanshi/kanshi-9999.ebuild b/gui-apps/kanshi/kanshi-9999.ebuild
16 deleted file mode 100644
17 index b415cae3b1ac..000000000000
18 --- a/gui-apps/kanshi/kanshi-9999.ebuild
19 +++ /dev/null
20 @@ -1,43 +0,0 @@
21 -# Copyright 2020-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -inherit meson
27 -
28 -DESCRIPTION="dynamic display configuration (autorandr for wayland)"
29 -HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
30 -
31 -if [[ ${PV} == 9999 ]]; then
32 - inherit git-r3
33 - EGIT_REPO_URI="https://github.com/emersion/kanshi"
34 -else
35 - SRC_URI="https://github.com/emersion/kanshi/releases/download/v${PV}/${P}.tar.gz"
36 - KEYWORDS="~amd64 ~arm64 ~x86"
37 -fi
38 -
39 -LICENSE="MIT"
40 -SLOT="0"
41 -IUSE="+man"
42 -
43 -RDEPEND="
44 - dev-libs/wayland
45 -"
46 -BDEPEND="
47 - ${RDEPEND}
48 - virtual/pkgconfig
49 - dev-libs/wayland-protocols
50 -"
51 -
52 -if [[ ${PV} == 9999 ]]; then
53 - BDEPEND+="man? ( ~app-text/scdoc-9999 )"
54 -else
55 - BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
56 -fi
57 -
58 -src_configure() {
59 - local emesonargs=(
60 - $(meson_feature man man-pages)
61 - )
62 - meson_src_configure
63 -}