diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-09-17 23:30:53 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-09-17 23:32:46 -0400 |
commit | 81729481b0e567f4cc059238836f2bc85275cf99 (patch) | |
tree | 932b03cf02e244f6ed37d3109211407c6083a236 /x11-terms | |
parent | x11-drivers/nvidia-drivers: move glibc+openssl to RDEPEND-only (diff) | |
download | gentoo-81729481b0e567f4cc059238836f2bc85275cf99.tar.gz gentoo-81729481b0e567f4cc059238836f2bc85275cf99.tar.bz2 gentoo-81729481b0e567f4cc059238836f2bc85275cf99.zip |
x11-terms/kitty-terminfo: add 0.30.0
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/kitty-terminfo/Manifest | 1 | ||||
-rw-r--r-- | x11-terms/kitty-terminfo/kitty-terminfo-0.30.0.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/x11-terms/kitty-terminfo/Manifest b/x11-terms/kitty-terminfo/Manifest index a77d248edfd2..ee9130cd7f99 100644 --- a/x11-terms/kitty-terminfo/Manifest +++ b/x11-terms/kitty-terminfo/Manifest @@ -1 +1,2 @@ DIST kitty-0.29.2.tar.xz 7809388 BLAKE2B 6928d79a6cc0eaac4d92ce3babbeb0a42bf1dbc92b775386b521c8399352ba77ab9828f8cfd9f40c3e4f29ae98852b6f3cb9ee1f412474ba2ef655c18d2c294d SHA512 a34d8b5bc817dd9d27f1afa190856d916576f52458ede2253655b294358b6b89b1f103acb90d8d66a494b346420ddedc9fcf1a3399f561268ded82e7b1954b06 +DIST kitty-0.30.0.tar.xz 7842724 BLAKE2B a656fbb74a92a6b834fe8d06a89eaa1240044b132d64d7ad9eb429c71fd60e564ed963638bb9ba4e99d3e31c2ac594543e702b298a0b53aea1050e3b2e19ae9a SHA512 05438de8752057d7c419da41621b4d8fcfa6e7189530efc32c7c8a0bf2e6dae0332dd1b661206f9dea5bf374713e86ea5e69f640b0e73fe617f528bc963a8792 diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.30.0.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-0.30.0.ebuild new file mode 100644 index 000000000000..f217412c7ed0 --- /dev/null +++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.30.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Terminfo for kitty, a GPU-based terminal emulator" +HOMEPAGE="https://sw.kovidgoyal.net/kitty/" +SRC_URI="https://github.com/kovidgoyal/kitty/releases/download/v${PV}/kitty-${PV}.tar.xz" +S="${WORKDIR}/kitty-${PV}" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" +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 +} |