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 B9968158086 for ; Wed, 3 Nov 2021 06:41:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD070E086C; Wed, 3 Nov 2021 06:41:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 823ECE085B 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 B69D2342CDD 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 2588D1A0 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.b527a9485713d6d6d73d94d3db42a2d09a0dabb1.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-9999.ebuild X-VCS-Directories: x11-terms/kitty-terminfo/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: b527a9485713d6d6d73d94d3db42a2d09a0dabb1 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: 347426c9-736c-490c-a62c-7b8355180a7f X-Archives-Hash: 5b2112d577a73e90b8d35bc0ec55439a commit: b527a9485713d6d6d73d94d3db42a2d09a0dabb1 Author: Ionen Wolkens gentoo org> AuthorDate: Wed Oct 27 08:30:17 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=b527a948 x11-terms/kitty-terminfo: sync live ebuild Signed-off-by: Ionen Wolkens gentoo.org> .../kitty-terminfo/kitty-terminfo-9999.ebuild | 34 ++++++---------------- 1 file changed, 9 insertions(+), 25 deletions(-) diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-9999.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-9999.ebuild index 5166ea870a2..af803f4eecd 100644 --- a/x11-terms/kitty-terminfo/kitty-terminfo-9999.ebuild +++ b/x11-terms/kitty-terminfo/kitty-terminfo-9999.ebuild @@ -1,39 +1,23 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +inherit git-r3 -inherit python-any-r1 xdg git-r3 - -DESCRIPTION="Terminfo for kitty, an OpenGL-based terminal emulator" -HOMEPAGE="https://github.com/kovidgoyal/kitty" +DESCRIPTION="Terminfo for kitty, a GPU-based terminal emulator" +HOMEPAGE="https://sw.kovidgoyal.net/kitty/" EGIT_REPO_URI="https://github.com/kovidgoyal/kitty.git" LICENSE="GPL-3" SLOT="0" -IUSE="debug" - -DEPEND="${PYTHON_DEPS}" +RESTRICT="test" # intended to be ran on the full kitty package -PATCHES=( - "${FILESDIR}"/kitty-terminfo-setup-0.20.1.patch -) +BDEPEND="sys-libs/ncurses" -# kitty-terminfo is a split package from kitty that only installs the terminfo -# file. As tests are designed to be run with the whole package compiled they -# would fail in this case. -RESTRICT="test" - -src_compile() { - "${EPYTHON}" setup.py \ - --verbose $(usex debug --debug "") \ - --libdir-name $(get_libdir) \ - linux-terminfo || die "Failed to compile kitty." -} +src_compile() { :; } src_install() { - insinto /usr - doins -r linux-package/* + dodir /usr/share/terminfo + tic -xo "${ED}"/usr/share/terminfo terminfo/kitty.terminfo || die }