Update to 2022-07-23 12:00

This commit is contained in:
Daniel Berteaud
2022-07-23 12:00:16 +02:00
parent 307e1ac20d
commit 7a53cdbef7
12 changed files with 139 additions and 28 deletions

View File

@@ -6,6 +6,7 @@
- site-defaults.cfg
- el7-x86_64.cfg
- el8-x86_64.cfg
- el9-x86_64.cfg
tags: rpm
- name: Deploy rpmmacros

View File

@@ -12,6 +12,7 @@
- dir: "{{ rpm_root_dir }}/bin"
- dir: "{{ rpm_root_dir }}/uploads/el7"
- dir: "{{ rpm_root_dir }}/uploads/el8"
- dir: "{{ rpm_root_dir }}/uploads/el9"
- dir: "{{ rpm_root_dir }}/errors"
- dir: "{{ rpm_root_dir }}/builds"
- dir: "{{ rpm_root_dir }}/etc"

View File

@@ -5,6 +5,8 @@ targets:
- x86_64
el8:
- x86_64
el9:
- x86_64
paths:
repo: {{ rpm_root_dir }}/repo

View File

@@ -0,0 +1,26 @@
include('templates/almalinux-9.tpl')
include('templates/epel-9.tpl')
config_opts['chroot_setup_cmd'] += " gcc gcc-c++ perl-srpm-macros perl-macros"
config_opts['root'] = 'el9-x86_64'
config_opts['target_arch'] = 'x86_64'
config_opts['legal_host_arches'] = ('x86_64',)
config_opts['macros']['%rhel'] = '9'
config_opts['macros']['%dist'] = '.el9.dbd'
config_opts['dnf.conf'] += """
[rpmfusion-free-updates]
baseurl = http://download1.rpmfusion.org/free/el/updates/9/x86_64/
gpgcheck = 1
gpgkey = https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-free-el-9
name = RPM Fusion for EL - Free - Updates
[dbd]
name=dbd
baseurl=http://rpms.lapiole.org/el9/
enabled=1
gpgcheck=1
gpgkey=https://rpms.lapiole.org/RPM-GPG-KEY
"""