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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4475B15A7D9 for ; Sun, 19 Mar 2023 02:10:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 661CAE08BD; Sun, 19 Mar 2023 02:10:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 40F8AE0895 for ; Sun, 19 Mar 2023 02:10:42 +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 4766F3412AC for ; Sun, 19 Mar 2023 02:10:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A61DA8B7 for ; Sun, 19 Mar 2023 02:10:39 +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: <1679190814.a5ea3947424dc9f286e5b32f77a4ae43dcaed07a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/sgrep/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/sgrep/sgrep-1.94a-r1.ebuild app-text/sgrep/sgrep-1.94a-r2.ebuild X-VCS-Directories: app-text/sgrep/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a5ea3947424dc9f286e5b32f77a4ae43dcaed07a X-VCS-Branch: master Date: Sun, 19 Mar 2023 02:10:39 +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: fe261863-256e-4f87-8220-bc1073272b6e X-Archives-Hash: a9a1c4f5b9cb32594c5d1b6adce320e6 commit: a5ea3947424dc9f286e5b32f77a4ae43dcaed07a Author: Sam James gentoo org> AuthorDate: Sun Mar 19 01:53:34 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 19 01:53:34 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5ea3947 app-text/sgrep: fix configure w/ clang 16 Closes: https://bugs.gentoo.org/900533 Signed-off-by: Sam James gentoo.org> app-text/sgrep/{sgrep-1.94a-r1.ebuild => sgrep-1.94a-r2.ebuild} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-text/sgrep/sgrep-1.94a-r1.ebuild b/app-text/sgrep/sgrep-1.94a-r2.ebuild similarity index 88% rename from app-text/sgrep/sgrep-1.94a-r1.ebuild rename to app-text/sgrep/sgrep-1.94a-r2.ebuild index eb45eb4f246a..de456e40df77 100644 --- a/app-text/sgrep/sgrep-1.94a-r1.ebuild +++ b/app-text/sgrep/sgrep-1.94a-r2.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit autotools + DESCRIPTION="Use structural criteria to grep and index text, SGML, XML and HTML and filter" HOMEPAGE="https://www.cs.helsinki.fi/u/jjaakkol/sgrep.html" SRC_URI="ftp://ftp.cs.helsinki.fi/pub/Software/Local/Sgrep/${P}.tar.gz" @@ -19,6 +21,9 @@ src_prepare() { default sed -i "s:/usr/lib:${EPREFIX}/etc:g" sgrep.1 || die + + # Clang 16, bug #900533 + eautoreconf } src_configure() {