ELN: Import missing shared/general and shared/createiso. Move Fedora specific configuration to fedora/override.conf.
Signed-off-by: Jan Kaluza <jkaluza@redhat.com>
This commit is contained in:
parent
9de872ed0e
commit
d3985bf6d2
2
eln.conf
2
eln.conf
@ -8,12 +8,14 @@
|
||||
# For any change which should happen only for Fedora ELN, edit the
|
||||
# "fedora/override.conf" configuration file.
|
||||
|
||||
from shared/general import *
|
||||
from shared/multilib import *
|
||||
from shared/additional_and_filter_packages import *
|
||||
from shared/runroot import *
|
||||
from shared/pkgset import *
|
||||
from shared/gather import *
|
||||
from shared/createrepo import *
|
||||
from shared/createiso import *
|
||||
from shared/buildinstall import *
|
||||
from shared/lookaside import *
|
||||
from fedora/variables import *
|
||||
|
@ -80,4 +80,20 @@ variant_as_lookaside = [
|
||||
("CRB", "AppStream"),
|
||||
]
|
||||
|
||||
|
||||
# TODO: There is no "fus" in Fedora. For now use "deps".
|
||||
gather_method = {
|
||||
# Anything that is not AppStream or CRB should use the old depsolver
|
||||
"^(?!(AppStream|CRB)).*$": {
|
||||
"comps": "deps",
|
||||
},
|
||||
# TODO: There is no "fus" in Fedora. For now use "deps".
|
||||
"^(AppStream|CRB)$": {
|
||||
"comps": "deps",
|
||||
},
|
||||
}
|
||||
|
||||
# No product_id for Fedora.
|
||||
product_id_allow_missing = False
|
||||
|
||||
variants_file = "variants.xml"
|
||||
|
@ -1,5 +1,3 @@
|
||||
filter_system_release_packages = False
|
||||
|
||||
filter_packages = [
|
||||
("^.*$", {
|
||||
"*": [
|
||||
|
@ -6,10 +6,7 @@ gather_method = {
|
||||
"^(?!(AppStream|CRB)).*$": {
|
||||
"comps": "deps",
|
||||
},
|
||||
# TODO: There is no "fus" in Fedora. For now use "deps".
|
||||
"^(AppStream|CRB)$": {
|
||||
"comps": "deps",
|
||||
},
|
||||
"^(AppStream|CRB)$": "hybrid",
|
||||
}
|
||||
|
||||
hashed_directories = False
|
||||
|
Loading…
Reference in New Issue
Block a user