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: Tue, 25 Feb 2020 21:54:04
Message-Id: 1582667629.82c023698b8de45390f62c7bc40d651cc7da8b83.slyfox@gentoo
1 commit: 82c023698b8de45390f62c7bc40d651cc7da8b83
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 25 21:52:49 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 25 21:53:49 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82c02369
7
8 toolchain.eclass: update default live branches
9
10 Change live branch from gcc-<N>-branch to releases/gcc-<N>
11
12 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
13
14 eclass/toolchain.eclass | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
18 index 90f7b68312b..beab4cfc681 100644
19 --- a/eclass/toolchain.eclass
20 +++ b/eclass/toolchain.eclass
21 @@ -20,7 +20,7 @@ if tc_is_live ; then
22 # Note that the micro version is required or lots of stuff will break.
23 # To checkout master set gcc_LIVE_BRANCH="master" in the ebuild before
24 # inheriting this eclass.
25 - EGIT_BRANCH="${PN}-${PV%.?.?_pre9999}-branch"
26 + EGIT_BRANCH="releases/${PN}-${PV%.?.?_pre9999}"
27 EGIT_BRANCH=${EGIT_BRANCH//./_}
28 inherit git-r3
29 fi