summaryrefslogtreecommitdiff
path: root/x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.5.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-04-24 06:09:28 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-04-24 06:09:28 +0100
commitb46286b28de30f0898fa7888ae7dee09db822088 (patch)
tree0a6e626d9cfca9ae3573102c219a4bc3e45f6ed4 /x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.5.ebuild
parentb2523734e380d060074602eb5ce53daf7d98803b (diff)
gentoo auto-resync : 24:04:2023 - 06:09:28
Diffstat (limited to 'x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.5.ebuild')
-rw-r--r--x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.5.ebuild37
1 files changed, 0 insertions, 37 deletions
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
deleted file mode 100644
index 284f791cd143..000000000000
--- a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.26.5.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Shell integration scripts for kitty, a GPU-based terminal emulator"
-HOMEPAGE="https://sw.kovidgoyal.net/kitty/"
-SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz"
-S="${WORKDIR}/kitty-${PV}"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~riscv x86"
-RESTRICT="test" # intended to be ran on the full kitty package
-
-src_compile() { :; }
-
-src_install() {
- # install the whole directory in the upstream suggested location
- # for consistency (i.e. less variation between distros if someone
- # ssh into Gentoo), then set symlinks to autoload where possible
- # (these exit immediately if KITTY_SHELL_INTEGRATION is unset)
- insinto /usr/share/kitty
- doins -r shell-integration
-
- dosym -r {/usr/share/kitty/shell-integration/bash,/etc/bash/bashrc.d}/kitty.bash
-
- dosym -r /usr/share/{kitty/shell-integration/fish,fish}/vendor_completions.d/kitty.fish
- dosym -r /usr/share/{kitty/shell-integration/fish,fish}/vendor_conf.d/kitty-shell-integration.fish
-
- dosym -r /usr/share/{kitty/shell-integration/zsh/completions,zsh/site-functions}/_kitty
- # zsh integration is handled automatically without needing to modify rc files,
- # but may require user intervention depending on zsh invocation or if remote
-
- # this is used internally by the ssh kitten and is not useful there
- rm -r "${ED}"/usr/share/kitty/shell-integration/ssh || die
-}