From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4E486158086 for ; Wed, 3 Nov 2021 06:41:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 897F7E085B; Wed, 3 Nov 2021 06:41:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 010C2E0855 for ; Wed, 3 Nov 2021 06:41:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D5AF342CAA for ; Wed, 3 Nov 2021 06:41:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 125DD197 for ; Wed, 3 Nov 2021 06:41:22 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1635921410.6e53715787c0e45d593029ae388501df6d13e7ef.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty-terminfo/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/kitty-terminfo/kitty-terminfo-0.23.1-r1.ebuild X-VCS-Directories: x11-terms/kitty-terminfo/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 6e53715787c0e45d593029ae388501df6d13e7ef X-VCS-Branch: master Date: Wed, 3 Nov 2021 06:41:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8971fb83-eb64-48e8-a60b-5521c6fbcfa2 X-Archives-Hash: 48e8de3bc4a15d7d0f17e7b09bb9cc73 commit: 6e53715787c0e45d593029ae388501df6d13e7ef Author: Ionen Wolkens gentoo org> AuthorDate: Wed Oct 27 07:32:14 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Nov 3 06:36:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e537157 x11-terms/kitty-terminfo: simplify ebuild, skip private terminfo There's no need to use setup.py, patch, and handle python deps just to run a single tic command (does emit a "new" warning because build-terminfo formerly expected and silenced it). This formerly installed in both /usr/share/terminfo and /usr/lib64/kitty. The latter does not make sense on a system where kitty is not installed, i.e. where terminfo is being installed for using kitty over ssh or similar. Signed-off-by: Ionen Wolkens gentoo.org> .../kitty-terminfo/kitty-terminfo-0.23.1-r1.ebuild | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-0.23.1-r1.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-0.23.1-r1.ebuild new file mode 100644 index 00000000000..1a17886e2a0 --- /dev/null +++ b/x11-terms/kitty-terminfo/kitty-terminfo-0.23.1-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2021 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 ~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 +}