Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 07 Aug 2020 21:36:57
Message-Id: 1596836119.7b93048f96a905296df6dacbdae52773855f72b9.slyfox@gentoo
1 commit: 7b93048f96a905296df6dacbdae52773855f72b9
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 7 21:35:19 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 7 21:35:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b93048f
7
8 toolchain.eclass: raise minimum gcc-config up to 2.3
9
10 In #736040 gcc-config-1.9 was not able to handle gcc-10 paths.
11 Let's raise lower bound to minimum stable version currently in
12 ::gentoo.
13
14 Reported-by: Dennis Nezic
15 Bug: https://bugs.gentoo.org/736040
16 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
17
18 eclass/toolchain.eclass | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21 diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
22 index a4cb9cc141e..7a4364af4e6 100644
23 --- a/eclass/toolchain.eclass
24 +++ b/eclass/toolchain.eclass
25 @@ -261,7 +261,7 @@ case ${EAPI:-0} in
26 5*|6) DEPEND+=" ${BDEPEND}" ;;
27 esac
28
29 -PDEPEND=">=sys-devel/gcc-config-1.7"
30 +PDEPEND=">=sys-devel/gcc-config-2.3"
31
32 #---->> S + SRC_URI essentials <<----