Home
last modified time | relevance | path

Searched refs:ebuild_path (Results 1 – 6 of 6) sorted by relevance

/external/toolchain-utils/rust_tools/
Drust_uprev_test.py311 ebuild_path = "/path/to/the/ebuild"
314 ebuild_path,
317 expected = (self.version_new, ebuild_path, self.bootstrap_version)
587 ebuild_path = Path(
590 os.makedirs(ebuild_path.parent)
591 ebuild_path.touch()
595 ["git", "rm", str(ebuild_path.name)], cwd=ebuild_path.parent
601 ebuild_path = Path(
607 os.makedirs(ebuild_path.parent)
608 ebuild_path.touch()
[all …]
Drust_uprev.py308 ebuild_path = find_ebuild_for_package("rust")
309 ebuild_name = os.path.basename(ebuild_path)
312 ebuild_path = find_ebuild_for_rust_version(template)
328 ebuild_path,
332 return template_version, ebuild_path, bootstrap_version
604 version, ebuild_path, bootstrap_version = obj
605 return RustVersion(*version), ebuild_path, RustVersion(*bootstrap_version)
/external/toolchain-utils/llvm_tools/
Dupdate_chromeos_llvm_hash.py197 ebuild_path = os.path.realpath(cur_symlink)
200 resolved_paths[cur_symlink] = ebuild_path
205 def UpdateEbuildLLVMHash(ebuild_path, llvm_variant, git_hash, svn_version): argument
229 if not os.path.isfile(ebuild_path):
234 with open(ebuild_path) as ebuild_file:
241 os.rename(temp_ebuild_file, ebuild_path)
244 parent_dir = os.path.dirname(ebuild_path)
247 subprocess.check_output(["git", "-C", parent_dir, "add", ebuild_path])
520 for ebuild_path in manifest_ebuilds:
522 chroot_path, ["ebuild", ebuild_path, "manifest"]
[all …]
Dupdate_chromeos_llvm_hash_unittest.py56 ebuild_path = "/some/path/to/package.ebuild"
64 ebuild_path, llvm_variant, git_hash, svn_version
68 str(err.exception), "Invalid ebuild path provided: %s" % ebuild_path
749 def SuccessfullyUpdatedLLVMHash(ebuild_path, _, git_hash, svn_version): argument
750 self.assertEqual(ebuild_path, abs_path_to_package)
877 def SuccessfullyUpdatedLLVMHash(ebuild_path, _, git_hash, svn_version): argument
879 ebuild_path, "/some/path/to/chroot/src/path/to/package.ebuild"
Dget_upstream_patch.py191 def parse_ebuild_for_assignment(ebuild_path: str, var_name: str) -> str:
196 for x in os.listdir(ebuild_path)
201 raise ValueError("No ebuilds found under %r" % ebuild_path)
203 ebuild = os.path.join(ebuild_path, max(candidates))
/external/toolchain-utils/llvm_tools/patch_sync/src/
Dversion_control.rs359 let ebuild_path = llvm_dir.join(ebuild_name); in test_revbump_ebuild() localVariable
360 File::create(&ebuild_path).expect("creating test ebuild file"); in test_revbump_ebuild()
373 let ebuild_path = llvm_dir.join(ebuild_name); in test_revbump_ebuild() localVariable
374 File::create(&ebuild_path).expect("creating test ebuild file"); in test_revbump_ebuild()
387 let ebuild_path = llvm_dir.join(ebuild_name); in test_revbump_ebuild() localVariable
388 File::create(&ebuild_path).expect("creating test ebuild file"); in test_revbump_ebuild()
400 fs::remove_file(ebuild_path).expect("removing renamed ebuild file"); in test_revbump_ebuild()