|
|
|
@ -1,34 +1,12 @@
|
|
|
|
|
# use a remote comps.xml file from a git repository
|
|
|
|
|
comps_file = {
|
|
|
|
|
'scm': 'git',
|
|
|
|
|
'repo': 'http://git.inferitos.ru/msvsphere/pungi-msvsphere.git',
|
|
|
|
|
'branch': 'i9.5-certified',
|
|
|
|
|
'file': 'comps.xml',
|
|
|
|
|
'command': ''
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# alternatively, it's possible to use a local groups file
|
|
|
|
|
#comps_file = 'comps.xml'
|
|
|
|
|
comps_file = 'comps.xml'
|
|
|
|
|
|
|
|
|
|
# use a remote variants.xml file from a git repository
|
|
|
|
|
variants_file = {
|
|
|
|
|
'scm': 'git',
|
|
|
|
|
'repo': 'http://git.inferitos.ru/msvsphere/pungi-msvsphere.git',
|
|
|
|
|
'branch': 'i9.5-certified',
|
|
|
|
|
'file': 'variants.xml',
|
|
|
|
|
'command': ''
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# alternatively, it's possible to use a local variants file
|
|
|
|
|
#variants_file = 'variants.xml'
|
|
|
|
|
variants_file = 'variants.xml'
|
|
|
|
|
|
|
|
|
|
# use modulemd-defaults from a git repository
|
|
|
|
|
module_defaults_dir = {
|
|
|
|
|
'scm': 'git',
|
|
|
|
|
'repo': 'http://git.inferitos.ru/msvsphere/module-defaults.git',
|
|
|
|
|
'branch': 'i9',
|
|
|
|
|
'dir': '.'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gather_backend = 'dnf'
|
|
|
|
|
|
|
|
|
@ -37,11 +15,11 @@ check_deps = False
|
|
|
|
|
|
|
|
|
|
gather_method = {
|
|
|
|
|
# Anything that is not AppStream, CRB or Buildroot should use the old depsolver
|
|
|
|
|
"^(?!(Certified|CRB|Buildroot)).*$": {
|
|
|
|
|
"^(?!(Certified|Buildroot)).*$": {
|
|
|
|
|
"comps": "deps",
|
|
|
|
|
"json": "deps",
|
|
|
|
|
},
|
|
|
|
|
"^(Certified|CRB|Devel|Testing)$": "hybrid",
|
|
|
|
|
"^(Certified|Testing)$": "hybrid",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hashed_directories = False
|
|
|
|
@ -76,7 +54,7 @@ create_optional_isos = False
|
|
|
|
|
createiso_use_xorrisofs = True
|
|
|
|
|
|
|
|
|
|
createiso_skip = [
|
|
|
|
|
("^(Certified|CRB|Devel|Testing)$", {
|
|
|
|
|
("^(Certified|Testing)$", {
|
|
|
|
|
# No binary ISOs for BaseOS (but still generate src ISOs) - RCM-41330
|
|
|
|
|
# No binary ISOs for AppStream (but still generate src ISOs) - RCM-40356
|
|
|
|
|
# No binary or src ISOs for CRB
|
|
|
|
@ -124,9 +102,13 @@ lorax_options = [
|
|
|
|
|
})
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
buildinstall_skip = [
|
|
|
|
|
("^(Testing)$", {
|
|
|
|
|
'*': True
|
|
|
|
|
})
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
# LOOKASIDE
|
|
|
|
|
variant_as_lookaside = [
|
|
|
|
|
('CRB', 'Certified'),
|
|
|
|
|
("Devel", "Certified"),
|
|
|
|
|
("Testing", "Certified")
|
|
|
|
|
]
|
|
|
|
|