copr: builders: drop best=0 EL8 hack

The default config + command:

    $ mock -r centos-8-x86_64 --install perl-Test-Harness

installs just

    perl-Test-Harness-1:3.42-1.el8.noarch, not

and not

    perl-Test-Harness-1:3.42-440.module_f33+9369+dac0eadc.noarch

or something alike.  I think we are fine to drop the hack for rhbz#1758459.
This commit is contained in:
Pavel Raiskup 2021-01-27 09:40:12 +01:00
parent cc548317ac
commit b9d52f1b65
6 changed files with 0 additions and 78 deletions

View file

@ -1,12 +0,0 @@
include('templates/centos-stream.tpl')
config_opts['root'] = 'centos-stream-aarch64'
config_opts['target_arch'] = 'aarch64'
config_opts['legal_host_arches'] = ('aarch64',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['dnf.conf'] += """
[main]
best=False
"""

View file

@ -1,12 +0,0 @@
include('templates/centos-stream.tpl')
config_opts['root'] = 'centos-stream-ppc64le'
config_opts['target_arch'] = 'ppc64le'
config_opts['legal_host_arches'] = ('ppc64le',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['dnf.conf'] += """
[main]
best=False
"""

View file

@ -1,12 +0,0 @@
include('templates/centos-stream.tpl')
config_opts['root'] = 'centos-stream-x86_64'
config_opts['target_arch'] = 'x86_64'
config_opts['legal_host_arches'] = ('x86_64',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['dnf.conf'] += """
[main]
best=False
"""

View file

@ -1,14 +0,0 @@
include('templates/centos-8.tpl')
include('templates/epel-8.tpl')
config_opts['root'] = 'epel-8-aarch64'
config_opts['target_arch'] = 'aarch64'
config_opts['legal_host_arches'] = ('aarch64',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['dnf.conf'] += """
[main]
best=False
"""

View file

@ -1,14 +0,0 @@
include('templates/centos-8.tpl')
include('templates/epel-8.tpl')
config_opts['root'] = 'epel-8-ppc64le'
config_opts['target_arch'] = 'ppc64le'
config_opts['legal_host_arches'] = ('ppc64le',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['dnf.conf'] += """
[main]
best=False
"""

View file

@ -1,14 +0,0 @@
include('templates/centos-8.tpl')
include('templates/epel-8.tpl')
config_opts['root'] = 'epel-8-x86_64'
config_opts['target_arch'] = 'x86_64'
config_opts['legal_host_arches'] = ('x86_64',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['dnf.conf'] += """
[main]
best=False
"""