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: Tue, 01 Nov 2022 20:39:41
Message-Id: 1667334761.1c808ab2910d09e388fc0af604afb06f19b980a9.ionen@gentoo
1 commit: 1c808ab2910d09e388fc0af604afb06f19b980a9
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 19:58:53 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 20:32:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c808ab2
7
8 x11-terms/kitty-shell-integration: drop 0.26.3
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.3.ebuild | 37 ----------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/x11-terms/kitty-shell-integration/Manifest b/x11-terms/kitty-shell-integration/Manifest
17 index 217a45d5cd1c..5ff92e08bc45 100644
18 --- a/x11-terms/kitty-shell-integration/Manifest
19 +++ b/x11-terms/kitty-shell-integration/Manifest
20 @@ -1,2 +1 @@
21 -DIST kitty-0.26.3.tar.xz 4730520 BLAKE2B a2d8cccc76eb295256ac420700e941ac9cb0e79c9717a93226cc30db63ab047dcd0be2e11b36b44c7c15daa0b77a451242d32f71024cee724869ba8937b93dd5 SHA512 77a518cd3ec4bb059907f16d01068914951cadbbcf803dcbfae13cc9ce144f65a886d7e986c7191019a0be9ccf902f086c72a24287458d083cbd3fd136d2c589
22 DIST kitty-0.26.4.tar.xz 4749148 BLAKE2B fe15d2bd3afda49fcdc911d0ada5824dffe7eac69cd22581b86f50b0d20330ef10bf567d4adfafe5e06d20f9d7a10c8acfcffb95a3d5c47c50327576d9600761 SHA512 4d3ef5ba2ca54d0f5cd84ece771297c19c05bd276fc235f92c76d469ad17e55b54de696dce38c9039ae9825c7609e03e937536261c4fb680e936865ee0e4441e
23
24 diff --git a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.3.ebuild b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.3.ebuild
25 deleted file mode 100644
26 index 284f791cd143..000000000000
27 --- a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.3.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
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 -}