nodeps for all vairants

This commit is contained in:
soksanichenko 2023-03-14 17:16:14 +02:00
parent bc41c06c51
commit fb4e2c52ea
1 changed files with 14 additions and 13 deletions

View File

@ -73,19 +73,20 @@ gather_prepopulate = {
"file": "{{ arch }}/packages.json",
}
gather_method = {
{% for variant, options in variants.items() %}
{% if options['gather_methods'] is string %}
"^{{ variant }}$": "{{ options['gather_methods'] }}",
{% else %}
"^{{ variant }}$": {
{% for source_name, gather_method in options['gather_methods'].items() %}
"{{ source_name }}": "{{ gather_method }}",
{% endfor %}
},
{% endif %}
{% endfor %}
}
gather_method = "nodeps"
#gather_method = {
# {% for variant, options in variants.items() %}
# {% if options['gather_methods'] is string %}
# "^{{ variant }}$": "{{ options['gather_methods'] }}",
# {% else %}
# "^{{ variant }}$": {
# {% for source_name, gather_method in options['gather_methods'].items() %}
# "{{ source_name }}": "{{ gather_method }}",
# {% endfor %}
# },
# {% endif %}
# {% endfor %}
#}
gather_backend = "dnf"
check_deps = True