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, 04 Jan 2022 07:51:36
Message-Id: 1641282605.19c7d67c87d11e013ce4d74f1d57f81e79152331.ionen@gentoo
1 commit: 19c7d67c87d11e013ce4d74f1d57f81e79152331
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 4 04:04:58 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 4 07:50:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19c7d67c
7
8 x11-terms/kitty-terminfo: add 0.24.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.24.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 a7edd803adc7..409432b0ab98 100644
18 --- a/x11-terms/kitty-terminfo/Manifest
19 +++ b/x11-terms/kitty-terminfo/Manifest
20 @@ -1 +1,2 @@
21 DIST kitty-0.23.1.tar.xz 4444184 BLAKE2B f452e338fb72f723f2c028f90c20654cf80c5ee1aff924954f81f16445c9f4c10c77bd67d47ae5564b45496012dd1b7de447cdf3974b6913a39d170749878a73 SHA512 2d0c822e6bfca41b0a5e5e71e62f5073792b10c236287a509a6c790e19d098205c8719dbcb4aa630abbbaa3d44d6c9986c13efde7a9556772a89709383a0fe94
22 +DIST kitty-0.24.0.tar.xz 4503616 BLAKE2B 5a42b4815d25ff9e3a1f9fb6673e4e58ec3b59b5f81dc4098ef24408580d070e92a181e84167f5a343ffc3a9af33556823153d463eaa8e406f31c032ed8bab37 SHA512 b851ed56d16f9a39d47810bf27c2bc8cbb52d476376c4090045db90c1ad0bc7db6fd9e97edd6ce50a6d69e716671e1e909aab889ecac368857ad5c07f68a76af
23
24 diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.24.0.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-0.24.0.ebuild
25 new file mode 100644
26 index 000000000000..348b95a9b4a6
27 --- /dev/null
28 +++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.24.0.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2022 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 ~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 +}