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-terminfo/
Date: Tue, 31 Jan 2023 13:46:30
Message-Id: 1675172686.5528dc3412aecdd8734cd5dfc1bad47110b8510d.ionen@gentoo
1 commit: 5528dc3412aecdd8734cd5dfc1bad47110b8510d
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 31 12:31:38 2023 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 13:44:46 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5528dc34
7
8 x11-terms/kitty-terminfo: add 0.27.0
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 x11-terms/kitty-terminfo/Manifest | 1 +
13 .../kitty-terminfo/kitty-terminfo-0.27.0.ebuild | 23 ++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/x11-terms/kitty-terminfo/Manifest b/x11-terms/kitty-terminfo/Manifest
17 index 16dd9be0cb92..1611ede2ced2 100644
18 --- a/x11-terms/kitty-terminfo/Manifest
19 +++ b/x11-terms/kitty-terminfo/Manifest
20 @@ -1 +1,2 @@
21 DIST kitty-0.26.5.tar.xz 4749988 BLAKE2B 488969b4d7c6aed489a540a8e3bee183345fcfb7e05ae5604f4af40f0720ed931cff82cf389e2fa4015eed74762c0630481a99eeb9302c22c89c4f3e247170d4 SHA512 086ae03d0e382afbe3001e357ef51388c7a8e81fa5b4bf9ce8b123a7fc8bfff3bd68d074e926f540a1f2b83062baa831e44d29c017cabfe8221bebe49b64e808
22 +DIST kitty-0.27.0.tar.xz 5067860 BLAKE2B 5c9126dd9e76afcd6d53aa025adc36912145129b16b0db60c9cb12736df895166d417cbce9198e1feddd3f07c216e557136a130853fa0ddd91833c67fe236c4e SHA512 8063008df261747a7089c69ad9ae3a3d3c24286014f02d04faee9f0b5b6f452172cf99ff8a520ca8e314ba0009e0009701292656db913c23d84b6a2311085813
23
24 diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.27.0.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-0.27.0.ebuild
25 new file mode 100644
26 index 000000000000..f29634123585
27 --- /dev/null
28 +++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.27.0.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2023 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DESCRIPTION="Terminfo 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 +BDEPEND="sys-libs/ncurses"
46 +
47 +src_compile() { :; }
48 +
49 +src_install() {
50 + dodir /usr/share/terminfo
51 + tic -xo "${ED}"/usr/share/terminfo terminfo/kitty.terminfo || die
52 +}