-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CentOS Stream 10 + EPEL 10 configs
These work with Koji EPEL buildroot only for now since there are no composes, yet. Fixes: #1421
- Loading branch information
Showing
6 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
config_opts["koji_primary_repo"] = "epel" | ||
include('templates/centos-stream-10.tpl') | ||
include('templates/epel-10.tpl') | ||
|
||
config_opts['root'] = 'centos-stream+epel-10-aarch64' | ||
config_opts['description'] = 'CentOS Stream 10 + EPEL' | ||
config_opts['target_arch'] = 'aarch64' | ||
config_opts['legal_host_arches'] = ('aarch64',) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
config_opts["koji_primary_repo"] = "epel" | ||
include('templates/centos-stream-10.tpl') | ||
include('templates/epel-10.tpl') | ||
|
||
config_opts['root'] = 'centos-stream+epel-10-ppc64le' | ||
config_opts['description'] = 'CentOS Stream 10 + EPEL' | ||
config_opts['target_arch'] = 'ppc64le' | ||
config_opts['legal_host_arches'] = ('ppc64le',) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
config_opts["koji_primary_repo"] = "epel" | ||
include('templates/centos-stream-10.tpl') | ||
include('templates/epel-10.tpl') | ||
|
||
config_opts['root'] = 'centos-stream+epel-10-s3100x' | ||
config_opts['description'] = 'CentOS Stream 10 + EPEL' | ||
config_opts['target_arch'] = 's3100x' | ||
config_opts['legal_host_arches'] = ('s3100x',) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
config_opts["koji_primary_repo"] = "epel" | ||
include('templates/centos-stream-10.tpl') | ||
include('templates/epel-10.tpl') | ||
|
||
config_opts['root'] = 'centos-stream+epel-10-x86_64' | ||
config_opts['description'] = 'CentOS Stream 10 + EPEL' | ||
config_opts['target_arch'] = 'x86_64' | ||
config_opts['legal_host_arches'] = ('x86_64',) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
config_opts['chroot_setup_cmd'] += " epel-rpm-macros" | ||
|
||
config_opts['dnf.conf'] += """ | ||
|
||
[local] | ||
name=Extra Packages for Enterprise Linux $releasever - Koji Local - BUILDROOT ONLY! | ||
baseurl=https://kojipkgs.fedoraproject.org/repos/epel10.0-build/latest/$basearch/ | ||
cost=2000 | ||
enabled=1 | ||
skip_if_unavailable=False | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
The "early" CentOS Stream 10 + EPEL 10 configuration files have been added, | ||
[issue#1421][]. These chroots only work with Fedora EPEL Koji buildroots. |