Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/zellij/
Date: Sat, 26 Feb 2022 18:16:42
Message-Id: 1645783823.a078027f6ee9a885fd0516106206ba4f2aa1fe10.flow@gentoo
1 commit: a078027f6ee9a885fd0516106206ba4f2aa1fe10
2 Author: Luciano Degni <degni.public <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 25 10:10:23 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 25 10:10:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a078027f
7
8 app-misc/zellij: minor fixes to ebuild -> REQUIRED USE FLAGS and white space
9
10 Signed-off-by: Luciano Degni <degni.public <AT> gmail.com>
11
12 app-misc/zellij/zellij-0.25.0.ebuild | 17 +++++++----------
13 1 file changed, 7 insertions(+), 10 deletions(-)
14
15 diff --git a/app-misc/zellij/zellij-0.25.0.ebuild b/app-misc/zellij/zellij-0.25.0.ebuild
16 index 752b01ab5..63301d6dd 100644
17 --- a/app-misc/zellij/zellij-0.25.0.ebuild
18 +++ b/app-misc/zellij/zellij-0.25.0.ebuild
19 @@ -295,7 +295,7 @@ CRATES="
20 zeroize-1.4.3
21 "
22
23 -inherit cargo xdg-utils desktop optfeature
24 +inherit cargo xdg-utils optfeature
25
26 DESCRIPTION="A terminal workspace with batteries included"
27 HOMEPAGE="https://github.com/zellij-org/zellij"
28 @@ -317,17 +317,17 @@ LICENSE="
29 "
30 SLOT="0"
31 KEYWORDS="~amd64"
32 -IUSE="bash fish zsh doc examples zsh-completion fish-completion bash-completion"
33 -REQUIRED_USE="|| ( bash fish zsh )"
34 +IUSE="doc examples zsh-completion fish-completion bash-completion"
35 +#REQUIRED_USE="|| ( bash-completion fish-completion zsh-completion )"
36
37 DEPEND="
38 - bash? (
39 + bash-completion? (
40 app-shells/bash
41 )
42 - fish? (
43 + fish-completion? (
44 app-shells/fish
45 )
46 - zsh? (
47 + zsh-completion? (
48 app-shells/zsh
49 )
50 dev-lang/rust
51 @@ -354,11 +354,9 @@ src_install() {
52 doins -r assets/example/layouts/*
53 fi
54
55 -
56 insinto "/usr/share/zellij/plugins/"
57 doins-r assets/plugins/*
58
59 -
60 if use bash-completion; then
61 insinto "usr/share/bash-completion/completions/"
62 doins assets/completions/zellij.bash
63 @@ -374,7 +372,6 @@ src_install() {
64 use zsh && doins assets/completions/_zellij
65 fi
66
67 -
68 #insinto /usr/share/xsessions/
69 #doins assets/zellij.desktop
70
71 @@ -384,7 +381,7 @@ src_install() {
72 pkg_postinst() {
73 elog "Read the documentation for $PN at <https://zellij.dev/documentation>"
74 elog "for usage, customization and other instructions"
75 - optfeature "Emerge nerdfonts for best experience"
76 + optfeature "install nerdfonts for best experience"
77 xdg_desktop_database_update
78 }