Lines Matching full:rust_version
219 "--rust_version",
231 "--rust_version",
305 rust_version: RustVersion, template: Optional[RustVersion]
317 if rust_version <= template_version:
320 rust_version,
514 pkgatom: str, rust_version: RustVersion, add: bool
528 new_str = f"{pkgatom}-{rust_version}"
534 old_str = f"{pkgatom}-{rust_version}\n"
609 rust_version: RustVersion,
616 lambda: prepare_uprev(rust_version, maybe_template_version),
632 run_step("fetch rust distfiles", lambda: fetch_rust_distfiles(rust_version))
653 lambda: copy_patches(RUST_PATH, template_version, rust_version),
661 template_host_ebuild, "dev-lang/rust-host", rust_version
670 lambda: create_ebuild(template_ebuild, "dev-lang/rust", rust_version),
677 run_step("build packages", lambda: rebuild_packages(rust_version))
681 "dev-lang/rust-host", rust_version, add=True
686 lambda: update_rust_packages("dev-lang/rust", rust_version, add=True),
690 lambda: update_virtual_rust(template_version, rust_version),
804 rust_version: Optional[RustVersion], run_step: Callable[[], T]
807 if rust_version:
808 return rust_version
870 def create_new_repo(rust_version: RustVersion) -> None:
879 git.CreateBranch(EBUILD_PREFIX, f"rust-to-{rust_version}")
912 def create_new_commit(rust_version: RustVersion) -> None:
915 f"[DO NOT SUBMIT] dev-lang/rust: upgrade to Rust {rust_version}",
921 git.UploadChanges(EBUILD_PREFIX, f"rust-to-{rust_version}", messages)
959 args.rust_version, args.template, args.skip_compile, run_step
962 remove_rust_uprev(args.rust_version, run_step)