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: Mon, 05 Sep 2022 06:59:22
Message-Id: 1662361116.623ffd15805dd8f97716c16f2039297c1d548a50.ionen@gentoo
1 commit: 623ffd15805dd8f97716c16f2039297c1d548a50
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 06:54:43 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 06:58:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=623ffd15
7
8 x11-terms/kitty-terminfo: add 0.26.2
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.26.2.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 7aad4eb0c34b..dff417b1881c 100644
18 --- a/x11-terms/kitty-terminfo/Manifest
19 +++ b/x11-terms/kitty-terminfo/Manifest
20 @@ -1,2 +1,3 @@
21 DIST kitty-0.25.2.tar.xz 4681940 BLAKE2B 9aa43711c833541f364100465dfd1c13251ed59d5777634a5f193cc0544743295a772de85c64b4657e2cbca3d88f77019b0fe26b25c8b0908c1cc108b480ecf6 SHA512 ac858b525abbdeb137989a7971c51651d46bffedde048ed572bbb4c31119a4e0f9f424edbdbfd14fe2e043b4a7c8a1a1f8ee6591906e40a655d9f783b21f31a6
22 DIST kitty-0.26.1.tar.xz 4716836 BLAKE2B 1369fe3bb13fc5fb134c5b45f179ddd60b4edb61243d88aa08d8b414b4153b17e5c739859c9ed2db366e096db1b07e207cbef715d95787722037ddf5854582e1 SHA512 ed270c84078acb33921506296c476ada5f19fb33344047c7dad5b2d7b697c2111e2925dc391eb4927a05ef82ae583b35db5eee53e148e3e4d71ce942a1deade2
23 +DIST kitty-0.26.2.tar.xz 4716932 BLAKE2B fbbd1bbeb42bfb5be1348ead4605d45f93a90e31e707444c901b9f4c20b42d470c1e3cec9e0f135f04ad49bb472824fb7445932403127e8cbc639b5dac6ee982 SHA512 4bfb3d9438bb018dc10503be610df4e6e8bb1f9459b5131f46fde6279ba5423e44dbbcb86a2dc2602ee208266edc78074f6496e99761cf43f7081ea9e88175f7
24
25 diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.26.2.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-0.26.2.ebuild
26 new file mode 100644
27 index 000000000000..35ff98034a87
28 --- /dev/null
29 +++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.26.2.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 +}