Searched refs:ebuild_path (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/toolchain-utils/rust_tools/ |
H A D | rust_uprev_test.py | 728 ebuild_path = Path( 731 os.makedirs(ebuild_path.parent) 732 ebuild_path.touch() 736 ["git", "rm", str(ebuild_path.name)], cwd=ebuild_path.parent 742 ebuild_path = Path( 748 os.makedirs(ebuild_path.parent) 749 ebuild_path.touch() 750 symlink_path.symlink_to(ebuild_path.name) 756 ["git", "rm", ebuild_path.name], 757 cwd=ebuild_path.parent, [all …]
|
H A D | rust_uprev.py | 385 ebuild_path = find_ebuild_for_rust_version(template) 398 ebuild_path, 418 def set_include_profdata_src(ebuild_path: os.PathLike, include: bool) -> None: 433 contents = Path(ebuild_path).read_text(encoding="utf-8") 442 Path(ebuild_path).write_text(contents, encoding="utf-8")
|
/aosp_15_r20/external/toolchain-utils/llvm_tools/ |
H A D | update_chromeos_llvm_hash.py | 71 self.ebuild_path = potential_ebuild_path.resolve() 75 self.ebuild_path = potential_ebuild_path.absolute() 94 return self.ebuild_path.parent 124 self.ebuild_path, llvm_variant, git_hash, svn_version 259 ebuild_path: Path, 284 if not os.path.isfile(ebuild_path): 287 with open(ebuild_path, encoding="utf-8") as ebuild_file: 292 ebuild_path, "w", encoding="utf-8" 297 ["git", "-C", ebuild_path.parent, "add", ebuild_path] 545 for ebuild_path in manifest_ebuilds: [all …]
|
H A D | update_chromeos_llvm_hash_unittest.py | 69 ebuild_path = Path("/some/path/to/package.ebuild") 77 ebuild_path, llvm_variant, git_hash, svn_version 82 "Invalid ebuild path provided: %s" % ebuild_path, 633 ebuild_path = package_dir / "llvm-00.00_pre0_p0.ebuild" 634 with ebuild_path.open("w", encoding="utf-8") as f: 642 symlink_path.symlink_to(ebuild_path) 643 return package_dir, ebuild_path, symlink_path 650 package_dir, ebuild_path, symlink_path = self.setup_mock_src_tree( 670 self.assertEqual(pkg.ebuild_path, ebuild_path.absolute())
|
H A D | setup_for_workon.py | 72 ebuild_path = find_ebuild_in_dir(ebuild_dir) 73 ebuild_contents = ebuild_path.read_text(encoding="utf-8")
|
/aosp_15_r20/external/toolchain-utils/llvm_tools/patch_sync/src/ |
H A D | version_control.rs | 365 let ebuild_path = llvm_dir.join(ebuild_name); in test_revbump_ebuild() localVariable 366 File::create(ebuild_path).expect("creating test ebuild file"); in test_revbump_ebuild() 379 let ebuild_path = llvm_dir.join(ebuild_name); in test_revbump_ebuild() localVariable 380 File::create(ebuild_path).expect("creating test ebuild file"); in test_revbump_ebuild() 393 let ebuild_path = llvm_dir.join(ebuild_name); in test_revbump_ebuild() localVariable 394 File::create(&ebuild_path).expect("creating test ebuild file"); in test_revbump_ebuild() 406 fs::remove_file(ebuild_path).expect("removing renamed ebuild file"); in test_revbump_ebuild()
|