10 Commits

Author SHA1 Message Date
f7d9b95875 read arch.list
All checks were successful
Gentoo Utils / build-oci-image (push) Successful in 8s
Gentoo Utils / check-format (push) Successful in 8s
Gentoo Utils / docs (push) Successful in 13s
Gentoo Utils / build (push) Successful in 22s
Gentoo Utils / test (push) Successful in 30s
2025-12-13 05:50:12 +00:00
948a178d23 read global package.mask 2025-12-13 05:38:18 +00:00
34fb5aad2f add mockrepo tests 2025-12-13 05:38:18 +00:00
d4948e9be7 read repo_name when opening repos 2025-12-13 05:38:18 +00:00
ba3538567e default to Eapi 0 if no eapi file exists 2025-12-13 05:38:18 +00:00
7da2e6d81d add docs to profile module 2025-12-13 05:38:18 +00:00
c84c1f328d read deprecated file in profiles 2025-12-13 05:38:18 +00:00
f409eb330b read eapi file in profiles 2025-12-13 05:38:18 +00:00
18171d151e add profile related source files to sources variable 2025-12-13 05:38:18 +00:00
10c5f0590f impl profile evaluation 2025-12-13 05:38:18 +00:00
2 changed files with 6 additions and 10 deletions

View File

@@ -7,12 +7,12 @@ gencorpus = executable(
corpus = custom_target(
'atom_parser_corpus',
output: 'atom_parser_fuzzer_corpus',
command: [gencorpus, 'atom_parser_fuzzer_corpus'],
output: 'corpus',
command: [gencorpus, 'corpus'],
)
fuzz_rs = static_library(
'atom_parser_fuzzer',
'parser_fuzzer',
'fuzz.rs',
rust_abi: 'c',
rust_args: [
@@ -28,5 +28,3 @@ fuzz = executable(
link_args: ['-fsanitize=fuzzer'],
link_with: [fuzz_rs],
)
alias_target('atom_parser_fuzzer', [corpus, fuzz])

View File

@@ -7,12 +7,12 @@ gencorpus = executable(
corpus = custom_target(
'atom_vercmp_corpus',
output: 'atom_vercmp_fuzzer_corpus',
command: [gencorpus, 'atom_vercmp_fuzzer_corpus'],
output: 'corpus',
command: [gencorpus, 'corpus'],
)
fuzz_rs = static_library(
'atom_vercmp_fuzzer',
'vercmp_fuzzer',
'fuzz.rs',
rust_abi: 'c',
rust_args: [
@@ -29,5 +29,3 @@ fuzz = executable(
link_args: ['-fsanitize=fuzzer'],
link_with: [fuzz_rs],
)
alias_target('atom_vercmp_fuzzer', [corpus, fuzz])