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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 94AEC1580B9 for ; Sat, 28 Aug 2021 02:19:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC344E08A0; Sat, 28 Aug 2021 02:19:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C48AE08A0 for ; Sat, 28 Aug 2021 02:19:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57F18335D44 for ; Sat, 28 Aug 2021 02:19:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D099D50 for ; Sat, 28 Aug 2021 02:19:29 +0000 (UTC) From: "Ryan Fox" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ryan Fox" Message-ID: <1630116681.932ea0a18d2f9aabec1e2a8cafc9280b7b5743d0.flewkey@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/foot-terminfo/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/foot-terminfo/foot-terminfo-9999.ebuild X-VCS-Directories: gui-apps/foot-terminfo/ X-VCS-Committer: flewkey X-VCS-Committer-Name: Ryan Fox X-VCS-Revision: 932ea0a18d2f9aabec1e2a8cafc9280b7b5743d0 X-VCS-Branch: dev Date: Sat, 28 Aug 2021 02:19: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: 8964bf11-cda0-4227-91ee-e8666aa699b1 X-Archives-Hash: 789e73ede5b104a8ff541c79a7df15d8 commit: 932ea0a18d2f9aabec1e2a8cafc9280b7b5743d0 Author: Ryan Fox 2a03 party> AuthorDate: Sat Aug 28 02:11:21 2021 +0000 Commit: Ryan Fox 2a03 party> CommitDate: Sat Aug 28 02:11:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=932ea0a1 gui-apps/foot-terminfo: Change install location Dickey added a version of foot's terminfo to ncurses, but it lacks certain features. To avoid a package collision with sys-libs/ncurses, we will install terminfo to a non-standard location from now on. See https://codeberg.org/dnkl/foot/issues/671 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Ryan Fox 2a03.party> gui-apps/foot-terminfo/foot-terminfo-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui-apps/foot-terminfo/foot-terminfo-9999.ebuild b/gui-apps/foot-terminfo/foot-terminfo-9999.ebuild index e2e366268..1727e2d92 100644 --- a/gui-apps/foot-terminfo/foot-terminfo-9999.ebuild +++ b/gui-apps/foot-terminfo/foot-terminfo-9999.ebuild @@ -26,7 +26,7 @@ src_compile() { } src_install() { - dodir /usr/share/terminfo/f/ - cp "${S}/f/foot" "${D}/usr/share/terminfo/f/foot" || die - cp "${S}/f/foot-direct" "${D}/usr/share/terminfo/f/foot-direct" || die + dodir /usr/share/foot/terminfo/f/ + cp "${S}/f/foot" "${D}/usr/share/foot/terminfo/f/foot" || die + cp "${S}/f/foot-direct" "${D}/usr/share/foot/terminfo/f/foot-direct" || die }