Gentoo Archives: gentoo-commits

From: Dave Hughes <davidhughes205@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/musl:master commit in: dev-lang/rust/
Date: Thu, 29 Apr 2021 20:13:47
Message-Id: 1619727232.10c45ab20c68b77a07ff35fdd331a806d2fc4fac.xaero@gentoo
1 commit: 10c45ab20c68b77a07ff35fdd331a806d2fc4fac
2 Author: Dave Hughes <davidhughes205 <AT> gmail <DOT> com>
3 AuthorDate: Thu Apr 29 20:13:52 2021 +0000
4 Commit: Dave Hughes <davidhughes205 <AT> gmail <DOT> com>
5 CommitDate: Thu Apr 29 20:13:52 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=10c45ab2
7
8 dev-lang/rust: fix metadata.xml && tweak KEYWORDS
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 RepoMan-Options: --force
12 Signed-off-by: Dave Hughes <davidhughes205 <AT> gmail.com>
13
14 dev-lang/rust/metadata.xml | 14 ++++++++------
15 dev-lang/rust/rust-1.47.0-r1.ebuild | 2 +-
16 2 files changed, 9 insertions(+), 7 deletions(-)
17
18 diff --git a/dev-lang/rust/metadata.xml b/dev-lang/rust/metadata.xml
19 index cd11337..98798d4 100644
20 --- a/dev-lang/rust/metadata.xml
21 +++ b/dev-lang/rust/metadata.xml
22 @@ -6,12 +6,14 @@
23 <name>Rust Project</name>
24 </maintainer>
25 <use>
26 - <flag name="cargo">Install cargo component</flag>
27 - <flag name="clippy">Install clippy component</flag>
28 + <flag name="clippy">Install clippy, Rust code linter</flag>
29 + <flag name="miri">Install miri, an interpreter for Rust's mid-level intermediate representation (requires USE=nightly)</flag>
30 + <flag name="nightly">Enable nightly (UNSTABLE) features</flag>
31 + <flag name="parallel-compiler">Build a multi-threaded rustc</flag>
32 + <flag name="rls">Install rls, Rust Language Server (used with IDEs supporting RLS protocol)</flag>
33 + <flag name="rustfmt">Install rustfmt, Rust code formatter</flag>
34 + <flag name="system-bootstrap">Bootstrap using installed rust compiler</flag>
35 <flag name="system-llvm">Use the system LLVM install</flag>
36 - <flag name="rls">Install rls component</flag>
37 - <flag name="rustfmt">Install rustfmt component</flag>
38 - <flag name="wasm">Build support for the wasm32-unknown-unknown
39 - target</flag>
40 + <flag name="wasm">Build support for the wasm32-unknown-unknown target</flag>
41 </use>
42 </pkgmetadata>
43
44 diff --git a/dev-lang/rust/rust-1.47.0-r1.ebuild b/dev-lang/rust/rust-1.47.0-r1.ebuild
45 index 5c2bfe5..577ef66 100644
46 --- a/dev-lang/rust/rust-1.47.0-r1.ebuild
47 +++ b/dev-lang/rust/rust-1.47.0-r1.ebuild
48 @@ -11,7 +11,7 @@ ABI_VER="$(ver_cut 1-2)"
49 SLOT="stable/${ABI_VER}"
50 MY_P="rustc-${PV}"
51 SRC="${MY_P}-src.tar.xz"
52 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
53 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
54
55 RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).0"
56 RUST_TOOLCHAIN_BASEURL="https://portage.smaeul.xyz/distfiles/"