/aosp_15_r20/external/toolchain-utils/rust_tools/ |
H A D | auto_update_rust_bootstrap.py | 121 ebuild: Path, rust_bootstrap_version: EbuildVersion 123 ebuild_lines = ebuild.read_text(encoding="utf-8").splitlines() 248 for ebuild in ebuilds: 249 version = parse_ebuild_version(ebuild.name) 254 versioned_ebuilds[version_no_rev] = (version, ebuild) 293 ebuild: Path, version: EbuildVersion, dry_run: bool 295 ebuild_lines = ebuild.read_text(encoding="utf-8").splitlines(keepends=True) 301 ebuild.write_text("".join(ebuild_lines), encoding="utf-8") 314 for ebuild in in_dir.glob("*.ebuild"): 315 if ebuild == root_ebuild_path or not ebuild.is_symlink(): [all …]
|
H A D | rust_uprev_test.py | 254 ebuild = tmpdir / "test-1.3.4.ebuild" 255 ebuild.touch() 260 self.assertEqual(result, ebuild) 265 ebuild = tmpdir / "test-1.2.3.ebuild" 266 ebuild.touch() 268 self.assertEqual(result, ebuild) 273 ebuild = tmpdir / "test-1.3.4-r3.ebuild" 274 ebuild.touch() 279 self.assertEqual(result, ebuild) 292 ebuild = tmpdir / "test-1.3.4-r3.ebuild" [all …]
|
H A D | auto_update_rust_bootstrap_test.py | 183 ebuild = tempdir / "rust-bootstrap-1.70.0.ebuild" 184 ebuild.write_text( 202 ebuild, 214 ebuild, 226 ebuild = tempdir / "rust-bootstrap-1.70.0.ebuild" 227 ebuild.write_text( 243 ebuild, 254 ebuild.read_text(encoding="utf-8"),
|
H A D | rust_uprev.py | 882 (RustVersion.parse_from_ebuild(ebuild), ebuild) 883 for ebuild in RUST_PATH.iterdir() 884 if ebuild.suffix == ".ebuild" and not ebuild.is_symlink() 946 ebuild = path / f"{name}-{version}.ebuild" 947 if ebuild.exists(): 948 matches.append(ebuild)
|
/aosp_15_r20/external/autotest/docs/ |
H A D | user-doc.md | 11 [Gentoo Portage ebuild/eclass Information](https://devmanual.gentoo.org/): 17 ## Autotest and ebuild workflow 62 This leads to the ebuild workflow, which generally allows compositing any 66  74 Anything that can be created as an ebuild (shell script) can be a test source. 87 An **autotest ebuild** is an ebuild that produces test cases and installs them into 115 configs that should be handled by this ebuild. 117 tests managed by the given ebuild. By virtue of being an IUSE variable, all 118 of the options are visible as USE flag toggles while building the ebuild, 119 unlike with list variables which are a given and the ebuild has to be [all …]
|
/aosp_15_r20/external/toolchain-utils/upstream_workon/ |
H A D | upstream_workon.bash | 32 build Build the package using ebuild ... compile 33 install Install the package using ebuild ... install 105 ebuild "${ebuild_loc}" clean 106 USE="${USE_FLAGS}" ebuild "${ebuild_loc}" unpack 118 USE="${USE_FLAGS}" ebuild "${ebuild_loc}" configure 150 ebuild "${ebuild_loc}" clean 162 USE="${USE_FLAGS}" ebuild "${ebuild_loc}" compile 175 USE="${USE_FLAGS}" ebuild "${ebuild_loc}" install 206 ebuild "${ebuild_loc}" clean 207 USE="${USE_FLAGS}" ebuild "${ebuild_loc}" configure
|
/aosp_15_r20/external/crosvm/cros_async/ |
H A D | Cargo.toml | 21 sync = { path = "../common/sync" } # provided by ebuild 22 base = { path = "../base" } # provided by ebuild 24 audio_streams = { path = "../common/audio_streams" } # provided by ebuild 27 serde_keyvalue = { path = "../serde_keyvalue", features = ["argh_derive"] } # provided by ebuild 32 io_uring = { path = "../io_uring" } # provided by ebuild
|
/aosp_15_r20/external/toolchain-utils/llvm_tools/patch_sync/src/ |
H A D | version_control.rs | 217 let ebuild = find_ebuild(llvm_dir) in rev_bump_llvm() localVariable 219 let ebuild_dir = ebuild.parent().unwrap(); in rev_bump_llvm() 221 let ebuild_name = ebuild in rev_bump_llvm() 232 fs::rename(&ebuild, &new_path)?; in rev_bump_llvm() 236 let new_filename = ebuild.file_stem().unwrap().to_string_lossy() + "-r1.ebuild"; in rev_bump_llvm() 238 fs::rename(&ebuild, &new_path)?; in rev_bump_llvm()
|
/aosp_15_r20/external/gsc-utils/docs/ |
H A D | ti50_firmware_releases.md | 11 [ToT][ToT ebuild] | 0.24.120 | 0.23.112 1839 …os-overlay/+/refs/heads/release-R105-14989.B/chromeos-base/chromeos-ti50/chromeos-ti50-0.0.1.ebuild 1840 …os-overlay/+/refs/heads/release-R106-15054.B/chromeos-base/chromeos-ti50/chromeos-ti50-0.0.1.ebuild 1841 …os-overlay/+/refs/heads/release-R107-15117.B/chromeos-base/chromeos-ti50/chromeos-ti50-0.0.1.ebuild 1842 …os-overlay/+/refs/heads/release-R108-15183.B/chromeos-base/chromeos-ti50/chromeos-ti50-0.0.1.ebuild 1843 …os-overlay/+/refs/heads/release-R109-15236.B/chromeos-base/chromeos-ti50/chromeos-ti50-0.0.1.ebuild 1844 …os-overlay/+/refs/heads/release-R110-15278.B/chromeos-base/chromeos-ti50/chromeos-ti50-0.0.1.ebuild 1845 …os-overlay/+/refs/heads/release-R111-15329.B/chromeos-base/chromeos-ti50/chromeos-ti50-0.0.1.ebuild 1846 …os-overlay/+/refs/heads/release-R112-15359.B/chromeos-base/chromeos-ti50/chromeos-ti50-0.0.1.ebuild 1847 …os-overlay/+/refs/heads/release-R113-15393.B/chromeos-base/chromeos-ti50/chromeos-ti50-0.0.1.ebuild [all …]
|
/aosp_15_r20/external/toolchain-utils/llvm_tools/ |
H A D | update_chromeos_llvm_hash_unittest.py | 338 ebuild = "/abs/path/to/llvm/llvm-12.0_pre3_p2.ebuild" 339 mock_realpath.return_value = ebuild 361 expected_cmd = ["git", "-C", symlink_dir, "mv", ebuild, new_ebuild] 435 ebuild = "/abs/path/to/compiler-rt/compiler-rt-12.0_pre314159265.ebuild" 436 mock_realpath.return_value = ebuild 460 expected_cmd = ["git", "-C", symlink_dir, "mv", ebuild, new_ebuild]
|
H A D | update_chromeos_llvm_hash.py | 386 ebuild = os.path.realpath(symlink) 400 ebuild, 408 ebuild, 419 ["git", "-C", symlink_dir, "mv", ebuild, new_ebuild]
|
/aosp_15_r20/external/angle/build/args/chromeos/ |
H A D | README.md | 2 of the args are determined by processing the [chromeos-chrome ebuild] for a 55 …me ebuild]: https://chromium.googlesource.com/chromiumos/overlays/chromiumos-overlay/+/HEAD/chrome…
|
/aosp_15_r20/external/cronet/build/args/chromeos/ |
H A D | README.md | 2 of the args are determined by processing the [chromeos-chrome ebuild] for a 55 …me ebuild]: https://chromium.googlesource.com/chromiumos/overlays/chromiumos-overlay/+/HEAD/chrome…
|
/aosp_15_r20/external/crosvm/io_uring/ |
H A D | Cargo.toml | 10 sync = { path = "../common/sync" } # provided by ebuild 11 base = { path = "../base" } # provided by ebuild
|
/aosp_15_r20/external/crosvm/base/ |
H A D | Cargo.toml | 12 audio_streams = { path = "../common/audio_streams" } # provided by ebuild 14 sync = { path = "../common/sync" } # provided by ebuild
|
/aosp_15_r20/external/crosvm/common/ |
H A D | chromeos_warning.md | 20 corresponding ebuild file, which may come with a significant need for refactoring. 22 Alternatively, for small changes consider adding a patch file into the corresponding ebuild file
|
/aosp_15_r20/external/minijail/rust/minijail/ |
H A D | Cargo.toml | 10 minijail-sys = { path = "../minijail-sys" } # provided by ebuild
|
/aosp_15_r20/external/crosvm/vendor/generic/crash_report/ |
H A D | Cargo.toml | 13 base = { path = "../../../base" } # provided by ebuild
|
/aosp_15_r20/external/crosvm/serde_keyvalue/ |
H A D | Cargo.toml | 12 serde_keyvalue_derive = { path = "serde_keyvalue_derive", optional = true } # provided by ebuild
|
/aosp_15_r20/external/uwb/src/rust/uwb_core/ |
H A D | Cargo.toml | 20 uwb_uci_packets = { path = "../uwb_uci_packets" } # provided by ebuild
|
/aosp_15_r20/external/crosvm/swap/ |
H A D | Cargo.toml | 31 sync = { path = "../common/sync" } # provided by ebuild
|
/aosp_15_r20/external/crosvm/arch/ |
H A D | Cargo.toml | 42 minijail = "*" # provided by ebuild
|
/aosp_15_r20/external/autotest/test_suites/ |
H A D | control.drivefs-cq | 16 as presubmit only when a new ebuild is uprevved in the drivefs and
|
/aosp_15_r20/packages/modules/Bluetooth/ |
D | Cargo.toml | 41 featured = { path = "system/gd/rust/linux/repositories/featured_stub" } # ignored by ebuild
|
/aosp_15_r20/external/crosvm/ |
H A D | Cargo.toml | 557 minijail = "*" # provided by ebuild 584 libcras = { path = "libcras_stub" } # ignored by ebuild 586 minijail = { path = "third_party/minijail/rust/minijail" } # ignored by ebuild
|