Compare commits
17 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
66e6ad56fc | ||
|
2535fd58df | ||
|
fb0631f512 | ||
|
b3fc5e6f7e | ||
|
496e4ee6d7 | ||
|
f01b41e623 | ||
|
22b17533ac | ||
|
25741bc4a4 | ||
|
a0dee0997c | ||
|
00f4dcfb56 | ||
|
8524d3e368 | ||
|
8ffb5e8b96 | ||
|
364c0ec843 | ||
|
98585c10dd | ||
|
83e89612ef | ||
|
bc63f1c491 | ||
|
a3fba8ae45 |
@ -1,5 +1,5 @@
|
|||||||
Name: mock-core-configs
|
Name: mock-core-configs
|
||||||
Version: 33.3
|
Version: 36.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Mock core config files basic chroots
|
Summary: Mock core config files basic chroots
|
||||||
|
|
||||||
@ -18,7 +18,7 @@ BuildArch: noarch
|
|||||||
Provides: mock-configs
|
Provides: mock-configs
|
||||||
|
|
||||||
# distribution-gpg-keys contains GPG keys used by mock configs
|
# distribution-gpg-keys contains GPG keys used by mock configs
|
||||||
Requires: distribution-gpg-keys >= 1.41
|
Requires: distribution-gpg-keys >= 1.59
|
||||||
# specify minimal compatible version of mock
|
# specify minimal compatible version of mock
|
||||||
Requires: mock >= 2.5
|
Requires: mock >= 2.5
|
||||||
Requires: mock-filesystem
|
Requires: mock-filesystem
|
||||||
@ -32,7 +32,6 @@ Requires(post): system-release
|
|||||||
Requires(post): python3
|
Requires(post): python3
|
||||||
Requires(post): sed
|
Requires(post): sed
|
||||||
%endif
|
%endif
|
||||||
Requires(pre): shadow-utils
|
|
||||||
%if 0%{?rhel} && 0%{?rhel} <= 7
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
||||||
# to detect correct default.cfg
|
# to detect correct default.cfg
|
||||||
Requires(post): python
|
Requires(post): python
|
||||||
@ -53,7 +52,6 @@ Config files which allow you to create chroots for:
|
|||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
cd etc/host-overrides
|
|
||||||
HOST=none
|
HOST=none
|
||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
HOST="fedora-%{fedora}"
|
HOST="fedora-%{fedora}"
|
||||||
@ -62,13 +60,20 @@ HOST="fedora-%{fedora}"
|
|||||||
HOST="rhel-%{rhel}"
|
HOST="rhel-%{rhel}"
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
if [ -d "$HOST" ]; then
|
# host overrides
|
||||||
pushd "$HOST"
|
case $HOST in
|
||||||
for i in *.cfg; do
|
rhel-7)
|
||||||
cat "$i" >> "../../mock/$i"
|
# RPM on EL7 doesn't link against libzstd, and newer Fedora is compressed
|
||||||
done
|
# using ZSTD. We need to enable bootstrap image here to be able to
|
||||||
popd
|
# initialize the Fedora bootstrap chroot.
|
||||||
fi
|
for config in etc/mock/fedora-*-*.cfg; do
|
||||||
|
version=$(echo "$config" | cut -d- -f2)
|
||||||
|
if test $version = rawhide || test $version -ge 31; then
|
||||||
|
echo "config_opts['use_bootstrap_image'] = True" >> "$config"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -144,6 +149,88 @@ fi
|
|||||||
%ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg
|
%ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Oct 29 2021 Pavel Raiskup <praiskup@redhat.com> 36.3-1
|
||||||
|
- add EuroLinux 8 aarch64 (alex@euro-linux.com)
|
||||||
|
- add HA and RS configs to EuroLinux configs (alex@euro-linux.com)
|
||||||
|
- Add epel9-next configs (carl@george.computer)
|
||||||
|
|
||||||
|
* Tue Oct 26 2021 Pavel Raiskup <praiskup@redhat.com> 36.2-1
|
||||||
|
- bump eln to F36 (praiskup@redhat.com)
|
||||||
|
|
||||||
|
* Fri Oct 08 2021 Pavel Raiskup <praiskup@redhat.com> 36.1-1
|
||||||
|
- Finalize CentOS Stream 9 configuration (ngompa13@gmail.com)
|
||||||
|
- Update Oraclelinux 7/8 configs and add Oraclelinux EPEL 7/8 configs (darren.archibald@oracle.com)
|
||||||
|
|
||||||
|
* Thu Sep 16 2021 Miroslav Suchý <msuchy@redhat.com> 36-1
|
||||||
|
- config: Align CentOS Stream 9 with the production configuration
|
||||||
|
(ngompa13@gmail.com)
|
||||||
|
- config: Disable installing weak dependencies on RHEL rebuilds
|
||||||
|
(ngompa13@gmail.com)
|
||||||
|
- config: Disable installing weak dependencies on CentOS Stream
|
||||||
|
(ngompa13@gmail.com)
|
||||||
|
- config: Validate GPG signatures for CentOS Stream 9 (ngompa13@gmail.com)
|
||||||
|
- Add eurolinux-8 x86_64 and i686 buildroots (alex@euro-linux.com)
|
||||||
|
|
||||||
|
* Mon Aug 16 2021 Pavel Raiskup <praiskup@redhat.com> 35-1
|
||||||
|
- config: add Fedora 35 configs
|
||||||
|
|
||||||
|
* Mon Jul 19 2021 Pavel Raiskup <praiskup@redhat.com> 34.6-1
|
||||||
|
- Disable Rocky Linux "Devel" repo by default (ngompa13@gmail.com)
|
||||||
|
- Fix URL for Rocky Linux repos in commented out "baseurl" lines
|
||||||
|
(ngompa13@gmail.com)
|
||||||
|
|
||||||
|
* Mon Jul 19 2021 Pavel Raiskup <praiskup@redhat.com> 34.5-1
|
||||||
|
- Add CentOS Stream 9 "preview" files
|
||||||
|
- Add rocky support to mock (tucklesepk@gmail.com)
|
||||||
|
- Add AlmaLinux 8 AArch64 target (ngompa13@gmail.com)
|
||||||
|
- Add AlmaLinux Devel repo as an optional repo for AlmaLinux 8 (ngompa13@gmail.com)
|
||||||
|
- Fix GPG key path for SLE updates in openSUSE Leap 15.3 (ngompa13@gmail.com)
|
||||||
|
- Move Requires of shadow-utils from mock-core-configs to mock-filesystem (msuchy@redhat.com)
|
||||||
|
- Switch CentOS templates to use quay.io images for bootstrap (carl@george.computer)
|
||||||
|
- Add epel-next-8 configs (carl@george.computer)
|
||||||
|
|
||||||
|
* Tue Jun 08 2021 Pavel Raiskup <praiskup@redhat.com> 34.4-1
|
||||||
|
- Add GPG keys and RPM repositories for openSUSE Leap 15.3 (ngompa13@gmail.com)
|
||||||
|
- EOL Fedora 32 (msuchy@redhat.com)
|
||||||
|
- sync centos-stream-8 with centos-stream-repos (msuchy@redhat.com)
|
||||||
|
|
||||||
|
* Tue Apr 27 2021 Pavel Raiskup <praiskup@redhat.com> 34.3-1
|
||||||
|
- Add Oracle Linux 8 (ngompa13@gmail.com)
|
||||||
|
- Add Oracle Linux 7 (ngompa13@gmail.com)
|
||||||
|
- Add openSUSE Leap 15.3 (ngompa13@gmail.com)
|
||||||
|
- openSUSE Leap 15.1 is EOL (ngompa13@gmail.com)
|
||||||
|
- Add openSUSE Tumbleweed s390x config (ngompa13@gmail.com)
|
||||||
|
- Add AlmaLinux 8 configs (ngompa13@gmail.com)
|
||||||
|
- Remove make from default ELN buildroot (miro@hroncok.cz)
|
||||||
|
|
||||||
|
* Mon Feb 22 2021 Pavel Raiskup <praiskup@redhat.com> 34.2-1
|
||||||
|
- configs: use Fedora N-1 gpg keys for ELN (praiskup@redhat.com)
|
||||||
|
|
||||||
|
* Thu Feb 11 2021 Pavel Raiskup <praiskup@redhat.com> 34.1-1
|
||||||
|
- fix rawhide config after branching
|
||||||
|
|
||||||
|
* Mon Feb 08 2021 Pavel Raiskup <praiskup@redhat.com> 34-1
|
||||||
|
- add fedora 34 configs (msuchy@redhat.com)
|
||||||
|
- require distribution-gpg-keys with F35 keys (msuchy@redhat.com)
|
||||||
|
- make F35 symlink to rawhide (msuchy@redhat.com)
|
||||||
|
- Rename centos-stream centos-stream-8 (orion@nwra.com)
|
||||||
|
|
||||||
|
* Tue Feb 02 2021 Pavel Raiskup <praiskup@redhat.com> 33.6-1
|
||||||
|
- Add Mageia 8 stable release configs (ngompa13@gmail.com)
|
||||||
|
- Update Mageia Cauldron configuration for Mageia 9 (ngompa13@gmail.com)
|
||||||
|
- add RHEL 6 x86_64 configuration
|
||||||
|
|
||||||
|
* Mon Jan 18 2021 Pavel Raiskup <praiskup@redhat.com> 33.5-1
|
||||||
|
- fix typo in host-specific config generater
|
||||||
|
|
||||||
|
* Mon Jan 18 2021 Pavel Raiskup <praiskup@redhat.com> 33.4-1
|
||||||
|
- fix bootstrapping of newer Fedora on EL7
|
||||||
|
- efine a bootstrap image for openSUSE Tumbleweed (ngompa13@gmail.com)
|
||||||
|
- use fully qualified paths for Fedora/CentOS/RHEL images (ngompa13@gmail.com)
|
||||||
|
- rename repoid for centos8 (msuchy@redhat.com)
|
||||||
|
- EOL CentOS 6 (msuchy@redhat.com)
|
||||||
|
- EOL Fedora 31 (msuchy@redhat.com)
|
||||||
|
|
||||||
* Fri Nov 20 2020 Pavel Raiskup <praiskup@redhat.com> 33.3-1
|
* Fri Nov 20 2020 Pavel Raiskup <praiskup@redhat.com> 33.3-1
|
||||||
- ELN should use for build Everything repository (jkonecny@redhat.com)
|
- ELN should use for build Everything repository (jkonecny@redhat.com)
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (mock-core-configs-33.3.tar.gz) = ba783cf834fc1066977448287b11b545008de4b72804cf965a6cb76e1f439e99688a2c653068ec6c302845c80b067ffb12c0d77477026207cca28766eba9774e
|
SHA512 (mock-core-configs-36.3.tar.gz) = 6d8215cdbe498683a930ec66b6b30085e8ee446ce0f9c5bec28fe856505d6c4e11ec2c680dcb5a71814693b00f45f7d286e4fc8bac12c0fe70fb3b70b2235502
|
||||||
|
Loading…
Reference in New Issue
Block a user