diff options
| author | Ionen Wolkens <ionen@gentoo.org> | 2025-11-03 06:11:43 -0500 |
|---|---|---|
| committer | Ionen Wolkens <ionen@gentoo.org> | 2025-11-03 06:18:56 -0500 |
| commit | 8206c473ba1f68730fb268c6fbb45bd911633e66 (patch) | |
| tree | a48c8dfbb68955d370972fc7f831907f214e44d5 | |
| parent | 3c603709991186bc1c362508e9219ba951f8d1a4 (diff) | |
| download | gentoo-8206c473ba1f68730fb268c6fbb45bd911633e66.tar.gz gentoo-8206c473ba1f68730fb268c6fbb45bd911633e66.tar.bz2 gentoo-8206c473ba1f68730fb268c6fbb45bd911633e66.zip | |
x11-terms/kitty-shell-integration: drop 0.42.1, 0.42.2, 0.43.0
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
4 files changed, 0 insertions, 118 deletions
diff --git a/x11-terms/kitty-shell-integration/Manifest b/x11-terms/kitty-shell-integration/Manifest index 81ecda74ce2a..b8b1df20d1c4 100644 --- a/x11-terms/kitty-shell-integration/Manifest +++ b/x11-terms/kitty-shell-integration/Manifest @@ -1,4 +1 @@ -DIST kitty-0.42.1.tar.xz 12371156 BLAKE2B df0e9cba73d3e05579760b0f3d4778a189ab70b89c3a9932927fecc3c1e16870e8ae34ebd1042e9e1d44920991d5f45e4e53257f095797395f06f102d7308df5 SHA512 07dc2c1d814e40c1c39dc4275e6118efabbf8cbaae59a746996e310127d6e13297614f6b12406da3241f6b55e164bc675e157d5a2831ace248e78095d74cc430 -DIST kitty-0.42.2.tar.xz 12534304 BLAKE2B 56c80ab6467e4c4bef0acd0724e8a2458234c4bbdf81aaffed330a3148c299c3c59bf9cf5309d14618b0d143ee8f925fdb25776d6d5d530ffad24673cc88b04d SHA512 29e17ee3e4709b90d8d945ecd1737440bc88ad276cde4f5d159fd094de571bf7a10ccb86dfe9e0f8e213e36e59f7c62e2045f411d199ec729722a6462279d949 -DIST kitty-0.43.0.tar.xz 12751580 BLAKE2B 7e7212d4d4f1e00e2885cf6f95a7dacc741c3660d6aea6f2b494b4c397648340c72b1bff0e659e484634fad0395b850daf0d94594c2ffe20e41f6b044e9e6ab9 SHA512 87066a74d61572975a344837b7bee987acedaaa2fa4cce375003d1836403534bee9ca64db0ea4243038620995237c75712652bae28b12828e6a030f0874730da DIST kitty-0.43.1.tar.xz 12756968 BLAKE2B 27d6d06d16d5d2989741691aa5ec40c395f11ae9479f2ac78cfab6e2716023d01603d94957b825f9fe5bf09c377c5bc87a839545238abab8512a408482a4a570 SHA512 083fba383d970aec87aa279787b35bf974562987340a5b10538cab4b816fa0031ba02ba46240928649ef88e7ba7cafdae3dc697e7681d0899c43b5ef1af6ae7d diff --git a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.42.1.ebuild b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.42.1.ebuild deleted file mode 100644 index 2f5786a270ea..000000000000 --- a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.42.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2022-2025 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="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc 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/90-}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 -} diff --git a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.42.2.ebuild b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.42.2.ebuild deleted file mode 100644 index e0e648873b81..000000000000 --- a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.42.2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/kovidgoyal/kitty.git" -else - SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz" - S=${WORKDIR}/kitty-${PV} - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" -fi - -DESCRIPTION="Shell integration scripts for kitty, a GPU-based terminal emulator" -HOMEPAGE="https://sw.kovidgoyal.net/kitty/" - -LICENSE="GPL-3" -SLOT="0" -RESTRICT="test" # intended to be ran on the full kitty package - -src_compile() { :; } - -src_install() { - # split from the kitty package to allow installing individually on - # remote machines and have shell integration scripts be auto-loaded - insinto /etc/bash/bashrc.d - newins shell-integration/bash/kitty.bash 90-kitty.bash - - insinto /usr/share/fish - doins -r shell-integration/fish/vendor_conf.d - - # unfortunately zsh currently lacks a bashrc.d equivalent, copy - # to docdir for now so users can use it manually if needed (also at - # /usr/lib*/kitty/shell-integration/zsh if kitty is installed) - docinto zsh - docompress -x /usr/share/doc/${PF}/zsh - dodoc shell-integration/zsh/{.zshenv,kitty-integration,kitty.zsh} -} diff --git a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.43.0.ebuild b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.43.0.ebuild deleted file mode 100644 index 6d3f01d1f3db..000000000000 --- a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.43.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/kovidgoyal/kitty.git" -else - SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz" - S=${WORKDIR}/kitty-${PV} - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -fi - -DESCRIPTION="Shell integration scripts for kitty, a GPU-based terminal emulator" -HOMEPAGE="https://sw.kovidgoyal.net/kitty/" - -LICENSE="GPL-3" -SLOT="0" -RESTRICT="test" # intended to be ran on the full kitty package - -src_compile() { :; } - -src_install() { - # split from the kitty package to allow installing individually on - # remote machines and have shell integration scripts be auto-loaded - insinto /etc/bash/bashrc.d - newins shell-integration/bash/kitty.bash 90-kitty.bash - - insinto /usr/share/fish - doins -r shell-integration/fish/vendor_conf.d - - # unfortunately zsh currently lacks a bashrc.d equivalent, copy - # to docdir for now so users can use it manually if needed (also at - # /usr/lib*/kitty/shell-integration/zsh if kitty is installed) - docinto zsh - docompress -x /usr/share/doc/${PF}/zsh - dodoc shell-integration/zsh/{.zshenv,kitty-integration,kitty.zsh} -} |
