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 B6CD3158020 for ; Thu, 24 Nov 2022 16:53:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED355E098F; Thu, 24 Nov 2022 16:53:53 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D21BEE098F for ; Thu, 24 Nov 2022 16:53:53 +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 E19F6340D73 for ; Thu, 24 Nov 2022 16:53:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F50875E for ; Thu, 24 Nov 2022 16:53:51 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1669308783.20bcabbb6778de49da6d64cdab10e5a84c4497fb.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/less/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/less/less-608-r1.ebuild sys-apps/less/less-612.ebuild X-VCS-Directories: sys-apps/less/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 20bcabbb6778de49da6d64cdab10e5a84c4497fb X-VCS-Branch: master Date: Thu, 24 Nov 2022 16:53:51 +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: 3649d6f0-d74a-4643-a71d-e17f10b0531d X-Archives-Hash: 8b9e3dda92653f56e34f8b06fcc28fef commit: 20bcabbb6778de49da6d64cdab10e5a84c4497fb Author: Mike Gilbert gentoo org> AuthorDate: Thu Nov 24 16:50:55 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Nov 24 16:53:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20bcabbb sys-apps/less: call eautoreconf in all ebuilds This should prevent weirdness with clang-16. Bug: https://bugs.gentoo.org/870412 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/less/less-608-r1.ebuild | 2 ++ sys-apps/less/less-612.ebuild | 11 +++++++++++ 2 files changed, 13 insertions(+) diff --git a/sys-apps/less/less-608-r1.ebuild b/sys-apps/less/less-608-r1.ebuild index 0c48837e70b3..0ad903424e2c 100644 --- a/sys-apps/less/less-608-r1.ebuild +++ b/sys-apps/less/less-608-r1.ebuild @@ -26,6 +26,8 @@ src_prepare() { "${FILESDIR}/less-608-procfs.patch" ) default + # Upstream uses unpatched autoconf-2.69, which breaks with clang-16. + # https://bugs.gentoo.org/870412 eautoreconf } diff --git a/sys-apps/less/less-612.ebuild b/sys-apps/less/less-612.ebuild index 21c557ee9136..cb210766d048 100644 --- a/sys-apps/less/less-612.ebuild +++ b/sys-apps/less/less-612.ebuild @@ -2,6 +2,10 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 +WANT_AUTOMAKE=none +WANT_LIBTOOL=none + +inherit autotools # Releases are usually first a beta then promoted to stable if no # issues were found. Upstream explicitly ask "to not generally distribute" @@ -22,6 +26,13 @@ DEPEND=">=app-misc/editor-wrapper-3 pcre? ( dev-libs/libpcre2 )" RDEPEND="${DEPEND}" +src_prepare() { + default + # Upstream uses unpatched autoconf-2.69, which breaks with clang-16. + # https://bugs.gentoo.org/870412 + eautoreconf +} + src_configure() { local myeconfargs=( --with-regex=$(usex pcre pcre2 posix)