Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/
Date: Mon, 30 Mar 2020 07:23:41
Message-Id: 1585552953.23468458c2b3066172904ecfe6f688a6e5c999d5.gyakovlev@gentoo
1 commit: 23468458c2b3066172904ecfe6f688a6e5c999d5
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 30 07:11:39 2020 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 30 07:22:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23468458
7
8 dev-lang/rust: allow llvm-10 for 1.42.0
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 dev-lang/rust/rust-1.42.0.ebuild | 11 ++++++-----
14 1 file changed, 6 insertions(+), 5 deletions(-)
15
16 diff --git a/dev-lang/rust/rust-1.42.0.ebuild b/dev-lang/rust/rust-1.42.0.ebuild
17 index 484af8fa84f..196b58683e6 100644
18 --- a/dev-lang/rust/rust-1.42.0.ebuild
19 +++ b/dev-lang/rust/rust-1.42.0.ebuild
20 @@ -46,16 +46,17 @@ IUSE="clippy cpu_flags_x86_sse2 debug doc libressl miri nightly parallel-compile
21
22 # How to use it:
23 # 1. List all the working slots (with min versions) in ||, newest first.
24 -# 2. Update the := to specify *max* version, e.g. < 10.
25 -# 3. Specify LLVM_MAX_SLOT, e.g. 9.
26 +# 2. Update the := to specify *max* version, e.g. < 11.
27 +# 3. Specify LLVM_MAX_SLOT, e.g. 10.
28 LLVM_DEPEND="
29 || (
30 + sys-devel/llvm:10[${LLVM_TARGET_USEDEPS// /,}]
31 sys-devel/llvm:9[${LLVM_TARGET_USEDEPS// /,}]
32 - wasm? ( =sys-devel/lld-9* )
33 + wasm? ( >=sys-devel/lld-9 )
34 )
35 - <sys-devel/llvm-10:=
36 + <sys-devel/llvm-11:=
37 "
38 -LLVM_MAX_SLOT=9
39 +LLVM_MAX_SLOT=10
40
41 BOOTSTRAP_DEPEND="|| ( >=dev-lang/rust-1.$(($(ver_cut 2) - 1)).0-r1 >=dev-lang/rust-bin-1.$(($(ver_cut 2) - 1)) )"