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: Thu, 03 Mar 2022 11:59:23
Message-Id: 1646307849.82d915e277a1a73d960851872d462c2fde18af52.ionen@gentoo
1 commit: 82d915e277a1a73d960851872d462c2fde18af52
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 3 11:44:09 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 3 11:44:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82d915e2
7
8 x11-terms/kitty-terminfo: add 0.24.4
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.24.4.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 93164c33d8e7..69b9b65a2068 100644
18 --- a/x11-terms/kitty-terminfo/Manifest
19 +++ b/x11-terms/kitty-terminfo/Manifest
20 @@ -1,2 +1,3 @@
21 DIST kitty-0.23.1.tar.xz 4444184 BLAKE2B f452e338fb72f723f2c028f90c20654cf80c5ee1aff924954f81f16445c9f4c10c77bd67d47ae5564b45496012dd1b7de447cdf3974b6913a39d170749878a73 SHA512 2d0c822e6bfca41b0a5e5e71e62f5073792b10c236287a509a6c790e19d098205c8719dbcb4aa630abbbaa3d44d6c9986c13efde7a9556772a89709383a0fe94
22 DIST kitty-0.24.3.tar.xz 4614252 BLAKE2B 04c9904e20aae0ed12d41dc01ea4fbb5e36430e50087821845c0bd3e6d8dd0ab2a090f8ebff8fd66fe9f2b0a3efe52f0434008b4484cbe27a58b05c6e4f56d73 SHA512 2b1482164fb1aabfa2f775f24d0ffbbbd1e8a85cf114a2daa411379ea8dbcea6ae5f361997132fb4d773fed8adeec4c04ffb4e615a470cefeb794d8a39c94c0a
23 +DIST kitty-0.24.4.tar.xz 4613232 BLAKE2B 3bcb957a2d1b43cbf222207fbd12e5d098e0b9616370761d9f9629e8b39419405fb146d91281912f55b35611cf01d4e33232224cc3b710044d8423300c9b53c8 SHA512 28b1e2415b5c73ad8922d4ed17a63638c497a91c9aedba71c2f53e77fc89ed49951a2e873bba5bbe85c8eda22107d9ff4e4321010ac33a2d289c2fbd5d3a5b8f
24
25 diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.24.4.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-0.24.4.ebuild
26 new file mode 100644
27 index 000000000000..35ff98034a87
28 --- /dev/null
29 +++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.24.4.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DESCRIPTION="Terminfo for kitty, a GPU-based terminal emulator"
37 +HOMEPAGE="https://sw.kovidgoyal.net/kitty/"
38 +SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz"
39 +S="${WORKDIR}/kitty-${PV}"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~ppc64 ~x86"
44 +RESTRICT="test" # intended to be ran on the full kitty package
45 +
46 +BDEPEND="sys-libs/ncurses"
47 +
48 +src_compile() { :; }
49 +
50 +src_install() {
51 + dodir /usr/share/terminfo
52 + tic -xo "${ED}"/usr/share/terminfo terminfo/kitty.terminfo || die
53 +}