|
|
@ -15,11 +15,11 @@ check_deps = False
|
|
|
|
|
|
|
|
|
|
|
|
gather_method = {
|
|
|
|
gather_method = {
|
|
|
|
# Anything that is not AppStream, CRB or Buildroot should use the old depsolver
|
|
|
|
# Anything that is not AppStream, CRB or Buildroot should use the old depsolver
|
|
|
|
"^(?!(Certified|Buildroot)).*$": {
|
|
|
|
"^(?!(OS|Updates|Buildroot)).*$": {
|
|
|
|
"comps": "deps",
|
|
|
|
"comps": "deps",
|
|
|
|
"json": "deps",
|
|
|
|
"json": "deps",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"^(Certified|Testing)$": "hybrid",
|
|
|
|
"^(OS|Updates|Testing)$": "hybrid",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
hashed_directories = False
|
|
|
|
hashed_directories = False
|
|
|
@ -56,7 +56,7 @@ create_optional_isos = False
|
|
|
|
createiso_use_xorrisofs = True
|
|
|
|
createiso_use_xorrisofs = True
|
|
|
|
|
|
|
|
|
|
|
|
createiso_skip = [
|
|
|
|
createiso_skip = [
|
|
|
|
("^(Certified|Testing)$", {
|
|
|
|
("^(OS|Updates|Testing)$", {
|
|
|
|
# No binary ISOs for BaseOS (but still generate src ISOs) - RCM-41330
|
|
|
|
# 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 ISOs for AppStream (but still generate src ISOs) - RCM-40356
|
|
|
|
# No binary or src ISOs for CRB
|
|
|
|
# No binary or src ISOs for CRB
|
|
|
@ -105,12 +105,13 @@ lorax_options = [
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
buildinstall_skip = [
|
|
|
|
buildinstall_skip = [
|
|
|
|
("^(Testing)$", {
|
|
|
|
("^(Updates|Testing)$", {
|
|
|
|
'*': True
|
|
|
|
'*': True
|
|
|
|
})
|
|
|
|
})
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
# LOOKASIDE
|
|
|
|
# LOOKASIDE
|
|
|
|
variant_as_lookaside = [
|
|
|
|
variant_as_lookaside = [
|
|
|
|
("Testing", "Certified")
|
|
|
|
("Testing", "OS"),
|
|
|
|
|
|
|
|
("Updates", "OS"),
|
|
|
|
]
|
|
|
|
]
|
|
|
|