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 8732E158B20 for ; Tue, 04 Feb 2025 12:22:58 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 6B591342F65 for ; Tue, 04 Feb 2025 12:22:58 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 63BED1102A2; Tue, 04 Feb 2025 12:22:57 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 569A01102A2 for ; Tue, 04 Feb 2025 12:22:57 +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 03DFC342F65 for ; Tue, 04 Feb 2025 12:22:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 127D11CE6 for ; Tue, 04 Feb 2025 12:22:55 +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: <1738671744.8e67bd076bb9774e0578eae3a3184c6c015206e5.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/kitty/kitty-9999.ebuild X-VCS-Directories: x11-terms/kitty/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 8e67bd076bb9774e0578eae3a3184c6c015206e5 X-VCS-Branch: master Date: Tue, 04 Feb 2025 12:22:55 +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: 9f5ceb29-cca2-4571-8462-5559cc877a22 X-Archives-Hash: 573eebe2e8d44791594522cc11fcdfc0 commit: 8e67bd076bb9774e0578eae3a3184c6c015206e5 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Feb 4 12:20:32 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Feb 4 12:22:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e67bd07 x11-terms/kitty: update live wrt cairo and fontconfig, it switched to using fontconfig through cairo (cairo-fc). For shell_integration, just doing a quick workaround for now else it fails to build and haven't spent more time on this. Signed-off-by: Ionen Wolkens gentoo.org> x11-terms/kitty/kitty-9999.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/x11-terms/kitty/kitty-9999.ebuild b/x11-terms/kitty/kitty-9999.ebuild index 5b29cd01b6e8..88bbd192ca41 100644 --- a/x11-terms/kitty/kitty-9999.ebuild +++ b/x11-terms/kitty/kitty-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -41,13 +41,14 @@ RDEPEND=" dev-libs/openssl:= dev-libs/xxhash media-fonts/symbols-nerd-font - media-libs/fontconfig + media-libs/freetype media-libs/harfbuzz:=[truetype] media-libs/lcms:2 media-libs/libglvnd[X?] media-libs/libpng:= sys-apps/dbus sys-libs/zlib:= + x11-libs/cairo x11-libs/libxkbcommon[X?] x11-misc/xkeyboard-config ~x11-terms/kitty-shell-integration-${PV} @@ -118,6 +119,10 @@ src_prepare() { sed -i setup.py "${sedargs[@]}" || die + # temporary, see --shell-integration below and try again on bump + sed -e "/shell_integration: /s/'enabled'/&, 'no-rc', 'no-sudo'/" \ + -i kitty/options/types.py || die + local skiptests=( # relies on 'who' command which doesn't detect users with pid-sandbox kitty_tests/utmp.py @@ -141,7 +146,8 @@ src_compile() { --disable-link-time-optimization --ignore-compiler-warnings --libdir-name=$(get_libdir) - --shell-integration="enabled no-rc no-sudo" + # option seems(?) currently broken, needs looking into (see sed above) +# --shell-integration="enabled no-rc no-sudo" --update-check-interval=0 --verbose )