Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 22 Jan 2022 22:22:53
Message-Id: 1642890145.6d2d4a44b2eb9a7a93a1b3d7b847674c75cdc0de.sam@gentoo
1 commit: 6d2d4a44b2eb9a7a93a1b3d7b847674c75cdc0de
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 15 21:41:17 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 22 22:22:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d2d4a44
7
8 autotools.eclass: update for autoconf 2.71
9
10 Closes: https://bugs.gentoo.org/827852
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 eclass/autotools.eclass | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass
17 index af50b1d70fcd..85be205c1032 100644
18 --- a/eclass/autotools.eclass
19 +++ b/eclass/autotools.eclass
20 @@ -95,7 +95,7 @@ if [[ -n ${WANT_AUTOCONF} ]] ; then
21 none) _autoconf_atom="" ;; # some packages don't require autoconf at all
22 2.1) _autoconf_atom="~sys-devel/autoconf-2.13" ;;
23 # if you change the "latest" version here, change also autotools_env_setup
24 - latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.69" ;;
25 + latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.71" ;;
26 *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;;
27 esac
28 export WANT_AUTOCONF
29 @@ -528,7 +528,7 @@ autotools_env_setup() {
30 [[ ${WANT_AUTOMAKE} == "latest" ]] && \
31 die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE[*]}"
32 fi
33 - [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5
34 + [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.71
35 }
36
37 # @FUNCTION: autotools_run_tool