Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty-shell-integration/
Date: Thu, 03 Mar 2022 11:59:23
Message-Id: 1646307827.44cc459a7cfdec317bed41fe08d7fa17fc40e20a.ionen@gentoo
1 commit: 44cc459a7cfdec317bed41fe08d7fa17fc40e20a
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 3 11:43:47 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 3 11:43:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44cc459a
7
8 x11-terms/kitty-shell-integration: add 0.24.4
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 x11-terms/kitty-shell-integration/Manifest | 1 +
13 .../kitty-shell-integration-0.24.4.ebuild | 34 ++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/x11-terms/kitty-shell-integration/Manifest b/x11-terms/kitty-shell-integration/Manifest
17 index 90c62e2a5a49..5bc303e1c56c 100644
18 --- a/x11-terms/kitty-shell-integration/Manifest
19 +++ b/x11-terms/kitty-shell-integration/Manifest
20 @@ -1 +1,2 @@
21 DIST kitty-0.24.3.tar.xz 4614252 BLAKE2B 04c9904e20aae0ed12d41dc01ea4fbb5e36430e50087821845c0bd3e6d8dd0ab2a090f8ebff8fd66fe9f2b0a3efe52f0434008b4484cbe27a58b05c6e4f56d73 SHA512 2b1482164fb1aabfa2f775f24d0ffbbbd1e8a85cf114a2daa411379ea8dbcea6ae5f361997132fb4d773fed8adeec4c04ffb4e615a470cefeb794d8a39c94c0a
22 +DIST kitty-0.24.4.tar.xz 4613232 BLAKE2B 3bcb957a2d1b43cbf222207fbd12e5d098e0b9616370761d9f9629e8b39419405fb146d91281912f55b35611cf01d4e33232224cc3b710044d8423300c9b53c8 SHA512 28b1e2415b5c73ad8922d4ed17a63638c497a91c9aedba71c2f53e77fc89ed49951a2e873bba5bbe85c8eda22107d9ff4e4321010ac33a2d289c2fbd5d3a5b8f
23
24 diff --git a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.24.4.ebuild b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.24.4.ebuild
25 new file mode 100644
26 index 000000000000..80e3667e6412
27 --- /dev/null
28 +++ b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.24.4.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DESCRIPTION="Shell integration scripts for kitty, a GPU-based terminal emulator"
36 +HOMEPAGE="https://sw.kovidgoyal.net/kitty/"
37 +SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz"
38 +S="${WORKDIR}/kitty-${PV}"
39 +
40 +LICENSE="GPL-3"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~ppc64 ~x86"
43 +RESTRICT="test" # intended to be ran on the full kitty package
44 +
45 +src_compile() { :; }
46 +
47 +src_install() {
48 + # install the whole directory in the upstream suggested location
49 + # for consistency (i.e. less variation between distros if someone
50 + # ssh into Gentoo), then set symlinks to autoload where possible
51 + # (these exit immediately if KITTY_SHELL_INTEGRATION is unset)
52 + insinto /usr/share/kitty
53 + doins -r shell-integration
54 +
55 + dosym -r {/usr/share/kitty/shell-integration/bash,/etc/bash/bashrc.d}/kitty.bash
56 +
57 + dosym -r /usr/share/{kitty/shell-integration/fish,fish}/vendor_completions.d/kitty.fish
58 + dosym -r /usr/share/{kitty/shell-integration/fish,fish}/vendor_conf.d/kitty-shell-integration.fish
59 +
60 + dosym -r /usr/share/{kitty/shell-integration/zsh/completions,zsh/site-functions}/_kitty
61 + # zsh integration is handled automatically without needing to modify rc files,
62 + # but may require user intervention depending on zsh invocation or if remote
63 +}