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 6BF15158087 for ; Sun, 30 Jan 2022 09:24:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B32F82BC028; Sun, 30 Jan 2022 09:24:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 97CA62BC028 for ; Sun, 30 Jan 2022 09:24:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id B19B3343128 for ; Sun, 30 Jan 2022 09:24:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 690A4272 for ; Sun, 30 Jan 2022 09:24:21 +0000 (UTC) From: "Mike Frysinger" 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 Frysinger" Message-ID: <1643528002.90d1d2dc10b0ebe6d9d43dc616722ed07f3935df.vapier@gentoo> Subject: [gentoo-commits] proj/autotools-wrappers:main commit in: / X-VCS-Repository: proj/autotools-wrappers X-VCS-Files: ac-wrapper.sh X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 90d1d2dc10b0ebe6d9d43dc616722ed07f3935df X-VCS-Branch: main Date: Sun, 30 Jan 2022 09:24:21 +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: 3fe49ed6-20ae-47d7-bb81-382a8d8ad948 X-Archives-Hash: c84a5405c8d311ecc9907c9d4a01cee2 commit: 90d1d2dc10b0ebe6d9d43dc616722ed07f3935df Author: Mike Frysinger gentoo org> AuthorDate: Sun Jan 30 07:33:22 2022 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sun Jan 30 07:33:22 2022 +0000 URL: https://gitweb.gentoo.org/proj/autotools-wrappers.git/commit/?id=90d1d2dc autoconf-wrapper: ignore $KNOWN_AUTOCONF in env It's not clear why this was made into an env var as nothing ever sets it in ebuilds/eclasses, and we don't have a desire to allow them to either. It's also not how the automake-wrapper works. Signed-off-by: Mike Frysinger gentoo.org> ac-wrapper.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ac-wrapper.sh b/ac-wrapper.sh index 29a5d87..acc6fe9 100755 --- a/ac-wrapper.sh +++ b/ac-wrapper.sh @@ -78,9 +78,7 @@ fi # Set up bindings between actual version and WANT_AUTOCONF; # Start at last known unstable/stable versions to speed up lookup process. # -if [ -z "${KNOWN_AUTOCONF}" ] ; then - KNOWN_AUTOCONF="2.71:2.5 2.70:2.5 2.69:2.5" -fi +KNOWN_AUTOCONF="2.71:2.5 2.70:2.5 2.69:2.5" vers="${KNOWN_AUTOCONF} 9999:2.5 $(printf '2.%s:2.5 ' `seq 99 -1 59`) 2.13:2.1" binary=""