From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B37CF15808A for ; Wed, 16 Jul 2025 07:39:36 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 99F3234101D for ; Wed, 16 Jul 2025 07:39:36 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A880411055B; Wed, 16 Jul 2025 07:39:31 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 9EC5411055B for ; Wed, 16 Jul 2025 07:39:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 53607340FB4 for ; Wed, 16 Jul 2025 07:39:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D5AC31BE for ; Wed, 16 Jul 2025 07:39:29 +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: <1752651537.eadfa6eb32cba5c6567511e96ad0e9d665c63af9.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: eadfa6eb32cba5c6567511e96ad0e9d665c63af9 X-VCS-Branch: master Date: Wed, 16 Jul 2025 07:39:29 +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: 2bcf8c9f-7f9f-4489-b569-c4191be4c007 X-Archives-Hash: 9c98260f77722eb0f0783ebc22c96681 commit: eadfa6eb32cba5c6567511e96ad0e9d665c63af9 Author: Ionen Wolkens gentoo org> AuthorDate: Wed Jul 16 05:47:25 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Wed Jul 16 07:38:57 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eadfa6eb x11-terms/kitty-terminfo: make live ebuild copyable Signed-off-by: Ionen Wolkens gentoo.org> x11-terms/kitty-terminfo/kitty-terminfo-9999.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/x11-terms/kitty-terminfo/kitty-terminfo-9999.ebuild b/x11-terms/kitty-terminfo/kitty-terminfo-9999.ebuild index af803f4eecd4..4298203f5167 100644 --- a/x11-terms/kitty-terminfo/kitty-terminfo-9999.ebuild +++ b/x11-terms/kitty-terminfo/kitty-terminfo-9999.ebuild @@ -1,13 +1,19 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit git-r3 +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/" -EGIT_REPO_URI="https://github.com/kovidgoyal/kitty.git" LICENSE="GPL-3" SLOT="0"