pungi-rocky/shared/gather.conf

29 lines
681 B
Plaintext
Raw Normal View History

2023-09-21 16:42:43 +00:00
gather_backend = "dnf"
check_deps = False
gather_method = {
# Anything that is not AppStream, CRB or Buildroot should use the old depsolver
"^(?!(AppStream|CRB|Buildroot)).*$": {
"comps": "deps",
"json": "deps",
2023-09-22 20:10:08 +00:00
"modules": "nodeps",
},
"^(AppStream|CRB|Buildroot)$": {
"comps": "deps",
"json": "deps",
"modules": "nodeps",
2023-09-21 16:42:43 +00:00
},
}
hashed_directories = False
gather_allow_reuse = True
repoclosure_backend = 'dnf'
gather_prepopulate = {
'scm': 'file',
'repo': GATHER_PREPOPULATE_REPO,
'branch': GATHER_PREPOPULATE_BRANCH,
'file': GATHER_PREPOPULATE_FILE,
'command': GATHER_PREPOPULATE_COMMAND
}