Searched refs:ebuild_path (Results 1 – 6 of 6) sorted by relevance
/external/toolchain-utils/llvm_tools/ |
D | update_chromeos_llvm_hash.py | 159 ebuild_path = os.path.realpath(cur_symlink) 162 resolved_paths[cur_symlink] = ebuild_path 167 def UpdateEbuildLLVMHash(ebuild_path, llvm_variant, git_hash, svn_version): argument 191 if not os.path.isfile(ebuild_path): 192 raise ValueError('Invalid ebuild path provided: %s' % ebuild_path) 194 temp_ebuild_file = '%s.temp' % ebuild_path 196 with open(ebuild_path) as ebuild_file: 203 os.rename(temp_ebuild_file, ebuild_path) 206 parent_dir = os.path.dirname(ebuild_path) 209 subprocess.check_output(['git', '-C', parent_dir, 'add', ebuild_path]) [all …]
|
D | cherrypick_cl.py | 72 def parse_ebuild_for_assignment(ebuild_path: str, var_name: str) -> str: 76 x for x in os.listdir(ebuild_path) 81 raise ValueError('No ebuilds found under %r' % ebuild_path) 83 ebuild = os.path.join(ebuild_path, max(candidates))
|
D | update_chromeos_llvm_hash_unittest.py | 37 ebuild_path = '/some/path/to/package.ebuild' 44 update_chromeos_llvm_hash.UpdateEbuildLLVMHash(ebuild_path, llvm_variant, 48 str(err.exception), 'Invalid ebuild path provided: %s' % ebuild_path) 580 def SuccessfullyUpdatedLLVMHash(ebuild_path, _, git_hash, svn_version): argument 581 self.assertEqual(ebuild_path, abs_path_to_package) 681 def SuccessfullyUpdatedLLVMHash(ebuild_path, _, git_hash, svn_version): argument 682 self.assertEqual(ebuild_path,
|
/external/crosvm/bin/ |
D | sync_ebuild_files | 71 for ebuild_path in glob.glob(EBUILD_FILE_GLOB): 72 ebuild_name = os.path.basename(ebuild_path) 108 ebuild_path = ebuild_file_path(package, version) 110 open(ebuild_path, "w").write(ebuild_template(package))
|
/external/toolchain-utils/rust_tools/ |
D | rust_uprev.py | 233 ebuild_path = get_command_output(['equery', 'w', 'rust']) 234 ebuild_name = os.path.basename(ebuild_path) 237 ebuild_path = find_ebuild_for_rust_version(template) 247 ebuild_path) 248 return template_version, ebuild_path 486 version, ebuild_path = obj 487 return RustVersion(*version), ebuild_path
|
D | rust_uprev_test.py | 101 ebuild_path = '/path/to/the/ebuild' 102 json_result = (list(self.version_new), ebuild_path) 103 expected = (self.version_new, ebuild_path)
|