Diff rust-1.68.2 with a rust-1.69.0-r1

/usr/portage/dev-lang/rust/rust-1.69.0-r1.ebuild 2023-10-09 14:52:29.476368350 +0300
19 19
	SLOT="stable/${ABI_VER}"
20 20
	MY_P="rustc-${PV}"
21 21
	SRC="${MY_P}-src.tar.xz"
22
	KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
22
	KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv sparc x86"
23 23
fi
24 24

  
25
RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).1"
25
RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).2"
26 26

  
27 27
DESCRIPTION="Systems programming language from Mozilla"
28 28
HOMEPAGE="https://www.rust-lang.org/"
......
313 313
	fi
314 314
	rust_targets="${rust_targets#,}"
315 315

  
316
	local tools='"cargo"'
316
	# cargo and rustdoc are mandatory and should always be included
317
	local tools='"cargo","rustdoc"'
317 318
	use clippy && tools+=',"clippy"'
318 319
	use miri && tools+=',"miri"'
319 320
	use profiler && tools+=',"rust-demangler"'
320 321
	use rustfmt && tools+=',"rustfmt"'
321
	use rust-analyzer && tools+=',"rust-analyzer","analysis"'
322
	use rust-analyzer && tools+=',"rust-analyzer"'
322 323
	use rust-src && tools+=',"src"'
323 324

  
324 325
	local rust_stage0_root
Thank you!