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 6F77C158041 for ; Wed, 6 Mar 2024 06:30:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05899E29F0; Wed, 6 Mar 2024 06:30:30 +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 pigeon.gentoo.org (Postfix) with ESMTPS id D6B76E29F0 for ; Wed, 6 Mar 2024 06:30:29 +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 D2142341E1C for ; Wed, 6 Mar 2024 06:30:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 303F6119 for ; Wed, 6 Mar 2024 06:30:27 +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: <1709706599.63c79d85f42813299f878b3f67c039e2b23994f3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-uim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild X-VCS-Directories: app-i18n/scim-uim/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 63c79d85f42813299f878b3f67c039e2b23994f3 X-VCS-Branch: master Date: Wed, 6 Mar 2024 06:30:27 +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: e4fff3d2-5ed0-4ec6-bb29-b2f9d2385e0a X-Archives-Hash: cb7491864fbcce04b66c702605dd003f commit: 63c79d85f42813299f878b3f67c039e2b23994f3 Author: Eli Schwartz gmail com> AuthorDate: Wed Mar 6 06:18:16 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 6 06:29:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c79d85 app-i18n/scim-uim: re-run autoreconf to fix LTO The 2009 era distfile is so old that it probably has many bugs. We are particularly concerned by nm detection failing under LTO causing: ``` generating symbol list for `uim.la' /usr/bin/nm -B .libs/uim_la-scim_uim_imengine.o | | /usr/bin/sed 's/.* //' | sort | uniq > .libs/uim.exp ../libtool: 1: eval: Syntax error: "|" unexpected ``` Closes: https://bugs.gentoo.org/854672 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild b/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild index 8b9fe22e0718..dc2d5aabb92f 100644 --- a/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild +++ b/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 +inherit autotools + DESCRIPTION="An input module for Smart Common Input Method (SCIM) which uses uim as backend" HOMEPAGE="http://www.scim-im.org/" SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" @@ -23,6 +25,12 @@ PATCHES=( "${FILESDIR}"/${P}-uim-1.5.patch ) +src_prepare() { + default + # update the 2007 era configure / libtool scripts, which fail with LTO + eautoreconf +} + src_configure() { econf --disable-static }