commit: 27e504d28a023a568836f0e13deb1209352d400a
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 14 23:47:19 2026 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Mar 15 00:08:06 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27e504d2
x11-terms/kitty-terminfo: add 0.46.0
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
x11-terms/kitty-terminfo/Manifest | 1 +
.../kitty-terminfo/kitty-terminfo-0.46.0.ebuild | 29 ++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/x11-terms/kitty-terminfo/Manifest
b/x11-terms/kitty-terminfo/Manifest
index 6dda4ce9fa91..0d8ddc315507 100644
--- a/x11-terms/kitty-terminfo/Manifest
+++ b/x11-terms/kitty-terminfo/Manifest
@@ -1,2 +1,3 @@
DIST kitty-0.45.0-less691-fix-backport.tar.xz 10892 BLAKE2B
0c93088c6a9f85dbd35459b31a1638d2c3748eb4edffefffd3ffd7f3023cb8ddce00c96ff5e82cd9c632b7d1a8a612cccdd523ef5f3550f847697a6baaaf6dd4
SHA512
76b8c348bf502a4902c0a2c89b17dd2c8bbec4079cc7d77c7f1680f553f0ce0f5dd3c26298830047225f41aa68b4fe94a473c0b61b6c23bde4e524cebcf08ccf
DIST kitty-0.45.0.tar.xz 10189520 BLAKE2B
7a0ae48199d485ebe0d5c64eae85548b9bd996157f3de8eef773f39d3fa5304ef7d2ad9b5849a71eefc9ea224077c54b08cb54d802127ed70ea0436584c671d8
SHA512
6d627072c1e0500d46aa3d82793fe10f271c00c45447558e555e3704ee09c43ad6472eada97b95c49c7af2eea8b1da632190274f7ff567bdb0d7baba8b0eba8c
+DIST kitty-0.46.0.tar.xz 10342980 BLAKE2B
f3e67a990b13ea780630a3ff1dbfba6d1c3f2feac41ca60fe3f04ab607e3b5875c23964ed48527028bbe0a0fff5fe59ec7fd09ca5579319077dc815f08284ca7
SHA512
678e9774864a9cee9d644e40704b59e2e3ec7ca0a1cd21517a60f95643b6b7c0a7f899eca329a29eec29c2fd21b9388dfab7356477266730b1187595fa896a67
diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.46.0.ebuild
b/x11-terms/kitty-terminfo/kitty-terminfo-0.46.0.ebuild
new file mode 100644
index 000000000000..193583584d52
--- /dev/null
+++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.46.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/kovidgoyal/kitty.git"
+else
+
SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz"
+ S=${WORKDIR}/kitty-${PV}
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64
~riscv ~s390 ~sparc ~x86"
+fi
+
+DESCRIPTION="Terminfo for kitty, a GPU-based terminal emulator"
+HOMEPAGE="https://sw.kovidgoyal.net/kitty/"
+
+LICENSE="GPL-3"
+SLOT="0"
+RESTRICT="test" # intended to be ran on the full kitty package
+
+BDEPEND="sys-libs/ncurses"
+
+src_compile() { :; }
+
+src_install() {
+ dodir /usr/share/terminfo
+ tic -xo "${ED}"/usr/share/terminfo terminfo/kitty.terminfo || die
+}