Skip to content

Commit

Permalink
Add epel and epel-testing repos to the EPEL 10 config
Browse files Browse the repository at this point in the history
Previously the EPEL 10 config only included the koji local repo, because
that was the only thing available at the time.  We now have working
MirrorManager metalinks that we can use for the proper repos.  Now that
we have those repos, we can set the koji local repo to disabled by
default, matching earlier EPEL configs.

We also now have a koji symlink that will be updated over time to point
to the latest minor version tag buildroot repo, which can be used in the
koji local baseurl.  This avoids the inconvenience of updating that
baseurl manually every six months.

Relates: rpm-software-management#1427
  • Loading branch information
carlwgeorge committed Oct 11, 2024
1 parent 15c2b9b commit bbe8feb
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 2 deletions.
1 change: 1 addition & 0 deletions mock-core-configs/etc/mock/epel-10-aarch64.cfg
1 change: 1 addition & 0 deletions mock-core-configs/etc/mock/epel-10-ppc64le.cfg
1 change: 1 addition & 0 deletions mock-core-configs/etc/mock/epel-10-s390x.cfg
1 change: 1 addition & 0 deletions mock-core-configs/etc/mock/epel-10-x86_64.cfg
1 change: 1 addition & 0 deletions mock-core-configs/etc/mock/templates/centos-stream-10.tpl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
config_opts['chroot_setup_cmd'] = 'install bash bzip2 centos-stream-release coreutils cpio diffutils findutils gawk glibc-minimal-langpack grep gzip info patch redhat-rpm-config rpm-build sed shadow-utils tar unzip util-linux which xz'
config_opts['dist'] = 'el10' # only useful for --resultdir variable subst
config_opts['releasever'] = '10'
config_opts['releasever_major'] = '10'
config_opts['package_manager'] = 'dnf'
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
config_opts['description'] = 'CentOS Stream 10'
Expand Down
29 changes: 27 additions & 2 deletions mock-core-configs/etc/mock/templates/epel-10.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,35 @@ config_opts['chroot_setup_cmd'] += " epel-rpm-macros"

config_opts['dnf.conf'] += """

# The metalinks below differ from the ones used in epel-release. The
# epel-release metalinks rely on a dnf variable expansion feature that is only
# available since dnf 4.18.0. In some configurations mock will be using the
# host dnf to bootstrap the chroot, which could be older and lack those
# features, leading to problems. The alternative is to use this simplified
# metalink here in this template for CentOS Stream, and a different metalink in
# another template for RHEL.

[epel]
name=Extra Packages for Enterprise Linux $releasever - $basearch
metalink=https://mirrors.fedoraproject.org/metalink?repo=epel-{{ releasever_major }}&arch=$basearch
gpgkey=file:///usr/share/distribution-gpg-keys/epel/RPM-GPG-KEY-EPEL-{{ releasever_major }}
gpgcheck=1
countme=1

[epel-testing]
name=Extra Packages for Enterprise Linux $releasever - Testing - $basearch
metalink=https://mirrors.fedoraproject.org/metalink?repo=testing-epel{{ releasever_major }}&arch=$basearch
gpgkey=file:///usr/share/distribution-gpg-keys/epel/RPM-GPG-KEY-EPEL-{{ releasever_major }}
gpgcheck=1
countme=1
enabled=0

{% if koji_primary_repo == "epel" %}
[local]
name=Extra Packages for Enterprise Linux $releasever - Koji Local - BUILDROOT ONLY!
baseurl=https://kojipkgs.fedoraproject.org/repos/epel10.0-build/latest/$basearch/
baseurl=https://kojipkgs.fedoraproject.org/repos/epel{{ releasever_major }}/centos/$basearch/
cost=2000
enabled=1
enabled=0
skip_if_unavailable=False
{% endif %}
"""
3 changes: 3 additions & 0 deletions releng/release-notes-next/epel10-metalinks.config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The EPEL 10 configuration has been updated to include the epel and epel-testing
repos with the appropriate metalinks. Previously it only included the koji
local repo.

0 comments on commit bbe8feb

Please sign in to comment.