commit: 17c6b84ae6cae31b9e021323880f9a0ea5ae4977
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 16 11:19:54 2026 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Mon Mar 16 11:26:26 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17c6b84a
x11-terms/kitty-terminfo: add 0.46.1
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
x11-terms/kitty-terminfo/Manifest | 1 +
.../kitty-terminfo/kitty-terminfo-0.46.1.ebuild | 29 ++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/x11-terms/kitty-terminfo/Manifest
b/x11-terms/kitty-terminfo/Manifest
index 0d8ddc315507..09e9ccadc239 100644
--- a/x11-terms/kitty-terminfo/Manifest
+++ b/x11-terms/kitty-terminfo/Manifest
@@ -1,3 +1,4 @@
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
+DIST kitty-0.46.1.tar.xz 10350256 BLAKE2B
f05a462165125c59123f6f1d1b4cde4859d32773a48b263b681e13028c97945b077d39d42d11da8b7b41ce1b5776ed599f3dd074edf1a8810911ff456a1afdb8
SHA512
37d89156b8529943e1f6e437698a26b61887dbd778f40904320ea6e7b96b8c4d2ae50883bf386a5b68114342ad4a502703f040c6b95e445c01d7dce93ae8ff55
diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.46.1.ebuild
b/x11-terms/kitty-terminfo/kitty-terminfo-0.46.1.ebuild
new file mode 100644
index 000000000000..193583584d52
--- /dev/null
+++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.46.1.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
+}