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 2AC7D1581B9 for ; Fri, 03 Oct 2025 00:07:53 +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 1919B34105B for ; Fri, 03 Oct 2025 00:07:53 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5016611056D; Fri, 03 Oct 2025 00:07:48 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 371B011056D for ; Fri, 03 Oct 2025 00:07:48 +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 D4C54340FDE for ; Fri, 03 Oct 2025 00:07:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 452F439F7 for ; Fri, 03 Oct 2025 00:07:46 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1759449973.21bb13eb3f39d10f77592365c41da9b5e80e65f9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/ncurses/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/ncurses/ncurses-6.5_p20250329.ebuild sys-libs/ncurses/ncurses-6.5_p20250531-r1.ebuild sys-libs/ncurses/ncurses-6.5_p20250802.ebuild X-VCS-Directories: sys-libs/ncurses/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 21bb13eb3f39d10f77592365c41da9b5e80e65f9 X-VCS-Branch: master Date: Fri, 03 Oct 2025 00:07:46 +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: a9cfa7db-80da-447a-87e2-c7462a9985d0 X-Archives-Hash: 7023375f1552e6a09f96f244e787157e commit: 21bb13eb3f39d10f77592365c41da9b5e80e65f9 Author: Esteve Varela Colominas gmail com> AuthorDate: Thu Oct 2 13:55:24 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 3 00:06:13 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21bb13eb sys-libs/ncurses: Fix cross-compilation without `tic` When `tic` is not available on the host during cross-compilation, this ebuild relies on a codepath that compiles a temporary copy of `tic`. Recent versions of ncurses use TIC as a path to the tic binary, instead of TIC_PATH. Closes: https://bugs.gentoo.org/963660 Signed-off-by: Esteve Varela Colominas gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/44006 Closes: https://github.com/gentoo/gentoo/pull/44006 Signed-off-by: Sam James gentoo.org> sys-libs/ncurses/ncurses-6.5_p20250329.ebuild | 2 +- sys-libs/ncurses/ncurses-6.5_p20250531-r1.ebuild | 2 +- sys-libs/ncurses/ncurses-6.5_p20250802.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-libs/ncurses/ncurses-6.5_p20250329.ebuild b/sys-libs/ncurses/ncurses-6.5_p20250329.ebuild index 183cc9ca276f..524fb1d91087 100644 --- a/sys-libs/ncurses/ncurses-6.5_p20250329.ebuild +++ b/sys-libs/ncurses/ncurses-6.5_p20250329.ebuild @@ -345,7 +345,7 @@ do_configure() { # See comments in src_configure. if [[ ${target} != "cross" ]] ; then local cross_path="${WORKDIR}/cross" - [[ -d ${cross_path} ]] && export TIC_PATH="${cross_path}/progs/tic" + [[ -d ${cross_path} ]] && export TIC="${cross_path}/progs/tic" fi ECONF_SOURCE="${S}" econf "${conf[@]}" "$@" diff --git a/sys-libs/ncurses/ncurses-6.5_p20250531-r1.ebuild b/sys-libs/ncurses/ncurses-6.5_p20250531-r1.ebuild index 05ae1ff835a3..88e193fb75e8 100644 --- a/sys-libs/ncurses/ncurses-6.5_p20250531-r1.ebuild +++ b/sys-libs/ncurses/ncurses-6.5_p20250531-r1.ebuild @@ -351,7 +351,7 @@ do_configure() { # See comments in src_configure. if [[ ${target} != "cross" ]] ; then local cross_path="${WORKDIR}/cross" - [[ -d ${cross_path} ]] && export TIC_PATH="${cross_path}/progs/tic" + [[ -d ${cross_path} ]] && export TIC="${cross_path}/progs/tic" fi ECONF_SOURCE="${S}" econf "${conf[@]}" "$@" diff --git a/sys-libs/ncurses/ncurses-6.5_p20250802.ebuild b/sys-libs/ncurses/ncurses-6.5_p20250802.ebuild index 4c917ce365bb..7e19f10403b3 100644 --- a/sys-libs/ncurses/ncurses-6.5_p20250802.ebuild +++ b/sys-libs/ncurses/ncurses-6.5_p20250802.ebuild @@ -359,7 +359,7 @@ do_configure() { # See comments in src_configure. if [[ ${target} != "cross" ]] ; then local cross_path="${WORKDIR}/cross" - [[ -d ${cross_path} ]] && export TIC_PATH="${cross_path}/progs/tic" + [[ -d ${cross_path} ]] && export TIC="${cross_path}/progs/tic" fi ECONF_SOURCE="${S}" econf "${conf[@]}" "$@"