remove compfile option

This commit is contained in:
Trevor Batley 2024-11-14 15:06:12 +11:00
parent 554d021527
commit 44279dac7d

View File

@ -21,7 +21,6 @@ def tag2distrepo(cbtype, tag, build, user, force=False):
raise ValueError("Tag %s has no arches configured but tag2distrepo_sme is enabled" % tag['name']) raise ValueError("Tag %s has no arches configured but tag2distrepo_sme is enabled" % tag['name'])
keys = tag['extra'].get("tag2distrepo_sme.keys", '').split() keys = tag['extra'].get("tag2distrepo_sme.keys", '').split()
compfile = tag['extra'].get("tag2distrepo_sme.comp", 'none')
inherit = tag['extra'].get("tag2distrepo_sme.inherit", False) inherit = tag['extra'].get("tag2distrepo_sme.inherit", False)
latest = tag['extra'].get("tag2distrepo_sme.latest", False) latest = tag['extra'].get("tag2distrepo_sme.latest", False)
split_debuginfo = tag['extra'].get("tag2distrepo_sme.split_debuginfo", False) split_debuginfo = tag['extra'].get("tag2distrepo_sme.split_debuginfo", False)
@ -38,7 +37,7 @@ def tag2distrepo(cbtype, tag, build, user, force=False):
if tag['extra'].get("tag2distrepo_sme.allow_missing_signatures"): if tag['extra'].get("tag2distrepo_sme.allow_missing_signatures"):
task_opts = { task_opts = {
'arch': tag['arches'].split(), 'arch': tag['arches'].split(),
'comp': compfile, 'comp': None,
'delta': [], 'delta': [],
'event': None, 'event': None,
'inherit': inherit, 'inherit': inherit,
@ -51,7 +50,7 @@ def tag2distrepo(cbtype, tag, build, user, force=False):
else: else:
task_opts = { task_opts = {
'arch': tag['arches'].split(), 'arch': tag['arches'].split(),
'comp': compfile, 'comp': None,
'delta': [], 'delta': [],
'event': None, 'event': None,
'inherit': inherit, 'inherit': inherit,