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: Mon, 07 Nov 2022 15:59:24
Message-Id: 1667836642.4fc8d492b05c8f805c0afb397fa27eb0a7ea1470.ionen@gentoo
1 commit: 4fc8d492b05c8f805c0afb397fa27eb0a7ea1470
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 7 15:36:47 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 7 15:57:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fc8d492
7
8 x11-terms/kitty-shell-integration: add 0.26.5
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.26.5.ebuild | 37 ++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/x11-terms/kitty-shell-integration/Manifest b/x11-terms/kitty-shell-integration/Manifest
17 index 5ff92e08bc45..6ddb75f6c97a 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.26.4.tar.xz 4749148 BLAKE2B fe15d2bd3afda49fcdc911d0ada5824dffe7eac69cd22581b86f50b0d20330ef10bf567d4adfafe5e06d20f9d7a10c8acfcffb95a3d5c47c50327576d9600761 SHA512 4d3ef5ba2ca54d0f5cd84ece771297c19c05bd276fc235f92c76d469ad17e55b54de696dce38c9039ae9825c7609e03e937536261c4fb680e936865ee0e4441e
22 +DIST kitty-0.26.5.tar.xz 4749988 BLAKE2B 488969b4d7c6aed489a540a8e3bee183345fcfb7e05ae5604f4af40f0720ed931cff82cf389e2fa4015eed74762c0630481a99eeb9302c22c89c4f3e247170d4 SHA512 086ae03d0e382afbe3001e357ef51388c7a8e81fa5b4bf9ce8b123a7fc8bfff3bd68d074e926f540a1f2b83062baa831e44d29c017cabfe8221bebe49b64e808
23
24 diff --git a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.5.ebuild b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.5.ebuild
25 new file mode 100644
26 index 000000000000..92b178c54f24
27 --- /dev/null
28 +++ b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.5.ebuild
29 @@ -0,0 +1,37 @@
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 ~riscv ~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 +
64 + # this is used internally by the ssh kitten and is not useful there
65 + rm -r "${ED}"/usr/share/kitty/shell-integration/ssh || die
66 +}