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: Sat, 05 Feb 2022 23:39:31
Message-Id: 1644104280.3fd382a08a043069967b0461bd7680f929758179.ionen@gentoo
1 commit: 3fd382a08a043069967b0461bd7680f929758179
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 5 22:27:12 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 5 23:38:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fd382a0
7
8 x11-terms/kitty-shell-integration: drop 0.24.1
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.1.ebuild | 34 ----------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/x11-terms/kitty-shell-integration/Manifest b/x11-terms/kitty-shell-integration/Manifest
17 index fb6397ec9526..5980c6630eec 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.24.1.tar.xz 4512652 BLAKE2B ea1bf4911a744fb5aaa5fe3d9fc4821880e78c60a0a89ecba12c73623b9b537c2d9d4e494da125669f2fc36f273f49a00cc5825f56184c1b0c69f4c570b2226d SHA512 e590a3abd4ed38ce956ee1e1b9d3679150c83b80df5ed9daf9773d7a278f63dc8a3a563058906d322f9186bece7d479036a502864fd80f45593c4970c056f389
22 DIST kitty-0.24.2.tar.xz 4601672 BLAKE2B 6e253863d81f2ef04f5d185cfe4379fe08818992a12a06da2ce2b0958912c4a0dc164b2ac6e8e74e383716e7040b2390bd1123ab4d8d282ede602dfea5cc756f SHA512 6d49b20dbd96ed0a1ed49a4523b65593c547ea2fec46f4c2557e26cdb5048ebaadb2c2118c7a2dd346f83ecab2d0a341d2322ae37ebe49184e22055581c631e7
23
24 diff --git a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.24.1.ebuild b/x11-terms/kitty-shell-integration/kitty-shell-integration-0.24.1.ebuild
25 deleted file mode 100644
26 index 80e3667e6412..000000000000
27 --- a/x11-terms/kitty-shell-integration/kitty-shell-integration-0.24.1.ebuild
28 +++ /dev/null
29 @@ -1,34 +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 ~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 -}