From 46f1df459696fc02d79ae4c3ee1666c9c67dde1b Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 13 Sep 2017 12:17:46 +0000 Subject: [PATCH 001/122] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..fbca91e --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# mock-core-configs + +The mock-core-configs package \ No newline at end of file From 3b7b333d630faab26be77f40d777c00d7e7acaad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 14 Sep 2017 15:27:37 +0200 Subject: [PATCH 002/122] Update mock-core-configs to 27.2-1 --- .gitignore | 1 + README.md | 3 -- mock-core-configs.spec | 115 +++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 117 insertions(+), 3 deletions(-) create mode 100644 .gitignore delete mode 100644 README.md create mode 100644 mock-core-configs.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d422d04 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/mock-core-configs-27.2.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index fbca91e..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# mock-core-configs - -The mock-core-configs package \ No newline at end of file diff --git a/mock-core-configs.spec b/mock-core-configs.spec new file mode 100644 index 0000000..c53ae35 --- /dev/null +++ b/mock-core-configs.spec @@ -0,0 +1,115 @@ +# mock group id allocate for Fedora +%global mockgid 135 + +Name: mock-core-configs +Version: 27.2 +Release: 1%{?dist} +Summary: Mock core config files basic chroots + +License: GPLv2+ +URL: https://github.com/rpm-software-management/mock/ +# Source is created by +# git clone https://github.com/rpm-software-management/mock.git +# cd mock/mock-core-configs +# git reset --hard %{name}-%{version} +# tito build --tgz +Source: https://github.com/rpm-software-management/mock/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.gz +BuildArch: noarch +Requires(pre): shadow-utils +Requires(post): coreutils +%if 0%{?fedora} +# to detect correct default.cfg +Requires(post): python3-dnf +Requires(post): python3-hawkey +Requires(post): system-release +Requires(post): python3 +%endif +%if 0%{?rhel} +# to detect correct default.cfg +Requires(post): python +Requires(post): yum +Requires(post): /etc/os-release +%endif + +%description +Config files which allow you to create chroots for: + * Fedora + * Epel + * Mageia + * Custom chroot + +%prep +%setup -q + + +%build +# nothing to do here + + +%install +mkdir -p %{buildroot}%{_sysconfdir}/mock +install -pm 0644 etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock + +# generate files section with config - there is many of them +echo "%defattr(0644, root, mock)" > %{name}.cfgs +find %{buildroot}%{_sysconfdir}/mock -name "*.cfg" \ + | sed -e "s|^%{buildroot}|%%config(noreplace) |" >> %{name}.cfgs +# just for %%ghosting purposes +ln -s fedora-rawhide-x86_64.cfg %{buildroot}%{_sysconfdir}/mock/default.cfg +# bash-completion +if [ -d %{buildroot}%{_datadir}/bash-completion ]; then + echo %{_datadir}/bash-completion/completions/mock >> %{name}.cfgs + echo %{_datadir}/bash-completion/completions/mockchain >> %{name}.cfgs +elif [ -d %{buildroot}%{_sysconfdir}/bash_completion.d ]; then + echo %{_sysconfdir}/bash_completion.d/mock >> %{name}.cfgs +fi + +%pre +# check for existence of mock group, create it if not found +getent group mock > /dev/null || groupadd -f -g %mockgid -r mock +exit 0 + +%post +if [ -s /etc/os-release ]; then + # fedora and rhel7 + if grep -Fiq Rawhide /etc/os-release; then + ver=rawhide + else + ver=$(source /etc/os-release && echo $VERSION_ID | cut -d. -f1 | grep -o '[0-9]\+') + fi +else + # something obsure, use buildtime version + ver=%{?rhel}%{?fedora} +fi +%if 0%{?fedora} +mock_arch=$(python3 -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") +%else +mock_arch=$(python -c "import rpmUtils.arch; baseArch = rpmUtils.arch.getBaseArch(); print baseArch") +%endif +cfg=%{?fedora:fedora}%{?rhel:epel}-$ver-${mock_arch}.cfg +if [ -e %{_sysconfdir}/mock/$cfg ]; then + if [ "$(readlink %{_sysconfdir}/mock/default.cfg)" != "$cfg" ]; then + ln -s $cfg %{_sysconfdir}/mock/default.cfg 2>/dev/null || ln -s -f $cfg %{_sysconfdir}/mock/default.cfg.rpmnew + fi +else + echo "Warning: file %{_sysconfdir}/mock/$cfg does not exists." + echo " unable to update %{_sysconfdir}/mock/default.cfg" +fi +: + + +%files -f %{name}.cfgs +%defattr(-, root, root, -) +%license COPYING +%dir %{_sysconfdir}/mock +%ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg + +%changelog +* Tue Sep 12 2017 Miroslav Suchý 27.2-1 +- add source url +- grammar fix + +* Thu Sep 07 2017 Miroslav Suchý 27.1-1 +- Split from Mock package. + + diff --git a/sources b/sources new file mode 100644 index 0000000..2701de4 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (mock-core-configs-27.2.tar.gz) = 390faddc0547c18f08b0097b772f116436ca9a09866446f41e093c9b9bb46c6b23b3b121f7fb312d54abb8ab7db84dc4e1ef867dc2c5f102a082dbecdbd91fbf From 580558b3db59f1525b586633e5a217c215bd8ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 14 Sep 2017 16:05:43 +0200 Subject: [PATCH 003/122] Update mock-core-configs to 27.2-1 --- .gitignore | 1 + README.md | 3 -- mock-core-configs.spec | 115 +++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 117 insertions(+), 3 deletions(-) create mode 100644 .gitignore delete mode 100644 README.md create mode 100644 mock-core-configs.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d422d04 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/mock-core-configs-27.2.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index fbca91e..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# mock-core-configs - -The mock-core-configs package \ No newline at end of file diff --git a/mock-core-configs.spec b/mock-core-configs.spec new file mode 100644 index 0000000..c53ae35 --- /dev/null +++ b/mock-core-configs.spec @@ -0,0 +1,115 @@ +# mock group id allocate for Fedora +%global mockgid 135 + +Name: mock-core-configs +Version: 27.2 +Release: 1%{?dist} +Summary: Mock core config files basic chroots + +License: GPLv2+ +URL: https://github.com/rpm-software-management/mock/ +# Source is created by +# git clone https://github.com/rpm-software-management/mock.git +# cd mock/mock-core-configs +# git reset --hard %{name}-%{version} +# tito build --tgz +Source: https://github.com/rpm-software-management/mock/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.gz +BuildArch: noarch +Requires(pre): shadow-utils +Requires(post): coreutils +%if 0%{?fedora} +# to detect correct default.cfg +Requires(post): python3-dnf +Requires(post): python3-hawkey +Requires(post): system-release +Requires(post): python3 +%endif +%if 0%{?rhel} +# to detect correct default.cfg +Requires(post): python +Requires(post): yum +Requires(post): /etc/os-release +%endif + +%description +Config files which allow you to create chroots for: + * Fedora + * Epel + * Mageia + * Custom chroot + +%prep +%setup -q + + +%build +# nothing to do here + + +%install +mkdir -p %{buildroot}%{_sysconfdir}/mock +install -pm 0644 etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock + +# generate files section with config - there is many of them +echo "%defattr(0644, root, mock)" > %{name}.cfgs +find %{buildroot}%{_sysconfdir}/mock -name "*.cfg" \ + | sed -e "s|^%{buildroot}|%%config(noreplace) |" >> %{name}.cfgs +# just for %%ghosting purposes +ln -s fedora-rawhide-x86_64.cfg %{buildroot}%{_sysconfdir}/mock/default.cfg +# bash-completion +if [ -d %{buildroot}%{_datadir}/bash-completion ]; then + echo %{_datadir}/bash-completion/completions/mock >> %{name}.cfgs + echo %{_datadir}/bash-completion/completions/mockchain >> %{name}.cfgs +elif [ -d %{buildroot}%{_sysconfdir}/bash_completion.d ]; then + echo %{_sysconfdir}/bash_completion.d/mock >> %{name}.cfgs +fi + +%pre +# check for existence of mock group, create it if not found +getent group mock > /dev/null || groupadd -f -g %mockgid -r mock +exit 0 + +%post +if [ -s /etc/os-release ]; then + # fedora and rhel7 + if grep -Fiq Rawhide /etc/os-release; then + ver=rawhide + else + ver=$(source /etc/os-release && echo $VERSION_ID | cut -d. -f1 | grep -o '[0-9]\+') + fi +else + # something obsure, use buildtime version + ver=%{?rhel}%{?fedora} +fi +%if 0%{?fedora} +mock_arch=$(python3 -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") +%else +mock_arch=$(python -c "import rpmUtils.arch; baseArch = rpmUtils.arch.getBaseArch(); print baseArch") +%endif +cfg=%{?fedora:fedora}%{?rhel:epel}-$ver-${mock_arch}.cfg +if [ -e %{_sysconfdir}/mock/$cfg ]; then + if [ "$(readlink %{_sysconfdir}/mock/default.cfg)" != "$cfg" ]; then + ln -s $cfg %{_sysconfdir}/mock/default.cfg 2>/dev/null || ln -s -f $cfg %{_sysconfdir}/mock/default.cfg.rpmnew + fi +else + echo "Warning: file %{_sysconfdir}/mock/$cfg does not exists." + echo " unable to update %{_sysconfdir}/mock/default.cfg" +fi +: + + +%files -f %{name}.cfgs +%defattr(-, root, root, -) +%license COPYING +%dir %{_sysconfdir}/mock +%ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg + +%changelog +* Tue Sep 12 2017 Miroslav Suchý 27.2-1 +- add source url +- grammar fix + +* Thu Sep 07 2017 Miroslav Suchý 27.1-1 +- Split from Mock package. + + diff --git a/sources b/sources new file mode 100644 index 0000000..2701de4 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (mock-core-configs-27.2.tar.gz) = 390faddc0547c18f08b0097b772f116436ca9a09866446f41e093c9b9bb46c6b23b3b121f7fb312d54abb8ab7db84dc4e1ef867dc2c5f102a082dbecdbd91fbf From bf877f909cdd17e5d46409be130d302d0cf9ca9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 27 Sep 2017 12:25:29 +0200 Subject: [PATCH 004/122] Update mock-core-configs to 27.3-1 --- .gitignore | 1 + mock-core-configs.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d422d04..6902343 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /mock-core-configs-27.2.tar.gz +/mock-core-configs-27.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index c53ae35..84f6145 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 27.2 +Version: 27.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -105,6 +105,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Sep 27 2017 Miroslav Suchý 27.3-1 +- use primary key for F-27+ on s390x (dan@danny.cz) + * Tue Sep 12 2017 Miroslav Suchý 27.2-1 - add source url - grammar fix diff --git a/sources b/sources index 2701de4..9225d86 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-27.2.tar.gz) = 390faddc0547c18f08b0097b772f116436ca9a09866446f41e093c9b9bb46c6b23b3b121f7fb312d54abb8ab7db84dc4e1ef867dc2c5f102a082dbecdbd91fbf +SHA512 (mock-core-configs-27.3.tar.gz) = fe963b7a23baf462ad1bb5d561b97b52cfd6bb9404db5393d5f4b93e4d956a9d7549db2304bf693eaee5c5d08f2cea6064a034b2a90fcb33bb1712c012e4fd66 From d2ff6cc9fc1f4a3563f139e5c5969fd038425594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 27 Sep 2017 12:26:44 +0200 Subject: [PATCH 005/122] Update mock-core-configs to 27.3-1 --- .gitignore | 1 + mock-core-configs.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d422d04..6902343 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /mock-core-configs-27.2.tar.gz +/mock-core-configs-27.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index c53ae35..84f6145 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 27.2 +Version: 27.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -105,6 +105,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Sep 27 2017 Miroslav Suchý 27.3-1 +- use primary key for F-27+ on s390x (dan@danny.cz) + * Tue Sep 12 2017 Miroslav Suchý 27.2-1 - add source url - grammar fix diff --git a/sources b/sources index 2701de4..9225d86 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-27.2.tar.gz) = 390faddc0547c18f08b0097b772f116436ca9a09866446f41e093c9b9bb46c6b23b3b121f7fb312d54abb8ab7db84dc4e1ef867dc2c5f102a082dbecdbd91fbf +SHA512 (mock-core-configs-27.3.tar.gz) = fe963b7a23baf462ad1bb5d561b97b52cfd6bb9404db5393d5f4b93e4d956a9d7549db2304bf693eaee5c5d08f2cea6064a034b2a90fcb33bb1712c012e4fd66 From 6c5fee3c82c7873645eac30f4c950a832b877131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 9 Oct 2017 08:44:46 +0200 Subject: [PATCH 006/122] Update mock-core-configs to 27.4-1 --- .gitignore | 1 + mock-core-configs.spec | 33 ++++++++++++++++++++++++++------- sources | 2 +- 3 files changed, 28 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 6902343..7ad3883 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /mock-core-configs-27.2.tar.gz /mock-core-configs-27.3.tar.gz +/mock-core-configs-27.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 84f6145..97681ad 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 27.3 +Version: 27.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -15,14 +15,19 @@ URL: https://github.com/rpm-software-management/mock/ # tito build --tgz Source: https://github.com/rpm-software-management/mock/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.gz BuildArch: noarch + +# distribution-gpg-keys contains GPG keys used by mock configs +Requires: distribution-gpg-keys >= 1.15 + Requires(pre): shadow-utils Requires(post): coreutils -%if 0%{?fedora} +%if 0%{?fedora} || 0%{?mageia} # to detect correct default.cfg Requires(post): python3-dnf Requires(post): python3-hawkey Requires(post): system-release Requires(post): python3 +Requires(post): sed %endif %if 0%{?rhel} # to detect correct default.cfg @@ -74,25 +79,34 @@ if [ -s /etc/os-release ]; then # fedora and rhel7 if grep -Fiq Rawhide /etc/os-release; then ver=rawhide + # mageia + elif [ -s /etc/mageia-release ]; then + if grep -Fiq Cauldron /etc/mageia-release; then + ver=cauldron + fi else ver=$(source /etc/os-release && echo $VERSION_ID | cut -d. -f1 | grep -o '[0-9]\+') fi else # something obsure, use buildtime version - ver=%{?rhel}%{?fedora} + ver=%{?rhel}%{?fedora}%{?mageia} +fi +%if 0%{?fedora} || 0%{?mageia} +if [ -s /etc/mageia-release ]; then + mock_arch=$(sed -n '/^$/!{$ s/.* \(\w*\)$/\1/p}' /etc/mageia-release) +else + mock_arch=$(python3 -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") fi -%if 0%{?fedora} -mock_arch=$(python3 -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") %else mock_arch=$(python -c "import rpmUtils.arch; baseArch = rpmUtils.arch.getBaseArch(); print baseArch") %endif -cfg=%{?fedora:fedora}%{?rhel:epel}-$ver-${mock_arch}.cfg +cfg=%{?fedora:fedora}%{?rhel:epel}%{?mageia:mageia}-$ver-${mock_arch}.cfg if [ -e %{_sysconfdir}/mock/$cfg ]; then if [ "$(readlink %{_sysconfdir}/mock/default.cfg)" != "$cfg" ]; then ln -s $cfg %{_sysconfdir}/mock/default.cfg 2>/dev/null || ln -s -f $cfg %{_sysconfdir}/mock/default.cfg.rpmnew fi else - echo "Warning: file %{_sysconfdir}/mock/$cfg does not exists." + echo "Warning: file %{_sysconfdir}/mock/$cfg does not exist." echo " unable to update %{_sysconfdir}/mock/default.cfg" fi : @@ -105,6 +119,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Oct 09 2017 Miroslav Suchý 27.4-1 +- Fix mock & mock-core-config specs to support Mageia (ngompa13@gmail.com) +- Ensure mock-core-configs will select the right default on Mageia + (ngompa13@gmail.com) + * Wed Sep 27 2017 Miroslav Suchý 27.3-1 - use primary key for F-27+ on s390x (dan@danny.cz) diff --git a/sources b/sources index 9225d86..0303af0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-27.3.tar.gz) = fe963b7a23baf462ad1bb5d561b97b52cfd6bb9404db5393d5f4b93e4d956a9d7549db2304bf693eaee5c5d08f2cea6064a034b2a90fcb33bb1712c012e4fd66 +SHA512 (mock-core-configs-27.4.tar.gz) = a48dfc3c64fb8f542d19229ff09555cb4ad886d7fc7c32be0f629ef594e016802ef248913afeb8db284c8e55e391e7200f55022a7041afcc14281422175ccdb0 From 907960b2cab22c46ca6c335c3d370058184dc405 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Tue, 31 Oct 2017 21:42:22 +0100 Subject: [PATCH 007/122] Update mock-core-configs to 27.4-1 --- .gitignore | 1 + mock-core-configs.spec | 33 ++++++++++++++++++++++++++------- sources | 2 +- 3 files changed, 28 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 6902343..7ad3883 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /mock-core-configs-27.2.tar.gz /mock-core-configs-27.3.tar.gz +/mock-core-configs-27.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 84f6145..97681ad 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 27.3 +Version: 27.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -15,14 +15,19 @@ URL: https://github.com/rpm-software-management/mock/ # tito build --tgz Source: https://github.com/rpm-software-management/mock/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.gz BuildArch: noarch + +# distribution-gpg-keys contains GPG keys used by mock configs +Requires: distribution-gpg-keys >= 1.15 + Requires(pre): shadow-utils Requires(post): coreutils -%if 0%{?fedora} +%if 0%{?fedora} || 0%{?mageia} # to detect correct default.cfg Requires(post): python3-dnf Requires(post): python3-hawkey Requires(post): system-release Requires(post): python3 +Requires(post): sed %endif %if 0%{?rhel} # to detect correct default.cfg @@ -74,25 +79,34 @@ if [ -s /etc/os-release ]; then # fedora and rhel7 if grep -Fiq Rawhide /etc/os-release; then ver=rawhide + # mageia + elif [ -s /etc/mageia-release ]; then + if grep -Fiq Cauldron /etc/mageia-release; then + ver=cauldron + fi else ver=$(source /etc/os-release && echo $VERSION_ID | cut -d. -f1 | grep -o '[0-9]\+') fi else # something obsure, use buildtime version - ver=%{?rhel}%{?fedora} + ver=%{?rhel}%{?fedora}%{?mageia} +fi +%if 0%{?fedora} || 0%{?mageia} +if [ -s /etc/mageia-release ]; then + mock_arch=$(sed -n '/^$/!{$ s/.* \(\w*\)$/\1/p}' /etc/mageia-release) +else + mock_arch=$(python3 -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") fi -%if 0%{?fedora} -mock_arch=$(python3 -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") %else mock_arch=$(python -c "import rpmUtils.arch; baseArch = rpmUtils.arch.getBaseArch(); print baseArch") %endif -cfg=%{?fedora:fedora}%{?rhel:epel}-$ver-${mock_arch}.cfg +cfg=%{?fedora:fedora}%{?rhel:epel}%{?mageia:mageia}-$ver-${mock_arch}.cfg if [ -e %{_sysconfdir}/mock/$cfg ]; then if [ "$(readlink %{_sysconfdir}/mock/default.cfg)" != "$cfg" ]; then ln -s $cfg %{_sysconfdir}/mock/default.cfg 2>/dev/null || ln -s -f $cfg %{_sysconfdir}/mock/default.cfg.rpmnew fi else - echo "Warning: file %{_sysconfdir}/mock/$cfg does not exists." + echo "Warning: file %{_sysconfdir}/mock/$cfg does not exist." echo " unable to update %{_sysconfdir}/mock/default.cfg" fi : @@ -105,6 +119,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Oct 09 2017 Miroslav Suchý 27.4-1 +- Fix mock & mock-core-config specs to support Mageia (ngompa13@gmail.com) +- Ensure mock-core-configs will select the right default on Mageia + (ngompa13@gmail.com) + * Wed Sep 27 2017 Miroslav Suchý 27.3-1 - use primary key for F-27+ on s390x (dan@danny.cz) diff --git a/sources b/sources index 9225d86..0303af0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-27.3.tar.gz) = fe963b7a23baf462ad1bb5d561b97b52cfd6bb9404db5393d5f4b93e4d956a9d7549db2304bf693eaee5c5d08f2cea6064a034b2a90fcb33bb1712c012e4fd66 +SHA512 (mock-core-configs-27.4.tar.gz) = a48dfc3c64fb8f542d19229ff09555cb4ad886d7fc7c32be0f629ef594e016802ef248913afeb8db284c8e55e391e7200f55022a7041afcc14281422175ccdb0 From 131a57bdae65792fd367338a88b127b6cefaa1d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 22 Jan 2018 16:32:34 +0100 Subject: [PATCH 008/122] Update mock-core-configs to 28.1-1 --- .gitignore | 1 + mock-core-configs.spec | 19 ++++++++++++++----- sources | 2 +- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 7ad3883..d8afdde 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /mock-core-configs-27.2.tar.gz /mock-core-configs-27.3.tar.gz /mock-core-configs-27.4.tar.gz +/mock-core-configs-28.1.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 97681ad..7a46394 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 27.4 +Version: 28.1 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -21,7 +21,7 @@ Requires: distribution-gpg-keys >= 1.15 Requires(pre): shadow-utils Requires(post): coreutils -%if 0%{?fedora} || 0%{?mageia} +%if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg Requires(post): python3-dnf Requires(post): python3-hawkey @@ -29,7 +29,7 @@ Requires(post): system-release Requires(post): python3 Requires(post): sed %endif -%if 0%{?rhel} +%if 0%{?rhel} <= 7 # to detect correct default.cfg Requires(post): python Requires(post): yum @@ -76,7 +76,7 @@ exit 0 %post if [ -s /etc/os-release ]; then - # fedora and rhel7 + # fedora and rhel7+ if grep -Fiq Rawhide /etc/os-release; then ver=rawhide # mageia @@ -91,7 +91,7 @@ else # something obsure, use buildtime version ver=%{?rhel}%{?fedora}%{?mageia} fi -%if 0%{?fedora} || 0%{?mageia} +%if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 if [ -s /etc/mageia-release ]; then mock_arch=$(sed -n '/^$/!{$ s/.* \(\w*\)$/\1/p}' /etc/mageia-release) else @@ -119,6 +119,15 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Jan 22 2018 Miroslav Suchý 28.1-1 +- bump up version to 28.1 + +* Mon Jan 22 2018 Miroslav Suchý 27.5-1 +- add fedora 28 configs +- remove failovermethod=priority for repos which use dnf +- remove fedora 24 configs +- set skip_if_unavailable=False for all repos + * Mon Oct 09 2017 Miroslav Suchý 27.4-1 - Fix mock & mock-core-config specs to support Mageia (ngompa13@gmail.com) - Ensure mock-core-configs will select the right default on Mageia diff --git a/sources b/sources index 0303af0..b5faec5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-27.4.tar.gz) = a48dfc3c64fb8f542d19229ff09555cb4ad886d7fc7c32be0f629ef594e016802ef248913afeb8db284c8e55e391e7200f55022a7041afcc14281422175ccdb0 +SHA512 (mock-core-configs-28.1.tar.gz) = e0ca6dbbf1f789b3aea733aca89be8dc965b1dabe25abf41990a16b08132cfd222b638be310826155fa4e8bdff75feaa5d2e7eda1dbdfcb48ab218a68420ad4e From 1d9d4b9d90b4286db0dc015da0ac9e2a1407b7fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 22 Jan 2018 16:33:53 +0100 Subject: [PATCH 009/122] Update mock-core-configs to 28.1-1 --- .gitignore | 1 + mock-core-configs.spec | 19 ++++++++++++++----- sources | 2 +- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 7ad3883..d8afdde 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /mock-core-configs-27.2.tar.gz /mock-core-configs-27.3.tar.gz /mock-core-configs-27.4.tar.gz +/mock-core-configs-28.1.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 97681ad..7a46394 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 27.4 +Version: 28.1 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -21,7 +21,7 @@ Requires: distribution-gpg-keys >= 1.15 Requires(pre): shadow-utils Requires(post): coreutils -%if 0%{?fedora} || 0%{?mageia} +%if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg Requires(post): python3-dnf Requires(post): python3-hawkey @@ -29,7 +29,7 @@ Requires(post): system-release Requires(post): python3 Requires(post): sed %endif -%if 0%{?rhel} +%if 0%{?rhel} <= 7 # to detect correct default.cfg Requires(post): python Requires(post): yum @@ -76,7 +76,7 @@ exit 0 %post if [ -s /etc/os-release ]; then - # fedora and rhel7 + # fedora and rhel7+ if grep -Fiq Rawhide /etc/os-release; then ver=rawhide # mageia @@ -91,7 +91,7 @@ else # something obsure, use buildtime version ver=%{?rhel}%{?fedora}%{?mageia} fi -%if 0%{?fedora} || 0%{?mageia} +%if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 if [ -s /etc/mageia-release ]; then mock_arch=$(sed -n '/^$/!{$ s/.* \(\w*\)$/\1/p}' /etc/mageia-release) else @@ -119,6 +119,15 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Jan 22 2018 Miroslav Suchý 28.1-1 +- bump up version to 28.1 + +* Mon Jan 22 2018 Miroslav Suchý 27.5-1 +- add fedora 28 configs +- remove failovermethod=priority for repos which use dnf +- remove fedora 24 configs +- set skip_if_unavailable=False for all repos + * Mon Oct 09 2017 Miroslav Suchý 27.4-1 - Fix mock & mock-core-config specs to support Mageia (ngompa13@gmail.com) - Ensure mock-core-configs will select the right default on Mageia diff --git a/sources b/sources index 0303af0..b5faec5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-27.4.tar.gz) = a48dfc3c64fb8f542d19229ff09555cb4ad886d7fc7c32be0f629ef594e016802ef248913afeb8db284c8e55e391e7200f55022a7041afcc14281422175ccdb0 +SHA512 (mock-core-configs-28.1.tar.gz) = e0ca6dbbf1f789b3aea733aca89be8dc965b1dabe25abf41990a16b08132cfd222b638be310826155fa4e8bdff75feaa5d2e7eda1dbdfcb48ab218a68420ad4e From 7a440f0738423eaa8359908b2adc05e51b1ce4ef Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 22 Jan 2018 17:27:01 +0100 Subject: [PATCH 010/122] Fix wrong RHEL condition Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1537193 Signed-off-by: Igor Gnatenko --- mock-core-configs.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 7a46394..df035e8 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ Name: mock-core-configs Version: 28.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -29,7 +29,7 @@ Requires(post): system-release Requires(post): python3 Requires(post): sed %endif -%if 0%{?rhel} <= 7 +%if 0%{?rhel} && 0%{?rhel} <= 7 # to detect correct default.cfg Requires(post): python Requires(post): yum @@ -119,6 +119,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Jan 22 2018 Igor Gnatenko - 28.1-2 +- Fix wrong RHEL condition + * Mon Jan 22 2018 Miroslav Suchý 28.1-1 - bump up version to 28.1 From 287552f1294dc9100ca67ddf84a87e7d35950532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 22 Jan 2018 17:58:47 +0100 Subject: [PATCH 011/122] Update mock-core-configs to 28.2-1 --- .gitignore | 1 + mock-core-configs.spec | 8 ++++---- sources | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index d8afdde..6ab9913 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /mock-core-configs-27.3.tar.gz /mock-core-configs-27.4.tar.gz /mock-core-configs-28.1.tar.gz +/mock-core-configs-28.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index df035e8..06cc863 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 28.1 -Release: 2%{?dist} +Version: 28.2 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -119,8 +119,8 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Mon Jan 22 2018 Igor Gnatenko - 28.1-2 -- Fix wrong RHEL condition +* Mon Jan 22 2018 Miroslav Suchý 28.2-1 +- fix wrong RHEL condition * Mon Jan 22 2018 Miroslav Suchý 28.1-1 - bump up version to 28.1 diff --git a/sources b/sources index b5faec5..24a8810 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-28.1.tar.gz) = e0ca6dbbf1f789b3aea733aca89be8dc965b1dabe25abf41990a16b08132cfd222b638be310826155fa4e8bdff75feaa5d2e7eda1dbdfcb48ab218a68420ad4e +SHA512 (mock-core-configs-28.2.tar.gz) = 2b86194f3d829db4c4b09fe0f2d552b4d104fab3ff7810d5ff1923b6a77867efc73d55d5d6ada519136d30cd643185cca7f784f1e9b0f009c0a13ea8d019790a From 59e2d13d33e3faa1a8d310135ee2fc6975b21ac8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 22 Jan 2018 18:03:42 +0100 Subject: [PATCH 012/122] Update mock-core-configs to 28.2-1 --- .gitignore | 1 + mock-core-configs.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d8afdde..6ab9913 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /mock-core-configs-27.3.tar.gz /mock-core-configs-27.4.tar.gz /mock-core-configs-28.1.tar.gz +/mock-core-configs-28.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 7a46394..06cc863 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 28.1 +Version: 28.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -29,7 +29,7 @@ Requires(post): system-release Requires(post): python3 Requires(post): sed %endif -%if 0%{?rhel} <= 7 +%if 0%{?rhel} && 0%{?rhel} <= 7 # to detect correct default.cfg Requires(post): python Requires(post): yum @@ -119,6 +119,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Jan 22 2018 Miroslav Suchý 28.2-1 +- fix wrong RHEL condition + * Mon Jan 22 2018 Miroslav Suchý 28.1-1 - bump up version to 28.1 diff --git a/sources b/sources index b5faec5..24a8810 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-28.1.tar.gz) = e0ca6dbbf1f789b3aea733aca89be8dc965b1dabe25abf41990a16b08132cfd222b638be310826155fa4e8bdff75feaa5d2e7eda1dbdfcb48ab218a68420ad4e +SHA512 (mock-core-configs-28.2.tar.gz) = 2b86194f3d829db4c4b09fe0f2d552b4d104fab3ff7810d5ff1923b6a77867efc73d55d5d6ada519136d30cd643185cca7f784f1e9b0f009c0a13ea8d019790a From d7c364c1e8098328abb28ae7603d0e88d9ed1888 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 8 Feb 2018 02:55:29 +0000 Subject: [PATCH 013/122] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 06cc863..5b89ea0 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ Name: mock-core-configs Version: 28.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -119,6 +119,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Feb 08 2018 Fedora Release Engineering - 28.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Mon Jan 22 2018 Miroslav Suchý 28.2-1 - fix wrong RHEL condition From 0c5de0ee743aea35de069e93c67122001b1886d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 1 Mar 2018 12:47:44 +0100 Subject: [PATCH 014/122] Update mock-core-configs to 28.3-1 --- .gitignore | 1 + mock-core-configs.spec | 10 ++++++---- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 6ab9913..318e81c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /mock-core-configs-27.4.tar.gz /mock-core-configs-28.1.tar.gz /mock-core-configs-28.2.tar.gz +/mock-core-configs-28.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 5b89ea0..d31a3a0 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 28.2 -Release: 2%{?dist} +Version: 28.3 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -119,8 +119,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Thu Feb 08 2018 Fedora Release Engineering - 28.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild +* Thu Mar 01 2018 Miroslav Suchý 28.3-1 +- bump up releasever in rawhide configs +- add CentOS SCL repositories to EPEL 6 & 7 (x86_64) + (tmz@pobox.com) * Mon Jan 22 2018 Miroslav Suchý 28.2-1 - fix wrong RHEL condition diff --git a/sources b/sources index 24a8810..3956d92 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-28.2.tar.gz) = 2b86194f3d829db4c4b09fe0f2d552b4d104fab3ff7810d5ff1923b6a77867efc73d55d5d6ada519136d30cd643185cca7f784f1e9b0f009c0a13ea8d019790a +SHA512 (mock-core-configs-28.3.tar.gz) = e1fb421076fab0696b27baf0f67fe87421c8550944ab285c6e2cf86cf147bdc5775f7c741fe1128946e167b3acc4116526c82c83faf3ad059220b71e41ffde04 From 565dda89e5e5f2608019413ef88ca85ab1654736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 1 Mar 2018 12:50:07 +0100 Subject: [PATCH 015/122] Update mock-core-configs to 28.3-1 --- .gitignore | 1 + mock-core-configs.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6ab9913..318e81c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /mock-core-configs-27.4.tar.gz /mock-core-configs-28.1.tar.gz /mock-core-configs-28.2.tar.gz +/mock-core-configs-28.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 06cc863..d31a3a0 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 28.2 +Version: 28.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -119,6 +119,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Mar 01 2018 Miroslav Suchý 28.3-1 +- bump up releasever in rawhide configs +- add CentOS SCL repositories to EPEL 6 & 7 (x86_64) + (tmz@pobox.com) + * Mon Jan 22 2018 Miroslav Suchý 28.2-1 - fix wrong RHEL condition diff --git a/sources b/sources index 24a8810..3956d92 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-28.2.tar.gz) = 2b86194f3d829db4c4b09fe0f2d552b4d104fab3ff7810d5ff1923b6a77867efc73d55d5d6ada519136d30cd643185cca7f784f1e9b0f009c0a13ea8d019790a +SHA512 (mock-core-configs-28.3.tar.gz) = e1fb421076fab0696b27baf0f67fe87421c8550944ab285c6e2cf86cf147bdc5775f7c741fe1128946e167b3acc4116526c82c83faf3ad059220b71e41ffde04 From a99de4b2a2c49954c726b5c3d4df9df189974f96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 2 May 2018 09:15:40 +0200 Subject: [PATCH 016/122] Update mock-core-configs to 28.4-1 --- .gitignore | 1 + mock-core-configs.spec | 15 ++++++++++++--- sources | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 318e81c..065d86e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /mock-core-configs-28.1.tar.gz /mock-core-configs-28.2.tar.gz /mock-core-configs-28.3.tar.gz +/mock-core-configs-28.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index d31a3a0..6ffed18 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 28.3 +Version: 28.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.15 +Requires: distribution-gpg-keys >= 1.21 Requires(pre): shadow-utils Requires(post): coreutils @@ -53,7 +53,7 @@ Config files which allow you to create chroots for: %install mkdir -p %{buildroot}%{_sysconfdir}/mock -install -pm 0644 etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock +cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock # generate files section with config - there is many of them echo "%defattr(0644, root, mock)" > %{name}.cfgs @@ -119,6 +119,15 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed May 02 2018 Miroslav Suchý 28.4-1 +- requires distribution-gpg-keys with opensuse keys +- Add initial openSUSE distribution targets (ngompa13@gmail.com) +- provide fedora-29 configs as symlinks to fedora-rawhide +- use cp instead of install to preserve symlinks +- use correct url for local repos for s390x for F27+ [RHBZ#1553678] +- add CentOS SCL repositories to EPEL 7 (aarch64 & ppc64le) + (tmz@pobox.com) + * Thu Mar 01 2018 Miroslav Suchý 28.3-1 - bump up releasever in rawhide configs - add CentOS SCL repositories to EPEL 6 & 7 (x86_64) diff --git a/sources b/sources index 3956d92..80b18a8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-28.3.tar.gz) = e1fb421076fab0696b27baf0f67fe87421c8550944ab285c6e2cf86cf147bdc5775f7c741fe1128946e167b3acc4116526c82c83faf3ad059220b71e41ffde04 +SHA512 (mock-core-configs-28.4.tar.gz) = 2980e25ebf2460bb2a72da05f3cffae90fba1aa2250fddd5dc8d0cb0136f02c3200e72932584d4762b3800d4a2d2af1ca7ca77bf7d41f8a25360fd52d8ed4799 From 9c36c9dcd6b68f092a41fdfc541c5ef05bdc2d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 2 May 2018 09:16:47 +0200 Subject: [PATCH 017/122] Update mock-core-configs to 28.4-1 --- .gitignore | 1 + mock-core-configs.spec | 15 ++++++++++++--- sources | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 318e81c..065d86e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /mock-core-configs-28.1.tar.gz /mock-core-configs-28.2.tar.gz /mock-core-configs-28.3.tar.gz +/mock-core-configs-28.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index d31a3a0..6ffed18 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 28.3 +Version: 28.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.15 +Requires: distribution-gpg-keys >= 1.21 Requires(pre): shadow-utils Requires(post): coreutils @@ -53,7 +53,7 @@ Config files which allow you to create chroots for: %install mkdir -p %{buildroot}%{_sysconfdir}/mock -install -pm 0644 etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock +cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock # generate files section with config - there is many of them echo "%defattr(0644, root, mock)" > %{name}.cfgs @@ -119,6 +119,15 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed May 02 2018 Miroslav Suchý 28.4-1 +- requires distribution-gpg-keys with opensuse keys +- Add initial openSUSE distribution targets (ngompa13@gmail.com) +- provide fedora-29 configs as symlinks to fedora-rawhide +- use cp instead of install to preserve symlinks +- use correct url for local repos for s390x for F27+ [RHBZ#1553678] +- add CentOS SCL repositories to EPEL 7 (aarch64 & ppc64le) + (tmz@pobox.com) + * Thu Mar 01 2018 Miroslav Suchý 28.3-1 - bump up releasever in rawhide configs - add CentOS SCL repositories to EPEL 6 & 7 (x86_64) diff --git a/sources b/sources index 3956d92..80b18a8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-28.3.tar.gz) = e1fb421076fab0696b27baf0f67fe87421c8550944ab285c6e2cf86cf147bdc5775f7c741fe1128946e167b3acc4116526c82c83faf3ad059220b71e41ffde04 +SHA512 (mock-core-configs-28.4.tar.gz) = 2980e25ebf2460bb2a72da05f3cffae90fba1aa2250fddd5dc8d0cb0136f02c3200e72932584d4762b3800d4a2d2af1ca7ca77bf7d41f8a25360fd52d8ed4799 From 426616e33fb06bd4a644558d72751274825db77d Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 02:03:15 -0500 Subject: [PATCH 018/122] Remove needless use of %defattr --- mock-core-configs.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 6ffed18..7fe4c54 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -113,7 +113,6 @@ fi %files -f %{name}.cfgs -%defattr(-, root, root, -) %license COPYING %dir %{_sysconfdir}/mock %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg From 33b3b1aaa096706661ba8471aef879515a7f9e3b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 10:50:25 +0000 Subject: [PATCH 019/122] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 7fe4c54..0196271 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ Name: mock-core-configs Version: 28.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -118,6 +118,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 28.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed May 02 2018 Miroslav Suchý 28.4-1 - requires distribution-gpg-keys with opensuse keys - Add initial openSUSE distribution targets (ngompa13@gmail.com) From 8168293b3b00bd1154b8ea9088a678542cb1d969 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 13 Aug 2018 16:56:51 +0200 Subject: [PATCH 020/122] Update mock-core-configs to 29.1-1 --- .gitignore | 1 + mock-core-configs.spec | 14 +++++++++----- sources | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 065d86e..3039ef3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /mock-core-configs-28.2.tar.gz /mock-core-configs-28.3.tar.gz /mock-core-configs-28.4.tar.gz +/mock-core-configs-29.1.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 0196271..c616029 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 28.4 -Release: 2%{?dist} +Version: 29.1 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.21 +Requires: distribution-gpg-keys >= 1.22 Requires(pre): shadow-utils Requires(post): coreutils @@ -42,6 +42,7 @@ Config files which allow you to create chroots for: * Epel * Mageia * Custom chroot + * OpenSuse Tumbleweed and Leap %prep %setup -q @@ -118,8 +119,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Fri Jul 13 2018 Fedora Release Engineering - 28.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild +* Mon Aug 13 2018 Miroslav Suchý 29.1-1 +- add fedora 29 configs and change rawhide to F30 +- defattr is not needed since rpm 4.2 +- Replace armv5tl with aarch64 for Mageia Cauldron (ngompa13@gmail.com) +- check gpg keys for rawhide * Wed May 02 2018 Miroslav Suchý 28.4-1 - requires distribution-gpg-keys with opensuse keys diff --git a/sources b/sources index 80b18a8..1614495 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-28.4.tar.gz) = 2980e25ebf2460bb2a72da05f3cffae90fba1aa2250fddd5dc8d0cb0136f02c3200e72932584d4762b3800d4a2d2af1ca7ca77bf7d41f8a25360fd52d8ed4799 +SHA512 (mock-core-configs-29.1.tar.gz) = ecce26dd4020a506dc4761610bfa957fe1896b9146b69ff8a36f72c66de6f2cf26e3909e18bdcc14a3f6c1e5678018f7bc0368f5279548736372dfe78d585cf9 From 95ec2c693195c74c3426d74c77584075710a96fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 13 Aug 2018 17:00:13 +0200 Subject: [PATCH 021/122] Update mock-core-configs to 29.1-1 --- .gitignore | 1 + mock-core-configs.spec | 12 +++++++++--- sources | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 065d86e..3039ef3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /mock-core-configs-28.2.tar.gz /mock-core-configs-28.3.tar.gz /mock-core-configs-28.4.tar.gz +/mock-core-configs-29.1.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 6ffed18..c616029 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 28.4 +Version: 29.1 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.21 +Requires: distribution-gpg-keys >= 1.22 Requires(pre): shadow-utils Requires(post): coreutils @@ -42,6 +42,7 @@ Config files which allow you to create chroots for: * Epel * Mageia * Custom chroot + * OpenSuse Tumbleweed and Leap %prep %setup -q @@ -113,12 +114,17 @@ fi %files -f %{name}.cfgs -%defattr(-, root, root, -) %license COPYING %dir %{_sysconfdir}/mock %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Aug 13 2018 Miroslav Suchý 29.1-1 +- add fedora 29 configs and change rawhide to F30 +- defattr is not needed since rpm 4.2 +- Replace armv5tl with aarch64 for Mageia Cauldron (ngompa13@gmail.com) +- check gpg keys for rawhide + * Wed May 02 2018 Miroslav Suchý 28.4-1 - requires distribution-gpg-keys with opensuse keys - Add initial openSUSE distribution targets (ngompa13@gmail.com) diff --git a/sources b/sources index 80b18a8..1614495 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-28.4.tar.gz) = 2980e25ebf2460bb2a72da05f3cffae90fba1aa2250fddd5dc8d0cb0136f02c3200e72932584d4762b3800d4a2d2af1ca7ca77bf7d41f8a25360fd52d8ed4799 +SHA512 (mock-core-configs-29.1.tar.gz) = ecce26dd4020a506dc4761610bfa957fe1896b9146b69ff8a36f72c66de6f2cf26e3909e18bdcc14a3f6c1e5678018f7bc0368f5279548736372dfe78d585cf9 From 20ec617146330872693e257ac4cf6091cccdbb3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 16 Aug 2018 16:44:52 +0200 Subject: [PATCH 022/122] Update mock-core-configs to 29.2-1 --- .gitignore | 1 + mock-core-configs.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3039ef3..610794b 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /mock-core-configs-28.3.tar.gz /mock-core-configs-28.4.tar.gz /mock-core-configs-29.1.tar.gz +/mock-core-configs-29.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index c616029..929ce1d 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 29.1 +Version: 29.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -119,6 +119,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Aug 16 2018 Miroslav Suchý 29.2-1 +- add gpg keys for release rawhide-1 (msuchy@redhat.com) + * Mon Aug 13 2018 Miroslav Suchý 29.1-1 - add fedora 29 configs and change rawhide to F30 - defattr is not needed since rpm 4.2 diff --git a/sources b/sources index 1614495..03306e7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-29.1.tar.gz) = ecce26dd4020a506dc4761610bfa957fe1896b9146b69ff8a36f72c66de6f2cf26e3909e18bdcc14a3f6c1e5678018f7bc0368f5279548736372dfe78d585cf9 +SHA512 (mock-core-configs-29.2.tar.gz) = 2f37d6f557164aa4f7674115026c478f961ea2efedbd34d083ea372f8a0e15d57f127065b23099f21e1b412ea7f64ea4da7e6f6d135663d3bfac4de53c37fdaa From a229a37d7a037a65895d890f94cfc745a4f067f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 16 Aug 2018 16:50:04 +0200 Subject: [PATCH 023/122] Update mock-core-configs to 29.2-1 --- .gitignore | 1 + mock-core-configs.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3039ef3..610794b 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /mock-core-configs-28.3.tar.gz /mock-core-configs-28.4.tar.gz /mock-core-configs-29.1.tar.gz +/mock-core-configs-29.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index c616029..929ce1d 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 29.1 +Version: 29.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -119,6 +119,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Aug 16 2018 Miroslav Suchý 29.2-1 +- add gpg keys for release rawhide-1 (msuchy@redhat.com) + * Mon Aug 13 2018 Miroslav Suchý 29.1-1 - add fedora 29 configs and change rawhide to F30 - defattr is not needed since rpm 4.2 diff --git a/sources b/sources index 1614495..03306e7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-29.1.tar.gz) = ecce26dd4020a506dc4761610bfa957fe1896b9146b69ff8a36f72c66de6f2cf26e3909e18bdcc14a3f6c1e5678018f7bc0368f5279548736372dfe78d585cf9 +SHA512 (mock-core-configs-29.2.tar.gz) = 2f37d6f557164aa4f7674115026c478f961ea2efedbd34d083ea372f8a0e15d57f127065b23099f21e1b412ea7f64ea4da7e6f6d135663d3bfac4de53c37fdaa From fa9d7b9191d2a5759908c7a1bf6f9995b254a966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 15 Nov 2018 22:36:04 +0100 Subject: [PATCH 024/122] Update mock-core-configs to 29.3-1 --- .gitignore | 1 + mock-core-configs.spec | 14 +++++++++++--- sources | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 610794b..f00e3c7 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /mock-core-configs-28.4.tar.gz /mock-core-configs-29.1.tar.gz /mock-core-configs-29.2.tar.gz +/mock-core-configs-29.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 929ce1d..9b9d107 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 29.2 +Version: 29.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.22 +Requires: distribution-gpg-keys >= 1.25 Requires(pre): shadow-utils Requires(post): coreutils @@ -53,8 +53,9 @@ Config files which allow you to create chroots for: %install -mkdir -p %{buildroot}%{_sysconfdir}/mock +mkdir -p %{buildroot}%{_sysconfdir}/mock/eol cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock +cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol # generate files section with config - there is many of them echo "%defattr(0644, root, mock)" > %{name}.cfgs @@ -116,9 +117,16 @@ fi %files -f %{name}.cfgs %license COPYING %dir %{_sysconfdir}/mock +%dir %{_sysconfdir}/mock/eol %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Nov 15 2018 Miroslav Suchý 29.3-1 +- add rhelbeta-8-* configs +- move EOLed configs to /etc/mock/eol directory +- Add source repos to all fedora configs (sfowler@redhat.com) +- add epel-7-ppc64.cfg + * Thu Aug 16 2018 Miroslav Suchý 29.2-1 - add gpg keys for release rawhide-1 (msuchy@redhat.com) diff --git a/sources b/sources index 03306e7..e4f40e1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-29.2.tar.gz) = 2f37d6f557164aa4f7674115026c478f961ea2efedbd34d083ea372f8a0e15d57f127065b23099f21e1b412ea7f64ea4da7e6f6d135663d3bfac4de53c37fdaa +SHA512 (mock-core-configs-29.3.tar.gz) = ac319bfd09f07ecfa081dbd4dd312a8f67124d6d8a12c17ebe9ed06e65da368e1e24fbf82d831cc0282d641f280e939e3bfb13c3a0d9b87e227f73c7228efc51 From 3ccb246295ecf9c3b614af075ad23ca3288929c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 15 Nov 2018 22:38:50 +0100 Subject: [PATCH 025/122] Update mock-core-configs to 29.3-1 --- .gitignore | 1 + mock-core-configs.spec | 14 +++++++++++--- sources | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 610794b..f00e3c7 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /mock-core-configs-28.4.tar.gz /mock-core-configs-29.1.tar.gz /mock-core-configs-29.2.tar.gz +/mock-core-configs-29.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 929ce1d..9b9d107 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 29.2 +Version: 29.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.22 +Requires: distribution-gpg-keys >= 1.25 Requires(pre): shadow-utils Requires(post): coreutils @@ -53,8 +53,9 @@ Config files which allow you to create chroots for: %install -mkdir -p %{buildroot}%{_sysconfdir}/mock +mkdir -p %{buildroot}%{_sysconfdir}/mock/eol cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock +cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol # generate files section with config - there is many of them echo "%defattr(0644, root, mock)" > %{name}.cfgs @@ -116,9 +117,16 @@ fi %files -f %{name}.cfgs %license COPYING %dir %{_sysconfdir}/mock +%dir %{_sysconfdir}/mock/eol %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Nov 15 2018 Miroslav Suchý 29.3-1 +- add rhelbeta-8-* configs +- move EOLed configs to /etc/mock/eol directory +- Add source repos to all fedora configs (sfowler@redhat.com) +- add epel-7-ppc64.cfg + * Thu Aug 16 2018 Miroslav Suchý 29.2-1 - add gpg keys for release rawhide-1 (msuchy@redhat.com) diff --git a/sources b/sources index 03306e7..e4f40e1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-29.2.tar.gz) = 2f37d6f557164aa4f7674115026c478f961ea2efedbd34d083ea372f8a0e15d57f127065b23099f21e1b412ea7f64ea4da7e6f6d135663d3bfac4de53c37fdaa +SHA512 (mock-core-configs-29.3.tar.gz) = ac319bfd09f07ecfa081dbd4dd312a8f67124d6d8a12c17ebe9ed06e65da368e1e24fbf82d831cc0282d641f280e939e3bfb13c3a0d9b87e227f73c7228efc51 From 5fac974f793a20c7fe0152bca5dffa490cb0020d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 16 Nov 2018 12:28:20 +0100 Subject: [PATCH 026/122] Update mock-core-configs to 29.4-1 --- .gitignore | 1 + mock-core-configs.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f00e3c7..01e3bf5 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /mock-core-configs-29.1.tar.gz /mock-core-configs-29.2.tar.gz /mock-core-configs-29.3.tar.gz +/mock-core-configs-29.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 9b9d107..9869c7e 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 29.3 +Version: 29.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.25 +Requires: distribution-gpg-keys >= 1.26 Requires(pre): shadow-utils Requires(post): coreutils @@ -121,6 +121,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Nov 16 2018 Miroslav Suchý 29.4-1 +- use correct gpg keys for rhelbeta-8 +- add virtual platform module + * Thu Nov 15 2018 Miroslav Suchý 29.3-1 - add rhelbeta-8-* configs - move EOLed configs to /etc/mock/eol directory diff --git a/sources b/sources index e4f40e1..9b711ea 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-29.3.tar.gz) = ac319bfd09f07ecfa081dbd4dd312a8f67124d6d8a12c17ebe9ed06e65da368e1e24fbf82d831cc0282d641f280e939e3bfb13c3a0d9b87e227f73c7228efc51 +SHA512 (mock-core-configs-29.4.tar.gz) = 5a740e35b95044211e425639847c16ec87d3da1057ce2cfeef7b6fc0a5cb5cf02f2912fd30606967cff5cb4a6e204f1c8b82e9fb4fc5f0237217c22733b7ab7d From 2f4348150976b7ed6f6f3f0600958ddf4b3a40bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 16 Nov 2018 12:29:33 +0100 Subject: [PATCH 027/122] Update mock-core-configs to 29.4-1 --- .gitignore | 1 + mock-core-configs.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f00e3c7..01e3bf5 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /mock-core-configs-29.1.tar.gz /mock-core-configs-29.2.tar.gz /mock-core-configs-29.3.tar.gz +/mock-core-configs-29.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 9b9d107..9869c7e 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 29.3 +Version: 29.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.25 +Requires: distribution-gpg-keys >= 1.26 Requires(pre): shadow-utils Requires(post): coreutils @@ -121,6 +121,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Nov 16 2018 Miroslav Suchý 29.4-1 +- use correct gpg keys for rhelbeta-8 +- add virtual platform module + * Thu Nov 15 2018 Miroslav Suchý 29.3-1 - add rhelbeta-8-* configs - move EOLed configs to /etc/mock/eol directory diff --git a/sources b/sources index e4f40e1..9b711ea 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-29.3.tar.gz) = ac319bfd09f07ecfa081dbd4dd312a8f67124d6d8a12c17ebe9ed06e65da368e1e24fbf82d831cc0282d641f280e939e3bfb13c3a0d9b87e227f73c7228efc51 +SHA512 (mock-core-configs-29.4.tar.gz) = 5a740e35b95044211e425639847c16ec87d3da1057ce2cfeef7b6fc0a5cb5cf02f2912fd30606967cff5cb4a6e204f1c8b82e9fb4fc5f0237217c22733b7ab7d From 77d78227efba0d19c93a9c5fa3f4fa2e56c4c66c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 11:12:43 +0000 Subject: [PATCH 028/122] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 9869c7e..e20bef6 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ Name: mock-core-configs Version: 29.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -121,6 +121,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 29.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Nov 16 2018 Miroslav Suchý 29.4-1 - use correct gpg keys for rhelbeta-8 - add virtual platform module From 268a782b49aa7a0eb76c33e79570e7088d8b8836 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Tue, 19 Feb 2019 11:26:47 +0100 Subject: [PATCH 029/122] Update mock-core-configs to 30.1-1 --- .gitignore | 1 + mock-core-configs.spec | 20 +++++++++++++++----- sources | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 01e3bf5..2c6b976 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /mock-core-configs-29.2.tar.gz /mock-core-configs-29.3.tar.gz /mock-core-configs-29.4.tar.gz +/mock-core-configs-30.1.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index e20bef6..7f590d8 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 29.4 -Release: 2%{?dist} +Version: 30.1 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.26 +Requires: distribution-gpg-keys >= 1.29 Requires(pre): shadow-utils Requires(post): coreutils @@ -121,8 +121,18 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Fri Feb 01 2019 Fedora Release Engineering - 29.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild +* Tue Feb 19 2019 Miroslav Suchý 30.1-1 +- default for config['decompress_program'] (praiskup@redhat.com) +- require recent distribution-gpg-keys which has F31 key +- add examples how to enable/install module in F29+ configs +- add module_platform_id +- add modular repos +- enable gpgcheck for debuginfo for rawhide +- enable gpgcheck for testing and debuginfo for F30 +- EOL Fedora 27 configs +- remove mdpolicy from F30 +- add Fedora 30 configs +- add link to distribution-gpg-keys for rhel8 bootstrap * Fri Nov 16 2018 Miroslav Suchý 29.4-1 - use correct gpg keys for rhelbeta-8 diff --git a/sources b/sources index 9b711ea..29c9a0c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-29.4.tar.gz) = 5a740e35b95044211e425639847c16ec87d3da1057ce2cfeef7b6fc0a5cb5cf02f2912fd30606967cff5cb4a6e204f1c8b82e9fb4fc5f0237217c22733b7ab7d +SHA512 (mock-core-configs-30.1.tar.gz) = c409beed25c04a98c9c05bc958b3e2aa79498dc1cde2a33896e22e3678c5b2d5cfc5fab7d930c2c845abd6d1b02078c798164d180f8831bec40d3e8d1143ede9 From d10408611e4e6c0046c348aae0016dedd1d5c61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Tue, 19 Feb 2019 12:08:29 +0100 Subject: [PATCH 030/122] Update mock-core-configs to 30.1-1 --- .gitignore | 1 + mock-core-configs.spec | 17 +++++++++++++++-- sources | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 01e3bf5..2c6b976 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /mock-core-configs-29.2.tar.gz /mock-core-configs-29.3.tar.gz /mock-core-configs-29.4.tar.gz +/mock-core-configs-30.1.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 9869c7e..7f590d8 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 29.4 +Version: 30.1 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{nam BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.26 +Requires: distribution-gpg-keys >= 1.29 Requires(pre): shadow-utils Requires(post): coreutils @@ -121,6 +121,19 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Tue Feb 19 2019 Miroslav Suchý 30.1-1 +- default for config['decompress_program'] (praiskup@redhat.com) +- require recent distribution-gpg-keys which has F31 key +- add examples how to enable/install module in F29+ configs +- add module_platform_id +- add modular repos +- enable gpgcheck for debuginfo for rawhide +- enable gpgcheck for testing and debuginfo for F30 +- EOL Fedora 27 configs +- remove mdpolicy from F30 +- add Fedora 30 configs +- add link to distribution-gpg-keys for rhel8 bootstrap + * Fri Nov 16 2018 Miroslav Suchý 29.4-1 - use correct gpg keys for rhelbeta-8 - add virtual platform module diff --git a/sources b/sources index 9b711ea..29c9a0c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-29.4.tar.gz) = 5a740e35b95044211e425639847c16ec87d3da1057ce2cfeef7b6fc0a5cb5cf02f2912fd30606967cff5cb4a6e204f1c8b82e9fb4fc5f0237217c22733b7ab7d +SHA512 (mock-core-configs-30.1.tar.gz) = c409beed25c04a98c9c05bc958b3e2aa79498dc1cde2a33896e22e3678c5b2d5cfc5fab7d930c2c845abd6d1b02078c798164d180f8831bec40d3e8d1143ede9 From 7c816c78884d2e55a07ad5006d298899d0452186 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 1 Mar 2019 11:45:58 +0100 Subject: [PATCH 031/122] Update mock-core-configs to 30.2-1 --- .gitignore | 1 + mock-core-configs.spec | 10 +++++++++- sources | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2c6b976..72b96a8 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /mock-core-configs-29.3.tar.gz /mock-core-configs-29.4.tar.gz /mock-core-configs-30.1.tar.gz +/mock-core-configs-30.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 7f590d8..931a657 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 30.1 +Version: 30.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -121,6 +121,14 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Mar 01 2019 Miroslav Suchý 30.2-1 +- disable modular repos +- Add openSUSE Leap AArch64 configs (ngompa13@gmail.com) +- Add openSUSE Leap 15.1 configuration (ngompa13@gmail.com) +- Bump releasever in Cauldron to 8 and create symlinks to cauldron configs + (ngompa13@gmail.com) +- Add Mageia 7 configs (ngompa13@gmail.com) + * Tue Feb 19 2019 Miroslav Suchý 30.1-1 - default for config['decompress_program'] (praiskup@redhat.com) - require recent distribution-gpg-keys which has F31 key diff --git a/sources b/sources index 29c9a0c..746dd58 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.1.tar.gz) = c409beed25c04a98c9c05bc958b3e2aa79498dc1cde2a33896e22e3678c5b2d5cfc5fab7d930c2c845abd6d1b02078c798164d180f8831bec40d3e8d1143ede9 +SHA512 (mock-core-configs-30.2.tar.gz) = 1247a80e4414a1ae61fcda0070e0e95ff6eb720bade17270dd0f5d9e271f004dd793099d8544f91d73aada6fb6e7ba6806becc60f70dd23ad02e181fa750bff0 From edace6611f6d1214d5ce5fe07b012ec66688e4af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 1 Mar 2019 11:49:32 +0100 Subject: [PATCH 032/122] Update mock-core-configs to 30.2-1 --- .gitignore | 1 + mock-core-configs.spec | 10 +++++++++- sources | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2c6b976..72b96a8 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /mock-core-configs-29.3.tar.gz /mock-core-configs-29.4.tar.gz /mock-core-configs-30.1.tar.gz +/mock-core-configs-30.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 7f590d8..931a657 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 30.1 +Version: 30.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -121,6 +121,14 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Mar 01 2019 Miroslav Suchý 30.2-1 +- disable modular repos +- Add openSUSE Leap AArch64 configs (ngompa13@gmail.com) +- Add openSUSE Leap 15.1 configuration (ngompa13@gmail.com) +- Bump releasever in Cauldron to 8 and create symlinks to cauldron configs + (ngompa13@gmail.com) +- Add Mageia 7 configs (ngompa13@gmail.com) + * Tue Feb 19 2019 Miroslav Suchý 30.1-1 - default for config['decompress_program'] (praiskup@redhat.com) - require recent distribution-gpg-keys which has F31 key diff --git a/sources b/sources index 29c9a0c..746dd58 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.1.tar.gz) = c409beed25c04a98c9c05bc958b3e2aa79498dc1cde2a33896e22e3678c5b2d5cfc5fab7d930c2c845abd6d1b02078c798164d180f8831bec40d3e8d1143ede9 +SHA512 (mock-core-configs-30.2.tar.gz) = 1247a80e4414a1ae61fcda0070e0e95ff6eb720bade17270dd0f5d9e271f004dd793099d8544f91d73aada6fb6e7ba6806becc60f70dd23ad02e181fa750bff0 From d5f57f9847fbf7524cd842739acd86d97081c575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 16 May 2019 13:35:10 +0200 Subject: [PATCH 033/122] Update mock-core-configs to 30.3-1 --- .gitignore | 1 + mock-core-configs.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 72b96a8..50f77cb 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /mock-core-configs-29.4.tar.gz /mock-core-configs-30.1.tar.gz /mock-core-configs-30.2.tar.gz +/mock-core-configs-30.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 931a657..e40af52 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 30.2 +Version: 30.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -121,6 +121,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu May 16 2019 Miroslav Suchý 30.3-1 +- Allow AArch64 systems to build 32-bit ARM packages (ngompa13@gmail.com) +- Fix openSUSE Tumbleweed DistTag definition (ngompa13@gmail.com) + * Fri Mar 01 2019 Miroslav Suchý 30.2-1 - disable modular repos - Add openSUSE Leap AArch64 configs (ngompa13@gmail.com) diff --git a/sources b/sources index 746dd58..28e25e9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.2.tar.gz) = 1247a80e4414a1ae61fcda0070e0e95ff6eb720bade17270dd0f5d9e271f004dd793099d8544f91d73aada6fb6e7ba6806becc60f70dd23ad02e181fa750bff0 +SHA512 (mock-core-configs-30.3.tar.gz) = 09ad0c269487a6a1629445b95026da50433c79b4f624e42e4574784c2ef15c2458749cbb0d2bacf5326b41ba15f7820af56e4256cb6812b5c2ba0df308bd4da6 From 83cf9e7e2954299ed5fb2a17a4c05f79d6c97094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 16 May 2019 13:36:26 +0200 Subject: [PATCH 034/122] Update mock-core-configs to 30.3-1 --- .gitignore | 1 + mock-core-configs.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 72b96a8..50f77cb 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /mock-core-configs-29.4.tar.gz /mock-core-configs-30.1.tar.gz /mock-core-configs-30.2.tar.gz +/mock-core-configs-30.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 931a657..e40af52 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 30.2 +Version: 30.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -121,6 +121,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu May 16 2019 Miroslav Suchý 30.3-1 +- Allow AArch64 systems to build 32-bit ARM packages (ngompa13@gmail.com) +- Fix openSUSE Tumbleweed DistTag definition (ngompa13@gmail.com) + * Fri Mar 01 2019 Miroslav Suchý 30.2-1 - disable modular repos - Add openSUSE Leap AArch64 configs (ngompa13@gmail.com) diff --git a/sources b/sources index 746dd58..28e25e9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.2.tar.gz) = 1247a80e4414a1ae61fcda0070e0e95ff6eb720bade17270dd0f5d9e271f004dd793099d8544f91d73aada6fb6e7ba6806becc60f70dd23ad02e181fa750bff0 +SHA512 (mock-core-configs-30.3.tar.gz) = 09ad0c269487a6a1629445b95026da50433c79b4f624e42e4574784c2ef15c2458749cbb0d2bacf5326b41ba15f7820af56e4256cb6812b5c2ba0df308bd4da6 From 14d70b5b7f40156fcb987df0f8103198129f4cc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 6 Jun 2019 22:02:23 +0200 Subject: [PATCH 035/122] Update mock-core-configs to 30.4-1 --- .gitignore | 1 + mock-core-configs.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 50f77cb..9b1a304 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /mock-core-configs-30.1.tar.gz /mock-core-configs-30.2.tar.gz /mock-core-configs-30.3.tar.gz +/mock-core-configs-30.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index e40af52..d3813c9 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 30.3 +Version: 30.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -121,6 +121,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Jun 06 2019 Miroslav Suchý 30.4-1 +- Add 'fastestmirror=1' to Mageia mock configs (ngompa13@gmail.com) +- bootstrap: disable sclo* repos for epel --installroot (praiskup@redhat.com) +- drop Fedora ppc64 configs [RHBZ#1714489] + * Thu May 16 2019 Miroslav Suchý 30.3-1 - Allow AArch64 systems to build 32-bit ARM packages (ngompa13@gmail.com) - Fix openSUSE Tumbleweed DistTag definition (ngompa13@gmail.com) diff --git a/sources b/sources index 28e25e9..2482a5b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.3.tar.gz) = 09ad0c269487a6a1629445b95026da50433c79b4f624e42e4574784c2ef15c2458749cbb0d2bacf5326b41ba15f7820af56e4256cb6812b5c2ba0df308bd4da6 +SHA512 (mock-core-configs-30.4.tar.gz) = 4db1fd1b89a4f811afa1336dabc0e22fc4f8daa739e98a85d3b7e40eb051fe4d9b8b506643fd5f16ff9e91972d6b6e32cbbe48792dc02974f60b67b53f5ce3aa From 8291b6b8134f68bab594b084358514b1676ab2cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 6 Jun 2019 22:05:20 +0200 Subject: [PATCH 036/122] Update mock-core-configs to 30.4-1 --- .gitignore | 1 + mock-core-configs.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 50f77cb..9b1a304 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /mock-core-configs-30.1.tar.gz /mock-core-configs-30.2.tar.gz /mock-core-configs-30.3.tar.gz +/mock-core-configs-30.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index e40af52..d3813c9 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 30.3 +Version: 30.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -121,6 +121,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Jun 06 2019 Miroslav Suchý 30.4-1 +- Add 'fastestmirror=1' to Mageia mock configs (ngompa13@gmail.com) +- bootstrap: disable sclo* repos for epel --installroot (praiskup@redhat.com) +- drop Fedora ppc64 configs [RHBZ#1714489] + * Thu May 16 2019 Miroslav Suchý 30.3-1 - Allow AArch64 systems to build 32-bit ARM packages (ngompa13@gmail.com) - Fix openSUSE Tumbleweed DistTag definition (ngompa13@gmail.com) diff --git a/sources b/sources index 28e25e9..2482a5b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.3.tar.gz) = 09ad0c269487a6a1629445b95026da50433c79b4f624e42e4574784c2ef15c2458749cbb0d2bacf5326b41ba15f7820af56e4256cb6812b5c2ba0df308bd4da6 +SHA512 (mock-core-configs-30.4.tar.gz) = 4db1fd1b89a4f811afa1336dabc0e22fc4f8daa739e98a85d3b7e40eb051fe4d9b8b506643fd5f16ff9e91972d6b6e32cbbe48792dc02974f60b67b53f5ce3aa From 3380751e62b14abe132f12d76a612aefb094b925 Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Fri, 19 Jul 2019 11:50:26 -0400 Subject: [PATCH 037/122] "Adding package.cfg file" --- package.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 package.cfg diff --git a/package.cfg b/package.cfg new file mode 100644 index 0000000..66ea79d --- /dev/null +++ b/package.cfg @@ -0,0 +1,2 @@ +[koji] +targets = epel8 epel8-playground \ No newline at end of file From 2993b1c784cfca25af528594c4d5d56e66573eb6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 17:26:24 +0000 Subject: [PATCH 038/122] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index d3813c9..4ca6310 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ Name: mock-core-configs Version: 30.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -121,6 +121,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 30.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jun 06 2019 Miroslav Suchý 30.4-1 - Add 'fastestmirror=1' to Mageia mock configs (ngompa13@gmail.com) - bootstrap: disable sclo* repos for epel --installroot (praiskup@redhat.com) From 07092d9324299022d570ca549f4c6d10f42cfc0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 8 Aug 2019 14:08:14 +0200 Subject: [PATCH 039/122] Update mock-core-configs to 30.5-1 --- .gitignore | 1 + mock-core-configs.spec | 35 ++++++++++++++++++++++++++++++----- sources | 2 +- 3 files changed, 32 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 9b1a304..397e16a 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /mock-core-configs-30.2.tar.gz /mock-core-configs-30.3.tar.gz /mock-core-configs-30.4.tar.gz +/mock-core-configs-30.5.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 4ca6310..4783005 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 30.4 -Release: 2%{?dist} +Version: 30.5 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -19,8 +19,10 @@ BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs Requires: distribution-gpg-keys >= 1.29 -Requires(pre): shadow-utils Requires(post): coreutils +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +BuildRequires: systemd-rpm-macros +%endif %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg Requires(post): python3-dnf @@ -30,6 +32,7 @@ Requires(post): python3 Requires(post): sed %endif %if 0%{?rhel} && 0%{?rhel} <= 7 +Requires(pre): shadow-utils # to detect correct default.cfg Requires(post): python Requires(post): yum @@ -53,6 +56,11 @@ Config files which allow you to create chroots for: %install +mkdir -p %{buildroot}%{_sysusersdir} +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +cp -a mock.conf %{buildroot}%{_sysusersdir} +%endif + mkdir -p %{buildroot}%{_sysconfdir}/mock/eol cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol @@ -71,10 +79,15 @@ elif [ -d %{buildroot}%{_sysconfdir}/bash_completion.d ]; then echo %{_sysconfdir}/bash_completion.d/mock >> %{name}.cfgs fi + %pre +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +%sysusers_create_package mock mock.conf +%else # check for existence of mock group, create it if not found getent group mock > /dev/null || groupadd -f -g %mockgid -r mock exit 0 +%endif %post if [ -s /etc/os-release ]; then @@ -116,13 +129,25 @@ fi %files -f %{name}.cfgs %license COPYING +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +%{_sysusersdir}/mock.conf +%endif %dir %{_sysconfdir}/mock %dir %{_sysconfdir}/mock/eol %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Thu Jul 25 2019 Fedora Release Engineering - 30.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild +* Thu Aug 08 2019 Miroslav Suchý 30.5-1 +- disable updates-modulare repos for now +- buildrequire systemd-srpm-macros to get _sysusersdir +- removed info about metadata expire (khoidinhtrinh@gmail.com) +- added updates-modular to 29 and 30 (khoidinhtrinh@gmail.com) +- replace groupadd using sysusers.d +- core-configs: epel-7 profiles to use mirrorlists (praiskup@redhat.com) +- EOL Fedora 28 +- do not protect packages in chroot [GH#286] +- Fix value for dist for OpenMandriva 4.0 configs (ngompa13@gmail.com) +- Add initial OpenMandriva distribution targets (ngompa13@gmail.com) * Thu Jun 06 2019 Miroslav Suchý 30.4-1 - Add 'fastestmirror=1' to Mageia mock configs (ngompa13@gmail.com) diff --git a/sources b/sources index 2482a5b..6a6974a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.4.tar.gz) = 4db1fd1b89a4f811afa1336dabc0e22fc4f8daa739e98a85d3b7e40eb051fe4d9b8b506643fd5f16ff9e91972d6b6e32cbbe48792dc02974f60b67b53f5ce3aa +SHA512 (mock-core-configs-30.5.tar.gz) = 218440fb9b8b9ea1b7c9a4c61deb3d6f9bec9ff01d6b87fadb1c54c9f9a1ef71b0169e997ae59064e1c5967bd4af52e6331c227e752dbbb5b0ba778bc8ab509f From 756391f542346bc75986b787b77cfb059cd434da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 8 Aug 2019 14:09:27 +0200 Subject: [PATCH 040/122] Update mock-core-configs to 30.5-1 --- .gitignore | 1 + mock-core-configs.spec | 32 ++++++++++++++++++++++++++++++-- sources | 2 +- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9b1a304..397e16a 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /mock-core-configs-30.2.tar.gz /mock-core-configs-30.3.tar.gz /mock-core-configs-30.4.tar.gz +/mock-core-configs-30.5.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index d3813c9..4783005 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 30.4 +Version: 30.5 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -19,8 +19,10 @@ BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs Requires: distribution-gpg-keys >= 1.29 -Requires(pre): shadow-utils Requires(post): coreutils +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +BuildRequires: systemd-rpm-macros +%endif %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg Requires(post): python3-dnf @@ -30,6 +32,7 @@ Requires(post): python3 Requires(post): sed %endif %if 0%{?rhel} && 0%{?rhel} <= 7 +Requires(pre): shadow-utils # to detect correct default.cfg Requires(post): python Requires(post): yum @@ -53,6 +56,11 @@ Config files which allow you to create chroots for: %install +mkdir -p %{buildroot}%{_sysusersdir} +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +cp -a mock.conf %{buildroot}%{_sysusersdir} +%endif + mkdir -p %{buildroot}%{_sysconfdir}/mock/eol cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol @@ -71,10 +79,15 @@ elif [ -d %{buildroot}%{_sysconfdir}/bash_completion.d ]; then echo %{_sysconfdir}/bash_completion.d/mock >> %{name}.cfgs fi + %pre +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +%sysusers_create_package mock mock.conf +%else # check for existence of mock group, create it if not found getent group mock > /dev/null || groupadd -f -g %mockgid -r mock exit 0 +%endif %post if [ -s /etc/os-release ]; then @@ -116,11 +129,26 @@ fi %files -f %{name}.cfgs %license COPYING +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +%{_sysusersdir}/mock.conf +%endif %dir %{_sysconfdir}/mock %dir %{_sysconfdir}/mock/eol %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Aug 08 2019 Miroslav Suchý 30.5-1 +- disable updates-modulare repos for now +- buildrequire systemd-srpm-macros to get _sysusersdir +- removed info about metadata expire (khoidinhtrinh@gmail.com) +- added updates-modular to 29 and 30 (khoidinhtrinh@gmail.com) +- replace groupadd using sysusers.d +- core-configs: epel-7 profiles to use mirrorlists (praiskup@redhat.com) +- EOL Fedora 28 +- do not protect packages in chroot [GH#286] +- Fix value for dist for OpenMandriva 4.0 configs (ngompa13@gmail.com) +- Add initial OpenMandriva distribution targets (ngompa13@gmail.com) + * Thu Jun 06 2019 Miroslav Suchý 30.4-1 - Add 'fastestmirror=1' to Mageia mock configs (ngompa13@gmail.com) - bootstrap: disable sclo* repos for epel --installroot (praiskup@redhat.com) diff --git a/sources b/sources index 2482a5b..6a6974a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.4.tar.gz) = 4db1fd1b89a4f811afa1336dabc0e22fc4f8daa739e98a85d3b7e40eb051fe4d9b8b506643fd5f16ff9e91972d6b6e32cbbe48792dc02974f60b67b53f5ce3aa +SHA512 (mock-core-configs-30.5.tar.gz) = 218440fb9b8b9ea1b7c9a4c61deb3d6f9bec9ff01d6b87fadb1c54c9f9a1ef71b0169e997ae59064e1c5967bd4af52e6331c227e752dbbb5b0ba778bc8ab509f From 10d406a83d487920ae4c4e69036ab7ce0d51a2d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 8 Aug 2019 14:12:16 +0200 Subject: [PATCH 041/122] Update mock-core-configs to 30.5-1 --- .gitignore | 1 + mock-core-configs.spec | 32 ++++++++++++++++++++++++++++++-- package.cfg | 2 -- sources | 2 +- 4 files changed, 32 insertions(+), 5 deletions(-) delete mode 100644 package.cfg diff --git a/.gitignore b/.gitignore index 9b1a304..397e16a 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /mock-core-configs-30.2.tar.gz /mock-core-configs-30.3.tar.gz /mock-core-configs-30.4.tar.gz +/mock-core-configs-30.5.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index d3813c9..4783005 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 30.4 +Version: 30.5 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -19,8 +19,10 @@ BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs Requires: distribution-gpg-keys >= 1.29 -Requires(pre): shadow-utils Requires(post): coreutils +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +BuildRequires: systemd-rpm-macros +%endif %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg Requires(post): python3-dnf @@ -30,6 +32,7 @@ Requires(post): python3 Requires(post): sed %endif %if 0%{?rhel} && 0%{?rhel} <= 7 +Requires(pre): shadow-utils # to detect correct default.cfg Requires(post): python Requires(post): yum @@ -53,6 +56,11 @@ Config files which allow you to create chroots for: %install +mkdir -p %{buildroot}%{_sysusersdir} +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +cp -a mock.conf %{buildroot}%{_sysusersdir} +%endif + mkdir -p %{buildroot}%{_sysconfdir}/mock/eol cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol @@ -71,10 +79,15 @@ elif [ -d %{buildroot}%{_sysconfdir}/bash_completion.d ]; then echo %{_sysconfdir}/bash_completion.d/mock >> %{name}.cfgs fi + %pre +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +%sysusers_create_package mock mock.conf +%else # check for existence of mock group, create it if not found getent group mock > /dev/null || groupadd -f -g %mockgid -r mock exit 0 +%endif %post if [ -s /etc/os-release ]; then @@ -116,11 +129,26 @@ fi %files -f %{name}.cfgs %license COPYING +%if 0%{?fedora} > 29 || 0%{?rhel} > 8 +%{_sysusersdir}/mock.conf +%endif %dir %{_sysconfdir}/mock %dir %{_sysconfdir}/mock/eol %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Aug 08 2019 Miroslav Suchý 30.5-1 +- disable updates-modulare repos for now +- buildrequire systemd-srpm-macros to get _sysusersdir +- removed info about metadata expire (khoidinhtrinh@gmail.com) +- added updates-modular to 29 and 30 (khoidinhtrinh@gmail.com) +- replace groupadd using sysusers.d +- core-configs: epel-7 profiles to use mirrorlists (praiskup@redhat.com) +- EOL Fedora 28 +- do not protect packages in chroot [GH#286] +- Fix value for dist for OpenMandriva 4.0 configs (ngompa13@gmail.com) +- Add initial OpenMandriva distribution targets (ngompa13@gmail.com) + * Thu Jun 06 2019 Miroslav Suchý 30.4-1 - Add 'fastestmirror=1' to Mageia mock configs (ngompa13@gmail.com) - bootstrap: disable sclo* repos for epel --installroot (praiskup@redhat.com) diff --git a/package.cfg b/package.cfg deleted file mode 100644 index 66ea79d..0000000 --- a/package.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[koji] -targets = epel8 epel8-playground \ No newline at end of file diff --git a/sources b/sources index 2482a5b..6a6974a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.4.tar.gz) = 4db1fd1b89a4f811afa1336dabc0e22fc4f8daa739e98a85d3b7e40eb051fe4d9b8b506643fd5f16ff9e91972d6b6e32cbbe48792dc02974f60b67b53f5ce3aa +SHA512 (mock-core-configs-30.5.tar.gz) = 218440fb9b8b9ea1b7c9a4c61deb3d6f9bec9ff01d6b87fadb1c54c9f9a1ef71b0169e997ae59064e1c5967bd4af52e6331c227e752dbbb5b0ba778bc8ab509f From d8ae0bed51ee01f8c31b1a426204dc74c804012a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 9 Aug 2019 13:49:03 +0200 Subject: [PATCH 042/122] try gating --- gating.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 gating.yaml diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..fc33efa --- /dev/null +++ b/gating.yaml @@ -0,0 +1,7 @@ +--- !Policy +product_versions: + - fedora-* +decision_context: bodhi_update_push_stable +rules: +- !PassingTestCaseRule {test_case_name: dist.rpmdeplint} +- !PassingTestCaseRule {test_case_name: dist.upgradepath} From 6d55f67ee2048c5bbf639a5e02d519e067217114 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 9 Aug 2019 15:25:25 +0200 Subject: [PATCH 043/122] add initial rpmlintrc --- mock-core-configs.spec.rpmlintrc | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 mock-core-configs.spec.rpmlintrc diff --git a/mock-core-configs.spec.rpmlintrc b/mock-core-configs.spec.rpmlintrc new file mode 100644 index 0000000..03bf4b0 --- /dev/null +++ b/mock-core-configs.spec.rpmlintrc @@ -0,0 +1,6 @@ +addFilter(r'macro-in-comment %{name}') +addFilter(r'macro-in-comment %{version}') +addFilter(r'specfile-error warning: Macro expanded in comment on line [0-9]*: %{name}-%{version}') + +# SPELLING ERRORS +addFilter(r'spelling-error .* en_US (chroots|Config|chroot) ') From 8e4d744f764a96c8dad326601afa3a0247860e8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 9 Aug 2019 15:31:56 +0200 Subject: [PATCH 044/122] waive rpmlint warnings for binary package --- mock-core-configs.spec.rpmlintrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mock-core-configs.spec.rpmlintrc b/mock-core-configs.spec.rpmlintrc index 03bf4b0..7acff64 100644 --- a/mock-core-configs.spec.rpmlintrc +++ b/mock-core-configs.spec.rpmlintrc @@ -4,3 +4,9 @@ addFilter(r'specfile-error warning: Macro expanded in comment on line [0-9]*: %{ # SPELLING ERRORS addFilter(r'spelling-error .* en_US (chroots|Config|chroot) ') + +addFilter(r'no-documentation') +addFilter(r'dangerous-command-in-%post ln') + +# sysusers.d +addFilter(r'only-non-binary-in-usr-lib') From 812bc6de9a3c83fae2f5f4d3a5d9f132218a0b2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 19 Aug 2019 10:09:02 +0200 Subject: [PATCH 045/122] Update mock-core-configs to 31.1-1 Resolves: # - fedora-* --- .gitignore | 1 + gating.yaml | 7 ----- mock-core-configs.spec | 46 +++++++++++++++++++------------- mock-core-configs.spec.rpmlintrc | 12 --------- sources | 2 +- 5 files changed, 29 insertions(+), 39 deletions(-) delete mode 100644 gating.yaml delete mode 100644 mock-core-configs.spec.rpmlintrc diff --git a/.gitignore b/.gitignore index 397e16a..cee8863 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /mock-core-configs-30.3.tar.gz /mock-core-configs-30.4.tar.gz /mock-core-configs-30.5.tar.gz +/mock-core-configs-31.1.tar.gz diff --git a/gating.yaml b/gating.yaml deleted file mode 100644 index fc33efa..0000000 --- a/gating.yaml +++ /dev/null @@ -1,7 +0,0 @@ ---- !Policy -product_versions: - - fedora-* -decision_context: bodhi_update_push_stable -rules: -- !PassingTestCaseRule {test_case_name: dist.rpmdeplint} -- !PassingTestCaseRule {test_case_name: dist.upgradepath} diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 4783005..4f2d078 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,42 +1,42 @@ # mock group id allocate for Fedora %global mockgid 135 -Name: mock-core-configs -Version: 30.5 -Release: 1%{?dist} -Summary: Mock core config files basic chroots +Name: mock-core-configs +Version: 31.1 +Release: 1%{?dist} +Summary: Mock core config files basic chroots -License: GPLv2+ -URL: https://github.com/rpm-software-management/mock/ +License: GPLv2+ +URL: https://github.com/rpm-software-management/mock/ # Source is created by # git clone https://github.com/rpm-software-management/mock.git # cd mock/mock-core-configs # git reset --hard %{name}-%{version} # tito build --tgz -Source: https://github.com/rpm-software-management/mock/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.gz -BuildArch: noarch +Source: https://github.com/rpm-software-management/mock/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.gz +BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.29 +Requires: distribution-gpg-keys >= 1.29 Requires(post): coreutils %if 0%{?fedora} > 29 || 0%{?rhel} > 8 -BuildRequires: systemd-rpm-macros +BuildRequires: systemd-rpm-macros %endif %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg -Requires(post): python3-dnf -Requires(post): python3-hawkey -Requires(post): system-release -Requires(post): python3 -Requires(post): sed +Requires(post): python3-dnf +Requires(post): python3-hawkey +Requires(post): system-release +Requires(post): python3 +Requires(post): sed %endif %if 0%{?rhel} && 0%{?rhel} <= 7 -Requires(pre): shadow-utils +Requires(pre): shadow-utils # to detect correct default.cfg -Requires(post): python -Requires(post): yum -Requires(post): /etc/os-release +Requires(post): python +Requires(post): yum +Requires(post): /etc/os-release %endif %description @@ -137,6 +137,14 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Aug 19 2019 Miroslav Suchý 31.1-1 +- add fedora 31 configs and rawhide is now 32 +- Add local-source repo definition to Fedora Rawhide (miro@hroncok.cz) + +* Mon Aug 19 2019 Miroslav Suchý +- add fedora 31 configs and rawhide is now 32 +- Add local-source repo definition to Fedora Rawhide (miro@hroncok.cz) + * Thu Aug 08 2019 Miroslav Suchý 30.5-1 - disable updates-modulare repos for now - buildrequire systemd-srpm-macros to get _sysusersdir diff --git a/mock-core-configs.spec.rpmlintrc b/mock-core-configs.spec.rpmlintrc deleted file mode 100644 index 7acff64..0000000 --- a/mock-core-configs.spec.rpmlintrc +++ /dev/null @@ -1,12 +0,0 @@ -addFilter(r'macro-in-comment %{name}') -addFilter(r'macro-in-comment %{version}') -addFilter(r'specfile-error warning: Macro expanded in comment on line [0-9]*: %{name}-%{version}') - -# SPELLING ERRORS -addFilter(r'spelling-error .* en_US (chroots|Config|chroot) ') - -addFilter(r'no-documentation') -addFilter(r'dangerous-command-in-%post ln') - -# sysusers.d -addFilter(r'only-non-binary-in-usr-lib') diff --git a/sources b/sources index 6a6974a..764cdd2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.5.tar.gz) = 218440fb9b8b9ea1b7c9a4c61deb3d6f9bec9ff01d6b87fadb1c54c9f9a1ef71b0169e997ae59064e1c5967bd4af52e6331c227e752dbbb5b0ba778bc8ab509f +SHA512 (mock-core-configs-31.1.tar.gz) = 5d1effa53b358627ebba179ad633f577a14e941e323e2eee455ef38c56fbef1f50be7ad3caa1193c925d4ec3971b128591755fad159da6c7bb6913d25eadb3a1 From 63cf115160d3011963314c1f920fcd868326cc26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 19 Aug 2019 10:44:35 +0200 Subject: [PATCH 046/122] Update mock-core-configs to 31.1-1 --- .gitignore | 1 + mock-core-configs.spec | 46 +++++++++++++++++++++++++----------------- sources | 2 +- 3 files changed, 29 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index 397e16a..cee8863 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /mock-core-configs-30.3.tar.gz /mock-core-configs-30.4.tar.gz /mock-core-configs-30.5.tar.gz +/mock-core-configs-31.1.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 4783005..4f2d078 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,42 +1,42 @@ # mock group id allocate for Fedora %global mockgid 135 -Name: mock-core-configs -Version: 30.5 -Release: 1%{?dist} -Summary: Mock core config files basic chroots +Name: mock-core-configs +Version: 31.1 +Release: 1%{?dist} +Summary: Mock core config files basic chroots -License: GPLv2+ -URL: https://github.com/rpm-software-management/mock/ +License: GPLv2+ +URL: https://github.com/rpm-software-management/mock/ # Source is created by # git clone https://github.com/rpm-software-management/mock.git # cd mock/mock-core-configs # git reset --hard %{name}-%{version} # tito build --tgz -Source: https://github.com/rpm-software-management/mock/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.gz -BuildArch: noarch +Source: https://github.com/rpm-software-management/mock/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.gz +BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.29 +Requires: distribution-gpg-keys >= 1.29 Requires(post): coreutils %if 0%{?fedora} > 29 || 0%{?rhel} > 8 -BuildRequires: systemd-rpm-macros +BuildRequires: systemd-rpm-macros %endif %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg -Requires(post): python3-dnf -Requires(post): python3-hawkey -Requires(post): system-release -Requires(post): python3 -Requires(post): sed +Requires(post): python3-dnf +Requires(post): python3-hawkey +Requires(post): system-release +Requires(post): python3 +Requires(post): sed %endif %if 0%{?rhel} && 0%{?rhel} <= 7 -Requires(pre): shadow-utils +Requires(pre): shadow-utils # to detect correct default.cfg -Requires(post): python -Requires(post): yum -Requires(post): /etc/os-release +Requires(post): python +Requires(post): yum +Requires(post): /etc/os-release %endif %description @@ -137,6 +137,14 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Aug 19 2019 Miroslav Suchý 31.1-1 +- add fedora 31 configs and rawhide is now 32 +- Add local-source repo definition to Fedora Rawhide (miro@hroncok.cz) + +* Mon Aug 19 2019 Miroslav Suchý +- add fedora 31 configs and rawhide is now 32 +- Add local-source repo definition to Fedora Rawhide (miro@hroncok.cz) + * Thu Aug 08 2019 Miroslav Suchý 30.5-1 - disable updates-modulare repos for now - buildrequire systemd-srpm-macros to get _sysusersdir diff --git a/sources b/sources index 6a6974a..764cdd2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-30.5.tar.gz) = 218440fb9b8b9ea1b7c9a4c61deb3d6f9bec9ff01d6b87fadb1c54c9f9a1ef71b0169e997ae59064e1c5967bd4af52e6331c227e752dbbb5b0ba778bc8ab509f +SHA512 (mock-core-configs-31.1.tar.gz) = 5d1effa53b358627ebba179ad633f577a14e941e323e2eee455ef38c56fbef1f50be7ad3caa1193c925d4ec3971b128591755fad159da6c7bb6913d25eadb3a1 From 7c5e66720194dcb1771879a672537fe31897a4df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 26 Aug 2019 14:44:53 +0200 Subject: [PATCH 047/122] Update mock-core-configs to 31.2-1 --- .gitignore | 1 + mock-core-configs.spec | 25 +++++++++---------------- sources | 2 +- 3 files changed, 11 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index cee8863..1aa3d12 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /mock-core-configs-30.4.tar.gz /mock-core-configs-30.5.tar.gz /mock-core-configs-31.1.tar.gz +/mock-core-configs-31.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 4f2d078..79196d5 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.1 +Version: 31.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -20,9 +20,6 @@ BuildArch: noarch Requires: distribution-gpg-keys >= 1.29 Requires(post): coreutils -%if 0%{?fedora} > 29 || 0%{?rhel} > 8 -BuildRequires: systemd-rpm-macros -%endif %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg Requires(post): python3-dnf @@ -31,8 +28,8 @@ Requires(post): system-release Requires(post): python3 Requires(post): sed %endif -%if 0%{?rhel} && 0%{?rhel} <= 7 Requires(pre): shadow-utils +%if 0%{?rhel} && 0%{?rhel} <= 7 # to detect correct default.cfg Requires(post): python Requires(post): yum @@ -57,17 +54,15 @@ Config files which allow you to create chroots for: %install mkdir -p %{buildroot}%{_sysusersdir} -%if 0%{?fedora} > 29 || 0%{?rhel} > 8 -cp -a mock.conf %{buildroot}%{_sysusersdir} -%endif mkdir -p %{buildroot}%{_sysconfdir}/mock/eol cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock +cp -a etc/mock/*.tpl %{buildroot}%{_sysconfdir}/mock cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol # generate files section with config - there is many of them echo "%defattr(0644, root, mock)" > %{name}.cfgs -find %{buildroot}%{_sysconfdir}/mock -name "*.cfg" \ +find %{buildroot}%{_sysconfdir}/mock -name "*.cfg" -o -name '*.tpl' \ | sed -e "s|^%{buildroot}|%%config(noreplace) |" >> %{name}.cfgs # just for %%ghosting purposes ln -s fedora-rawhide-x86_64.cfg %{buildroot}%{_sysconfdir}/mock/default.cfg @@ -81,13 +76,9 @@ fi %pre -%if 0%{?fedora} > 29 || 0%{?rhel} > 8 -%sysusers_create_package mock mock.conf -%else # check for existence of mock group, create it if not found getent group mock > /dev/null || groupadd -f -g %mockgid -r mock exit 0 -%endif %post if [ -s /etc/os-release ]; then @@ -129,14 +120,16 @@ fi %files -f %{name}.cfgs %license COPYING -%if 0%{?fedora} > 29 || 0%{?rhel} > 8 -%{_sysusersdir}/mock.conf -%endif %dir %{_sysconfdir}/mock %dir %{_sysconfdir}/mock/eol %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Aug 26 2019 Miroslav Suchý 31.2-1 +- revert sysusers setting [RHBZ#1740545] +- add rhelepel-8 configs (praiskup@redhat.com) +- add RHEL 7/8 (praiskup@redhat.com) + * Mon Aug 19 2019 Miroslav Suchý 31.1-1 - add fedora 31 configs and rawhide is now 32 - Add local-source repo definition to Fedora Rawhide (miro@hroncok.cz) diff --git a/sources b/sources index 764cdd2..7e29e06 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.1.tar.gz) = 5d1effa53b358627ebba179ad633f577a14e941e323e2eee455ef38c56fbef1f50be7ad3caa1193c925d4ec3971b128591755fad159da6c7bb6913d25eadb3a1 +SHA512 (mock-core-configs-31.2.tar.gz) = 2d329b9165419056dfd83a53b0c19e6873f2a4c722d16e3166f1089ae17f973980bcc1b8ae9745b41052de1f99268ded466505474de62eec5978ecde7a7bb2bf From e5af04d935f548268f6ffec8e1420f614aca5439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 26 Aug 2019 14:47:23 +0200 Subject: [PATCH 048/122] Update mock-core-configs to 31.2-1 --- .gitignore | 1 + mock-core-configs.spec | 25 +++++++++---------------- sources | 2 +- 3 files changed, 11 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index cee8863..1aa3d12 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /mock-core-configs-30.4.tar.gz /mock-core-configs-30.5.tar.gz /mock-core-configs-31.1.tar.gz +/mock-core-configs-31.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 4f2d078..79196d5 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.1 +Version: 31.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -20,9 +20,6 @@ BuildArch: noarch Requires: distribution-gpg-keys >= 1.29 Requires(post): coreutils -%if 0%{?fedora} > 29 || 0%{?rhel} > 8 -BuildRequires: systemd-rpm-macros -%endif %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg Requires(post): python3-dnf @@ -31,8 +28,8 @@ Requires(post): system-release Requires(post): python3 Requires(post): sed %endif -%if 0%{?rhel} && 0%{?rhel} <= 7 Requires(pre): shadow-utils +%if 0%{?rhel} && 0%{?rhel} <= 7 # to detect correct default.cfg Requires(post): python Requires(post): yum @@ -57,17 +54,15 @@ Config files which allow you to create chroots for: %install mkdir -p %{buildroot}%{_sysusersdir} -%if 0%{?fedora} > 29 || 0%{?rhel} > 8 -cp -a mock.conf %{buildroot}%{_sysusersdir} -%endif mkdir -p %{buildroot}%{_sysconfdir}/mock/eol cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock +cp -a etc/mock/*.tpl %{buildroot}%{_sysconfdir}/mock cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol # generate files section with config - there is many of them echo "%defattr(0644, root, mock)" > %{name}.cfgs -find %{buildroot}%{_sysconfdir}/mock -name "*.cfg" \ +find %{buildroot}%{_sysconfdir}/mock -name "*.cfg" -o -name '*.tpl' \ | sed -e "s|^%{buildroot}|%%config(noreplace) |" >> %{name}.cfgs # just for %%ghosting purposes ln -s fedora-rawhide-x86_64.cfg %{buildroot}%{_sysconfdir}/mock/default.cfg @@ -81,13 +76,9 @@ fi %pre -%if 0%{?fedora} > 29 || 0%{?rhel} > 8 -%sysusers_create_package mock mock.conf -%else # check for existence of mock group, create it if not found getent group mock > /dev/null || groupadd -f -g %mockgid -r mock exit 0 -%endif %post if [ -s /etc/os-release ]; then @@ -129,14 +120,16 @@ fi %files -f %{name}.cfgs %license COPYING -%if 0%{?fedora} > 29 || 0%{?rhel} > 8 -%{_sysusersdir}/mock.conf -%endif %dir %{_sysconfdir}/mock %dir %{_sysconfdir}/mock/eol %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Aug 26 2019 Miroslav Suchý 31.2-1 +- revert sysusers setting [RHBZ#1740545] +- add rhelepel-8 configs (praiskup@redhat.com) +- add RHEL 7/8 (praiskup@redhat.com) + * Mon Aug 19 2019 Miroslav Suchý 31.1-1 - add fedora 31 configs and rawhide is now 32 - Add local-source repo definition to Fedora Rawhide (miro@hroncok.cz) diff --git a/sources b/sources index 764cdd2..7e29e06 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.1.tar.gz) = 5d1effa53b358627ebba179ad633f577a14e941e323e2eee455ef38c56fbef1f50be7ad3caa1193c925d4ec3971b128591755fad159da6c7bb6913d25eadb3a1 +SHA512 (mock-core-configs-31.2.tar.gz) = 2d329b9165419056dfd83a53b0c19e6873f2a4c722d16e3166f1089ae17f973980bcc1b8ae9745b41052de1f99268ded466505474de62eec5978ecde7a7bb2bf From 46fcef67a0ddf44ed62efd49ae70c8cb847c65ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Sat, 14 Sep 2019 12:55:27 +0200 Subject: [PATCH 049/122] Update mock-core-configs to 31.3-1 --- .gitignore | 1 + mock-core-configs.spec | 16 ++++++++++++++-- sources | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1aa3d12..50d140d 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /mock-core-configs-30.5.tar.gz /mock-core-configs-31.1.tar.gz /mock-core-configs-31.2.tar.gz +/mock-core-configs-31.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 79196d5..af476a3 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.2 +Version: 31.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -56,8 +56,9 @@ Config files which allow you to create chroots for: mkdir -p %{buildroot}%{_sysusersdir} mkdir -p %{buildroot}%{_sysconfdir}/mock/eol +mkdir -p %{buildroot}%{_sysconfdir}/mock/templates cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock -cp -a etc/mock/*.tpl %{buildroot}%{_sysconfdir}/mock +cp -a etc/mock/templates/*.tpl %{buildroot}%{_sysconfdir}/mock/templates cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol # generate files section with config - there is many of them @@ -122,9 +123,20 @@ fi %license COPYING %dir %{_sysconfdir}/mock %dir %{_sysconfdir}/mock/eol +%dir %{_sysconfdir}/mock/templates %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Sat Sep 14 2019 Miroslav Suchý 31.3-1 +- mock-core-configs: installroot fix for fedora 31+ i386 (praiskup@redhat.com) +- Moving templates into templates dir (sisi.chlupova@gmail.com) +- Changing cfg files for fedora 30 to use tpl file (sisi.chlupova@gmail.com) +- Moving fedora-30-x86_64.cfg into templates/fedora-30.tpl + (sisi.chlupova@gmail.com) +- baseurl for f30-build was changed (sisi.chlupova@gmail.com) +- no i686 repositories [GH#325] +- adds equation sign to --disablerepo (thrnciar@reedhat.com) + * Mon Aug 26 2019 Miroslav Suchý 31.2-1 - revert sysusers setting [RHBZ#1740545] - add rhelepel-8 configs (praiskup@redhat.com) diff --git a/sources b/sources index 7e29e06..d71e9e4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.2.tar.gz) = 2d329b9165419056dfd83a53b0c19e6873f2a4c722d16e3166f1089ae17f973980bcc1b8ae9745b41052de1f99268ded466505474de62eec5978ecde7a7bb2bf +SHA512 (mock-core-configs-31.3.tar.gz) = 8e8aec6c843ccd037d75e2e9d018107d492db415f1ae9c5d2fb5053ae5f0ae5c6a051ea4f2cc86369f5fb595665034c5ecb2619f777a5db900b4146d156cf4d6 From ee706462e515f1870f51cca6ecf26c489bf0444e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Sat, 14 Sep 2019 12:57:03 +0200 Subject: [PATCH 050/122] Update mock-core-configs to 31.3-1 --- .gitignore | 1 + mock-core-configs.spec | 16 ++++++++++++++-- sources | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1aa3d12..50d140d 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /mock-core-configs-30.5.tar.gz /mock-core-configs-31.1.tar.gz /mock-core-configs-31.2.tar.gz +/mock-core-configs-31.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 79196d5..af476a3 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.2 +Version: 31.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -56,8 +56,9 @@ Config files which allow you to create chroots for: mkdir -p %{buildroot}%{_sysusersdir} mkdir -p %{buildroot}%{_sysconfdir}/mock/eol +mkdir -p %{buildroot}%{_sysconfdir}/mock/templates cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock -cp -a etc/mock/*.tpl %{buildroot}%{_sysconfdir}/mock +cp -a etc/mock/templates/*.tpl %{buildroot}%{_sysconfdir}/mock/templates cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol # generate files section with config - there is many of them @@ -122,9 +123,20 @@ fi %license COPYING %dir %{_sysconfdir}/mock %dir %{_sysconfdir}/mock/eol +%dir %{_sysconfdir}/mock/templates %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Sat Sep 14 2019 Miroslav Suchý 31.3-1 +- mock-core-configs: installroot fix for fedora 31+ i386 (praiskup@redhat.com) +- Moving templates into templates dir (sisi.chlupova@gmail.com) +- Changing cfg files for fedora 30 to use tpl file (sisi.chlupova@gmail.com) +- Moving fedora-30-x86_64.cfg into templates/fedora-30.tpl + (sisi.chlupova@gmail.com) +- baseurl for f30-build was changed (sisi.chlupova@gmail.com) +- no i686 repositories [GH#325] +- adds equation sign to --disablerepo (thrnciar@reedhat.com) + * Mon Aug 26 2019 Miroslav Suchý 31.2-1 - revert sysusers setting [RHBZ#1740545] - add rhelepel-8 configs (praiskup@redhat.com) diff --git a/sources b/sources index 7e29e06..d71e9e4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.2.tar.gz) = 2d329b9165419056dfd83a53b0c19e6873f2a4c722d16e3166f1089ae17f973980bcc1b8ae9745b41052de1f99268ded466505474de62eec5978ecde7a7bb2bf +SHA512 (mock-core-configs-31.3.tar.gz) = 8e8aec6c843ccd037d75e2e9d018107d492db415f1ae9c5d2fb5053ae5f0ae5c6a051ea4f2cc86369f5fb595665034c5ecb2619f777a5db900b4146d156cf4d6 From 61f16043aef64b854a010430e15f3d880afbc300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Tue, 24 Sep 2019 18:20:51 +0200 Subject: [PATCH 051/122] Update mock-core-configs to 31.4-1 --- .gitignore | 1 + mock-core-configs.spec | 10 +++++++++- sources | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 50d140d..65c4804 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /mock-core-configs-31.1.tar.gz /mock-core-configs-31.2.tar.gz /mock-core-configs-31.3.tar.gz +/mock-core-configs-31.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index af476a3..9236bf4 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.3 +Version: 31.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -127,6 +127,14 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Tue Sep 24 2019 Miroslav Suchý 31.4-1 +- provide explanation why modular repos are disabled +- add epel-8 +- Changing cfg files for fedora rawhide to use tpl file + (sisi.chlupova@gmail.com) +- Changing cfg files for fedora 31 to use tpl file (sisi.chlupova@gmail.com) +- Changing cfg files for fedora 29 to use tpl file (sisi.chlupova@gmail.com) + * Sat Sep 14 2019 Miroslav Suchý 31.3-1 - mock-core-configs: installroot fix for fedora 31+ i386 (praiskup@redhat.com) - Moving templates into templates dir (sisi.chlupova@gmail.com) diff --git a/sources b/sources index d71e9e4..c376482 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.3.tar.gz) = 8e8aec6c843ccd037d75e2e9d018107d492db415f1ae9c5d2fb5053ae5f0ae5c6a051ea4f2cc86369f5fb595665034c5ecb2619f777a5db900b4146d156cf4d6 +SHA512 (mock-core-configs-31.4.tar.gz) = 50ff0e6f3e9f475fa56effe154981c156c68259b153792c1631870ca401a067215cee6ccee4c93ac6b5d95e3004e6dd1e382af47b0d4434cb7594524f924d26b From e819d007be729917877de9e22933da1c6d229f7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Tue, 24 Sep 2019 18:22:17 +0200 Subject: [PATCH 052/122] Update mock-core-configs to 31.4-1 --- .gitignore | 1 + mock-core-configs.spec | 10 +++++++++- sources | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 50d140d..65c4804 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /mock-core-configs-31.1.tar.gz /mock-core-configs-31.2.tar.gz /mock-core-configs-31.3.tar.gz +/mock-core-configs-31.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index af476a3..9236bf4 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.3 +Version: 31.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -127,6 +127,14 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Tue Sep 24 2019 Miroslav Suchý 31.4-1 +- provide explanation why modular repos are disabled +- add epel-8 +- Changing cfg files for fedora rawhide to use tpl file + (sisi.chlupova@gmail.com) +- Changing cfg files for fedora 31 to use tpl file (sisi.chlupova@gmail.com) +- Changing cfg files for fedora 29 to use tpl file (sisi.chlupova@gmail.com) + * Sat Sep 14 2019 Miroslav Suchý 31.3-1 - mock-core-configs: installroot fix for fedora 31+ i386 (praiskup@redhat.com) - Moving templates into templates dir (sisi.chlupova@gmail.com) diff --git a/sources b/sources index d71e9e4..c376482 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.3.tar.gz) = 8e8aec6c843ccd037d75e2e9d018107d492db415f1ae9c5d2fb5053ae5f0ae5c6a051ea4f2cc86369f5fb595665034c5ecb2619f777a5db900b4146d156cf4d6 +SHA512 (mock-core-configs-31.4.tar.gz) = 50ff0e6f3e9f475fa56effe154981c156c68259b153792c1631870ca401a067215cee6ccee4c93ac6b5d95e3004e6dd1e382af47b0d4434cb7594524f924d26b From 4da4530b5c34273464af78d7ceb5d02be6afa195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 26 Sep 2019 14:00:30 +0200 Subject: [PATCH 053/122] Update mock-core-configs to 31.5-1 --- .gitignore | 1 + mock-core-configs.spec | 12 +++++++++++- sources | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 65c4804..6b26143 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /mock-core-configs-31.2.tar.gz /mock-core-configs-31.3.tar.gz /mock-core-configs-31.4.tar.gz +/mock-core-configs-31.5.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 9236bf4..3dfafe4 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.4 +Version: 31.5 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -127,6 +127,16 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Sep 26 2019 Miroslav Suchý 31.5-1 +- expand contentdir for now +- expand $stream for now +- add extra_chroot_dirs to centos8 +- use dnf for centos8 +- add centos-stream-8 +- rhelepel: reuse epel-8.tpl (praiskup@redhat.com) +- Add Amazon Linux 2 configs (haroldji@amazon.com) +- centos-8: enable PowerTools repo (praiskup@redhat.com) + * Tue Sep 24 2019 Miroslav Suchý 31.4-1 - provide explanation why modular repos are disabled - add epel-8 diff --git a/sources b/sources index c376482..f8601a5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.4.tar.gz) = 50ff0e6f3e9f475fa56effe154981c156c68259b153792c1631870ca401a067215cee6ccee4c93ac6b5d95e3004e6dd1e382af47b0d4434cb7594524f924d26b +SHA512 (mock-core-configs-31.5.tar.gz) = 2fcff9c321471a325a538e38664d21cc5d263c0cbfb6e74ea0d5eb9b719947099464dedccb2e56c3f4fef5905f4a8abf5d9822175302058292f1bab5efb8a167 From bb2674fa67fe63762429b737b47851d52c843e83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 26 Sep 2019 14:02:25 +0200 Subject: [PATCH 054/122] Update mock-core-configs to 31.5-1 --- .gitignore | 1 + mock-core-configs.spec | 12 +++++++++++- sources | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 65c4804..6b26143 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /mock-core-configs-31.2.tar.gz /mock-core-configs-31.3.tar.gz /mock-core-configs-31.4.tar.gz +/mock-core-configs-31.5.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 9236bf4..3dfafe4 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.4 +Version: 31.5 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -127,6 +127,16 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Sep 26 2019 Miroslav Suchý 31.5-1 +- expand contentdir for now +- expand $stream for now +- add extra_chroot_dirs to centos8 +- use dnf for centos8 +- add centos-stream-8 +- rhelepel: reuse epel-8.tpl (praiskup@redhat.com) +- Add Amazon Linux 2 configs (haroldji@amazon.com) +- centos-8: enable PowerTools repo (praiskup@redhat.com) + * Tue Sep 24 2019 Miroslav Suchý 31.4-1 - provide explanation why modular repos are disabled - add epel-8 diff --git a/sources b/sources index c376482..f8601a5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.4.tar.gz) = 50ff0e6f3e9f475fa56effe154981c156c68259b153792c1631870ca401a067215cee6ccee4c93ac6b5d95e3004e6dd1e382af47b0d4434cb7594524f924d26b +SHA512 (mock-core-configs-31.5.tar.gz) = 2fcff9c321471a325a538e38664d21cc5d263c0cbfb6e74ea0d5eb9b719947099464dedccb2e56c3f4fef5905f4a8abf5d9822175302058292f1bab5efb8a167 From d523fc9c181e4f54dee438e89367bea5fafc3122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 4 Oct 2019 12:39:38 +0200 Subject: [PATCH 055/122] Update mock-core-configs to 31.6-1 --- .gitignore | 1 + mock-core-configs.spec | 7 ++++++- mock-core-configs.spec.rpmlintrc | 6 ++++++ sources | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 mock-core-configs.spec.rpmlintrc diff --git a/.gitignore b/.gitignore index 6b26143..ebcc58b 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /mock-core-configs-31.3.tar.gz /mock-core-configs-31.4.tar.gz /mock-core-configs-31.5.tar.gz +/mock-core-configs-31.6.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 3dfafe4..7e623cf 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.5 +Version: 31.6 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -127,6 +127,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Oct 04 2019 Miroslav Suchý 31.6-1 +- disable modular repo for f29 +- configure podman containers for Fedora, EPEL and Mageia (frostyx@email.cz) +- Fix baseurl typo in centos-stream config (dollierp@redhat.com) + * Thu Sep 26 2019 Miroslav Suchý 31.5-1 - expand contentdir for now - expand $stream for now diff --git a/mock-core-configs.spec.rpmlintrc b/mock-core-configs.spec.rpmlintrc new file mode 100644 index 0000000..03bf4b0 --- /dev/null +++ b/mock-core-configs.spec.rpmlintrc @@ -0,0 +1,6 @@ +addFilter(r'macro-in-comment %{name}') +addFilter(r'macro-in-comment %{version}') +addFilter(r'specfile-error warning: Macro expanded in comment on line [0-9]*: %{name}-%{version}') + +# SPELLING ERRORS +addFilter(r'spelling-error .* en_US (chroots|Config|chroot) ') diff --git a/sources b/sources index f8601a5..a7e59dd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.5.tar.gz) = 2fcff9c321471a325a538e38664d21cc5d263c0cbfb6e74ea0d5eb9b719947099464dedccb2e56c3f4fef5905f4a8abf5d9822175302058292f1bab5efb8a167 +SHA512 (mock-core-configs-31.6.tar.gz) = eed8a070601719345a2d34cc426f98503b26b14951aae230bb6f911df6511df50538310fc2544e3dcdb8de6a8bb6b03e6c10a13306ee11754a735a38c0319f49 From d6dd3dc3fd50d79039d7120e9a586bdca7b649b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 4 Oct 2019 12:46:20 +0200 Subject: [PATCH 056/122] Update mock-core-configs to 31.6-1 --- .gitignore | 1 + mock-core-configs.spec | 7 ++++++- mock-core-configs.spec.rpmlintrc | 6 ++++++ sources | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 mock-core-configs.spec.rpmlintrc diff --git a/.gitignore b/.gitignore index 6b26143..ebcc58b 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /mock-core-configs-31.3.tar.gz /mock-core-configs-31.4.tar.gz /mock-core-configs-31.5.tar.gz +/mock-core-configs-31.6.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 3dfafe4..7e623cf 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.5 +Version: 31.6 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -127,6 +127,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Oct 04 2019 Miroslav Suchý 31.6-1 +- disable modular repo for f29 +- configure podman containers for Fedora, EPEL and Mageia (frostyx@email.cz) +- Fix baseurl typo in centos-stream config (dollierp@redhat.com) + * Thu Sep 26 2019 Miroslav Suchý 31.5-1 - expand contentdir for now - expand $stream for now diff --git a/mock-core-configs.spec.rpmlintrc b/mock-core-configs.spec.rpmlintrc new file mode 100644 index 0000000..03bf4b0 --- /dev/null +++ b/mock-core-configs.spec.rpmlintrc @@ -0,0 +1,6 @@ +addFilter(r'macro-in-comment %{name}') +addFilter(r'macro-in-comment %{version}') +addFilter(r'specfile-error warning: Macro expanded in comment on line [0-9]*: %{name}-%{version}') + +# SPELLING ERRORS +addFilter(r'spelling-error .* en_US (chroots|Config|chroot) ') diff --git a/sources b/sources index f8601a5..a7e59dd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.5.tar.gz) = 2fcff9c321471a325a538e38664d21cc5d263c0cbfb6e74ea0d5eb9b719947099464dedccb2e56c3f4fef5905f4a8abf5d9822175302058292f1bab5efb8a167 +SHA512 (mock-core-configs-31.6.tar.gz) = eed8a070601719345a2d34cc426f98503b26b14951aae230bb6f911df6511df50538310fc2544e3dcdb8de6a8bb6b03e6c10a13306ee11754a735a38c0319f49 From d798e0e88a8e4079e03464befc203f2bd0f9a1d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 1 Nov 2019 15:18:30 +0100 Subject: [PATCH 057/122] Update mock-core-configs to 31.7-1 --- .gitignore | 1 + mock-core-configs.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ebcc58b..00d262a 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /mock-core-configs-31.4.tar.gz /mock-core-configs-31.5.tar.gz /mock-core-configs-31.6.tar.gz +/mock-core-configs-31.7.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 7e623cf..a516738 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.6 +Version: 31.7 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -127,6 +127,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Nov 01 2019 Miroslav Suchý 31.7-1 +- Add configs for epel8-playground (mmathesi@redhat.com) +- add 3 base packages to epel-playground buildroot [RHBZ#1764445] +- add 3 base packages to epel buildroot [RHBZ#1764445] + * Fri Oct 04 2019 Miroslav Suchý 31.6-1 - disable modular repo for f29 - configure podman containers for Fedora, EPEL and Mageia (frostyx@email.cz) diff --git a/sources b/sources index a7e59dd..4c53ae4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.6.tar.gz) = eed8a070601719345a2d34cc426f98503b26b14951aae230bb6f911df6511df50538310fc2544e3dcdb8de6a8bb6b03e6c10a13306ee11754a735a38c0319f49 +SHA512 (mock-core-configs-31.7.tar.gz) = 96701a149fe2c1af9a9d235dd486c86ebe9298080cd67663ca8bda4cdc5415f70de18731e488f7792582635363f322871b55592abc11609dd4a00ea094dae82d From d2ff40c733d5a19d4f367de2611a9c817ebccf4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Fri, 1 Nov 2019 15:20:57 +0100 Subject: [PATCH 058/122] Update mock-core-configs to 31.7-1 --- .gitignore | 1 + mock-core-configs.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ebcc58b..00d262a 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /mock-core-configs-31.4.tar.gz /mock-core-configs-31.5.tar.gz /mock-core-configs-31.6.tar.gz +/mock-core-configs-31.7.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 7e623cf..a516738 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.6 +Version: 31.7 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -127,6 +127,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Nov 01 2019 Miroslav Suchý 31.7-1 +- Add configs for epel8-playground (mmathesi@redhat.com) +- add 3 base packages to epel-playground buildroot [RHBZ#1764445] +- add 3 base packages to epel buildroot [RHBZ#1764445] + * Fri Oct 04 2019 Miroslav Suchý 31.6-1 - disable modular repo for f29 - configure podman containers for Fedora, EPEL and Mageia (frostyx@email.cz) diff --git a/sources b/sources index a7e59dd..4c53ae4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.6.tar.gz) = eed8a070601719345a2d34cc426f98503b26b14951aae230bb6f911df6511df50538310fc2544e3dcdb8de6a8bb6b03e6c10a13306ee11754a735a38c0319f49 +SHA512 (mock-core-configs-31.7.tar.gz) = 96701a149fe2c1af9a9d235dd486c86ebe9298080cd67663ca8bda4cdc5415f70de18731e488f7792582635363f322871b55592abc11609dd4a00ea094dae82d From fb60c8551f6b5fbb8ef9a866d6dd4723e6d01765 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 13:45:57 +0000 Subject: [PATCH 059/122] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index a516738..621bf07 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ Name: mock-core-configs Version: 31.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -127,6 +127,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 31.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Nov 01 2019 Miroslav Suchý 31.7-1 - Add configs for epel8-playground (mmathesi@redhat.com) - add 3 base packages to epel-playground buildroot [RHBZ#1764445] From 323d021368d8de92b6b5bdf2f04516ed0ab76b1c Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 7 Feb 2020 15:01:00 +0100 Subject: [PATCH 060/122] Update mock-core-configs to 32.0-2 --- .gitignore | 1 + mock-core-configs.spec | 51 +++++++++++++++++++++++++++++++++++++----- sources | 2 +- 3 files changed, 47 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 00d262a..bf91a17 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /mock-core-configs-31.5.tar.gz /mock-core-configs-31.6.tar.gz /mock-core-configs-31.7.tar.gz +/mock-core-configs-32.0.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 621bf07..ea0f8c6 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.7 +Version: 32.0 Release: 2%{?dist} Summary: Mock core config files basic chroots @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{ BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.29 +Requires: distribution-gpg-keys >= 1.36 Requires(post): coreutils %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 @@ -49,17 +49,33 @@ Config files which allow you to create chroots for: %build -# nothing to do here +cd etc/host-overrides +HOST=none +%if 0%{?fedora} +HOST="fedora-%{fedora}" +%endif +%if 0%{?rhel} +HOST="rhel-%{rhel}" +%endif + +if [ -d "$HOST" ]; then + pushd "$HOST" + for i in *.cfg; do + cat "$i" >> "../../mock/$i" + done + popd +fi %install mkdir -p %{buildroot}%{_sysusersdir} -mkdir -p %{buildroot}%{_sysconfdir}/mock/eol +mkdir -p %{buildroot}%{_sysconfdir}/mock/eol/templates mkdir -p %{buildroot}%{_sysconfdir}/mock/templates cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock cp -a etc/mock/templates/*.tpl %{buildroot}%{_sysconfdir}/mock/templates cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol +cp -a etc/mock/eol/templates/*.tpl %{buildroot}%{_sysconfdir}/mock/eol/templates # generate files section with config - there is many of them echo "%defattr(0644, root, mock)" > %{name}.cfgs @@ -127,8 +143,31 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Wed Jan 29 2020 Fedora Release Engineering - 31.7-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild +* Fri Feb 07 2020 Pavel Raiskup 32.0-2 +- solve yum.conf vs. dnf.conf inconsistency in config and code + +* Thu Feb 06 2020 Pavel Raiskup 32.0-1 +- add F32 configs and move rawhide to F33 +- make compatibility changes with mock 2.0 +- allow host overrides (build-time for now) +- use jinja for gpgkey= in rawhide template +- add rhel-{7,8}-s390x configs +- drop rhel-8-ppc64, it was never supported +- fix rhel-7 configs +- update epel-8 config template to include modular repos as well as missing + non-modular source repo (mmathesi@redhat.com) +- drop for a long time useless epel-6-ppc64 config +- use template for opensuse, openmandriva, mageia, epel, custom ... +- fix epel-6.tpl config bug +- set default podman image for centos-stream +- remove aarch64 string from repo name in template [RHBZ#1780977] +- EOL F29 configs +- fix rhelepel configs +- allow including configs and templates from relative path (frostyx@email.cz) +- configs: drop cost=2000 from fedora-31+-i386 +- add missing metadata_expire=0 to epel configs +- change default of 'package_manager' to 'dnf', and use 'dnf.conf' +- remove rhelbeta-8-* * Fri Nov 01 2019 Miroslav Suchý 31.7-1 - Add configs for epel8-playground (mmathesi@redhat.com) diff --git a/sources b/sources index 4c53ae4..f707db8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.7.tar.gz) = 96701a149fe2c1af9a9d235dd486c86ebe9298080cd67663ca8bda4cdc5415f70de18731e488f7792582635363f322871b55592abc11609dd4a00ea094dae82d +SHA512 (mock-core-configs-32.0.tar.gz) = 11de262b8bc796d0f51c2807b10cf150a8a25c2197b71ed31ee330679dff377336f5e850ae9e5622836eb24e87c54c42445f51d6f018b5731efc945da97bf58e From bd188e11ef5be3e9eeed1fa59afeece6dff9fdba Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 7 Feb 2020 15:04:38 +0100 Subject: [PATCH 061/122] Update mock-core-configs to 32.0-2 --- .gitignore | 1 + mock-core-configs.spec | 52 ++++++++++++++++++++++++++++++++++++++---- sources | 2 +- 3 files changed, 49 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 00d262a..bf91a17 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /mock-core-configs-31.5.tar.gz /mock-core-configs-31.6.tar.gz /mock-core-configs-31.7.tar.gz +/mock-core-configs-32.0.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index a516738..ea0f8c6 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 31.7 -Release: 1%{?dist} +Version: 32.0 +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -17,7 +17,7 @@ Source: https://github.com/rpm-software-management/mock/releases/download/%{ BuildArch: noarch # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.29 +Requires: distribution-gpg-keys >= 1.36 Requires(post): coreutils %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 @@ -49,17 +49,33 @@ Config files which allow you to create chroots for: %build -# nothing to do here +cd etc/host-overrides +HOST=none +%if 0%{?fedora} +HOST="fedora-%{fedora}" +%endif +%if 0%{?rhel} +HOST="rhel-%{rhel}" +%endif + +if [ -d "$HOST" ]; then + pushd "$HOST" + for i in *.cfg; do + cat "$i" >> "../../mock/$i" + done + popd +fi %install mkdir -p %{buildroot}%{_sysusersdir} -mkdir -p %{buildroot}%{_sysconfdir}/mock/eol +mkdir -p %{buildroot}%{_sysconfdir}/mock/eol/templates mkdir -p %{buildroot}%{_sysconfdir}/mock/templates cp -a etc/mock/*.cfg %{buildroot}%{_sysconfdir}/mock cp -a etc/mock/templates/*.tpl %{buildroot}%{_sysconfdir}/mock/templates cp -a etc/mock/eol/*cfg %{buildroot}%{_sysconfdir}/mock/eol +cp -a etc/mock/eol/templates/*.tpl %{buildroot}%{_sysconfdir}/mock/eol/templates # generate files section with config - there is many of them echo "%defattr(0644, root, mock)" > %{name}.cfgs @@ -127,6 +143,32 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Feb 07 2020 Pavel Raiskup 32.0-2 +- solve yum.conf vs. dnf.conf inconsistency in config and code + +* Thu Feb 06 2020 Pavel Raiskup 32.0-1 +- add F32 configs and move rawhide to F33 +- make compatibility changes with mock 2.0 +- allow host overrides (build-time for now) +- use jinja for gpgkey= in rawhide template +- add rhel-{7,8}-s390x configs +- drop rhel-8-ppc64, it was never supported +- fix rhel-7 configs +- update epel-8 config template to include modular repos as well as missing + non-modular source repo (mmathesi@redhat.com) +- drop for a long time useless epel-6-ppc64 config +- use template for opensuse, openmandriva, mageia, epel, custom ... +- fix epel-6.tpl config bug +- set default podman image for centos-stream +- remove aarch64 string from repo name in template [RHBZ#1780977] +- EOL F29 configs +- fix rhelepel configs +- allow including configs and templates from relative path (frostyx@email.cz) +- configs: drop cost=2000 from fedora-31+-i386 +- add missing metadata_expire=0 to epel configs +- change default of 'package_manager' to 'dnf', and use 'dnf.conf' +- remove rhelbeta-8-* + * Fri Nov 01 2019 Miroslav Suchý 31.7-1 - Add configs for epel8-playground (mmathesi@redhat.com) - add 3 base packages to epel-playground buildroot [RHBZ#1764445] diff --git a/sources b/sources index 4c53ae4..f707db8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-31.7.tar.gz) = 96701a149fe2c1af9a9d235dd486c86ebe9298080cd67663ca8bda4cdc5415f70de18731e488f7792582635363f322871b55592abc11609dd4a00ea094dae82d +SHA512 (mock-core-configs-32.0.tar.gz) = 11de262b8bc796d0f51c2807b10cf150a8a25c2197b71ed31ee330679dff377336f5e850ae9e5622836eb24e87c54c42445f51d6f018b5731efc945da97bf58e From 8cb3324c6fac06b4f5973e8193257635721b6fe1 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Sat, 8 Feb 2020 14:15:57 +0100 Subject: [PATCH 062/122] Update mock-core-configs to 32.1-1 --- .gitignore | 1 + mock-core-configs.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bf91a17..6d5ef63 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ /mock-core-configs-31.6.tar.gz /mock-core-configs-31.7.tar.gz /mock-core-configs-32.0.tar.gz +/mock-core-configs-32.1.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index ea0f8c6..bbcd5ab 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.0 -Release: 2%{?dist} +Version: 32.1 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -143,6 +143,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Sat Feb 08 2020 Pavel Raiskup 32.1-1 +- centos-8 and centos-stream to use dnf.conf + * Fri Feb 07 2020 Pavel Raiskup 32.0-2 - solve yum.conf vs. dnf.conf inconsistency in config and code diff --git a/sources b/sources index f707db8..1b7579b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.0.tar.gz) = 11de262b8bc796d0f51c2807b10cf150a8a25c2197b71ed31ee330679dff377336f5e850ae9e5622836eb24e87c54c42445f51d6f018b5731efc945da97bf58e +SHA512 (mock-core-configs-32.1.tar.gz) = d70c37031a4dd0b6977e1e14b4f083b495efa839dfa62d0d233983445dc8f53dae33fa82d151c7968482dad3803601d7dcbf9facffc15b4b1d91bc0aaaee6c8e From d936d767eb0717a195c66b057af9b778f069e0bb Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Sat, 8 Feb 2020 14:17:17 +0100 Subject: [PATCH 063/122] Update mock-core-configs to 32.1-1 --- .gitignore | 1 + mock-core-configs.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bf91a17..6d5ef63 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ /mock-core-configs-31.6.tar.gz /mock-core-configs-31.7.tar.gz /mock-core-configs-32.0.tar.gz +/mock-core-configs-32.1.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index ea0f8c6..bbcd5ab 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.0 -Release: 2%{?dist} +Version: 32.1 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -143,6 +143,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Sat Feb 08 2020 Pavel Raiskup 32.1-1 +- centos-8 and centos-stream to use dnf.conf + * Fri Feb 07 2020 Pavel Raiskup 32.0-2 - solve yum.conf vs. dnf.conf inconsistency in config and code diff --git a/sources b/sources index f707db8..1b7579b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.0.tar.gz) = 11de262b8bc796d0f51c2807b10cf150a8a25c2197b71ed31ee330679dff377336f5e850ae9e5622836eb24e87c54c42445f51d6f018b5731efc945da97bf58e +SHA512 (mock-core-configs-32.1.tar.gz) = d70c37031a4dd0b6977e1e14b4f083b495efa839dfa62d0d233983445dc8f53dae33fa82d151c7968482dad3803601d7dcbf9facffc15b4b1d91bc0aaaee6c8e From 80f2d2ea298eb5802de92ad571fc97be9bfd5a5f Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 20 Feb 2020 09:06:14 +0100 Subject: [PATCH 064/122] Update mock-core-configs to 32.2-1 --- .gitignore | 1 + mock-core-configs.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6d5ef63..4327839 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /mock-core-configs-31.7.tar.gz /mock-core-configs-32.0.tar.gz /mock-core-configs-32.1.tar.gz +/mock-core-configs-32.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index bbcd5ab..cc0c4b9 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.1 +Version: 32.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -143,6 +143,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Feb 20 2020 Pavel Raiskup 32.2-1 +- use one template for branched fedoras +- templatize F31+ i386 +- use 'dnf.conf' in mageia, opensuse and openmandriva configs + * Sat Feb 08 2020 Pavel Raiskup 32.1-1 - centos-8 and centos-stream to use dnf.conf diff --git a/sources b/sources index 1b7579b..7914e6f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.1.tar.gz) = d70c37031a4dd0b6977e1e14b4f083b495efa839dfa62d0d233983445dc8f53dae33fa82d151c7968482dad3803601d7dcbf9facffc15b4b1d91bc0aaaee6c8e +SHA512 (mock-core-configs-32.2.tar.gz) = bf1f86075fbbad7e17a95e469d6d70c7009b8577c13e2fb19c5d5c66a05063f32e26b27a8472c3fe1103a31ad05f891a7355f636a13590e3cdcf718e7c9ea10c From 392e1f1f680390d64e4e04294ee221d5c7fc2800 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 20 Feb 2020 10:17:58 +0100 Subject: [PATCH 065/122] Update mock-core-configs to 32.2-1 --- .gitignore | 1 + mock-core-configs.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6d5ef63..4327839 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /mock-core-configs-31.7.tar.gz /mock-core-configs-32.0.tar.gz /mock-core-configs-32.1.tar.gz +/mock-core-configs-32.2.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index bbcd5ab..cc0c4b9 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.1 +Version: 32.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -143,6 +143,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Feb 20 2020 Pavel Raiskup 32.2-1 +- use one template for branched fedoras +- templatize F31+ i386 +- use 'dnf.conf' in mageia, opensuse and openmandriva configs + * Sat Feb 08 2020 Pavel Raiskup 32.1-1 - centos-8 and centos-stream to use dnf.conf diff --git a/sources b/sources index 1b7579b..7914e6f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.1.tar.gz) = d70c37031a4dd0b6977e1e14b4f083b495efa839dfa62d0d233983445dc8f53dae33fa82d151c7968482dad3803601d7dcbf9facffc15b4b1d91bc0aaaee6c8e +SHA512 (mock-core-configs-32.2.tar.gz) = bf1f86075fbbad7e17a95e469d6d70c7009b8577c13e2fb19c5d5c66a05063f32e26b27a8472c3fe1103a31ad05f891a7355f636a13590e3cdcf718e7c9ea10c From aad251e49dd0599e0a9120bcb26bb6dd2a7b8bac Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 21 Feb 2020 20:33:03 +0100 Subject: [PATCH 066/122] Update mock-core-configs to 32.3-2 --- .gitignore | 1 + mock-core-configs.spec | 10 ++++++++-- sources | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4327839..9db7efa 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ /mock-core-configs-32.0.tar.gz /mock-core-configs-32.1.tar.gz /mock-core-configs-32.2.tar.gz +/mock-core-configs-32.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index cc0c4b9..f99610c 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.2 -Release: 1%{?dist} +Version: 32.3 +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -143,6 +143,12 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Feb 21 2020 Pavel Raiskup 32.3-2 +- bump version for lost git tag + +* Fri Feb 21 2020 Pavel Raiskup 32.3-1 +- put back the opensuse-leap-15.1-x86_64 config + * Thu Feb 20 2020 Pavel Raiskup 32.2-1 - use one template for branched fedoras - templatize F31+ i386 diff --git a/sources b/sources index 7914e6f..bbc1b78 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.2.tar.gz) = bf1f86075fbbad7e17a95e469d6d70c7009b8577c13e2fb19c5d5c66a05063f32e26b27a8472c3fe1103a31ad05f891a7355f636a13590e3cdcf718e7c9ea10c +SHA512 (mock-core-configs-32.3.tar.gz) = f812364032c52871a12dee887afbe91f4b891fc50452539628aa9047ab6d30014a12b72ef1c8a24beb30bfd729340e0b12cc55ddfff475d0cabfda32bdd386fe From f34d47580849b3137c7452d5e46ffabccde90fdc Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 21 Feb 2020 20:34:17 +0100 Subject: [PATCH 067/122] Update mock-core-configs to 32.3-2 --- .gitignore | 1 + mock-core-configs.spec | 10 ++++++++-- sources | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4327839..9db7efa 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ /mock-core-configs-32.0.tar.gz /mock-core-configs-32.1.tar.gz /mock-core-configs-32.2.tar.gz +/mock-core-configs-32.3.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index cc0c4b9..f99610c 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.2 -Release: 1%{?dist} +Version: 32.3 +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -143,6 +143,12 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Feb 21 2020 Pavel Raiskup 32.3-2 +- bump version for lost git tag + +* Fri Feb 21 2020 Pavel Raiskup 32.3-1 +- put back the opensuse-leap-15.1-x86_64 config + * Thu Feb 20 2020 Pavel Raiskup 32.2-1 - use one template for branched fedoras - templatize F31+ i386 diff --git a/sources b/sources index 7914e6f..bbc1b78 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.2.tar.gz) = bf1f86075fbbad7e17a95e469d6d70c7009b8577c13e2fb19c5d5c66a05063f32e26b27a8472c3fe1103a31ad05f891a7355f636a13590e3cdcf718e7c9ea10c +SHA512 (mock-core-configs-32.3.tar.gz) = f812364032c52871a12dee887afbe91f4b891fc50452539628aa9047ab6d30014a12b72ef1c8a24beb30bfd729340e0b12cc55ddfff475d0cabfda32bdd386fe From b28ae4de0700e4ea1769df844dd55003e44be52e Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 11 Mar 2020 09:53:14 +0100 Subject: [PATCH 068/122] Update mock-core-configs to 32.4-1 --- .gitignore | 1 + mock-core-configs.spec | 9 +++++++-- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9db7efa..38bf68b 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ /mock-core-configs-32.1.tar.gz /mock-core-configs-32.2.tar.gz /mock-core-configs-32.3.tar.gz +/mock-core-configs-32.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index f99610c..3a8ede5 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.3 -Release: 2%{?dist} +Version: 32.4 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -143,6 +143,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Mar 11 2020 Pavel Raiskup 32.4-1 +- disable package_state plugin for openmandriva 4.0/Cooker +- Mageia 6 is EOL +- opensuse: copy ssl ca bundle to correct path + * Fri Feb 21 2020 Pavel Raiskup 32.3-2 - bump version for lost git tag diff --git a/sources b/sources index bbc1b78..3217bec 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.3.tar.gz) = f812364032c52871a12dee887afbe91f4b891fc50452539628aa9047ab6d30014a12b72ef1c8a24beb30bfd729340e0b12cc55ddfff475d0cabfda32bdd386fe +SHA512 (mock-core-configs-32.4.tar.gz) = 6207fa37798ccd9d01a349a8b241e7ad3b8ad950fa4dac6d2a893f47c7c25e683347262cd66fce355a070289b44f281a3dc7bbcd15a83419482a96c5f84f041b From 79898f8260d6c186295e3327d75e2deac644fe10 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 11 Mar 2020 09:55:00 +0100 Subject: [PATCH 069/122] Update mock-core-configs to 32.4-1 --- .gitignore | 1 + mock-core-configs.spec | 9 +++++++-- sources | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9db7efa..38bf68b 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ /mock-core-configs-32.1.tar.gz /mock-core-configs-32.2.tar.gz /mock-core-configs-32.3.tar.gz +/mock-core-configs-32.4.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index f99610c..3a8ede5 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.3 -Release: 2%{?dist} +Version: 32.4 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -143,6 +143,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Mar 11 2020 Pavel Raiskup 32.4-1 +- disable package_state plugin for openmandriva 4.0/Cooker +- Mageia 6 is EOL +- opensuse: copy ssl ca bundle to correct path + * Fri Feb 21 2020 Pavel Raiskup 32.3-2 - bump version for lost git tag diff --git a/sources b/sources index bbc1b78..3217bec 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.3.tar.gz) = f812364032c52871a12dee887afbe91f4b891fc50452539628aa9047ab6d30014a12b72ef1c8a24beb30bfd729340e0b12cc55ddfff475d0cabfda32bdd386fe +SHA512 (mock-core-configs-32.4.tar.gz) = 6207fa37798ccd9d01a349a8b241e7ad3b8ad950fa4dac6d2a893f47c7c25e683347262cd66fce355a070289b44f281a3dc7bbcd15a83419482a96c5f84f041b From e4267adc4707af3485abaae2b3a991a949730407 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 12 Mar 2020 14:32:40 +0100 Subject: [PATCH 070/122] release bump For https://koji.fedoraproject.org/koji/taskinfo?taskID=42402445 failure. Version: 32.4-2 --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 3a8ede5..bc337f8 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ Name: mock-core-configs Version: 32.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -143,6 +143,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Mar 12 2020 Pavel Raiskup - 32.4-2 +- bump for https://koji.fedoraproject.org/koji/taskinfo?taskID=42402445 failure + * Wed Mar 11 2020 Pavel Raiskup 32.4-1 - disable package_state plugin for openmandriva 4.0/Cooker - Mageia 6 is EOL From 01b49acc507ff9e512f5c6e68af2b6607be00417 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 26 Mar 2020 16:30:49 +0100 Subject: [PATCH 071/122] Update mock-core-configs to 32.5-1 --- .gitignore | 1 + mock-core-configs.spec | 16 ++++++++++++---- sources | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 38bf68b..46bc13b 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ /mock-core-configs-32.2.tar.gz /mock-core-configs-32.3.tar.gz /mock-core-configs-32.4.tar.gz +/mock-core-configs-32.5.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index bc337f8..31c302a 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.4 -Release: 2%{?dist} +Version: 32.5 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -143,8 +143,16 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Thu Mar 12 2020 Pavel Raiskup - 32.4-2 -- bump for https://koji.fedoraproject.org/koji/taskinfo?taskID=42402445 failure +* Thu Mar 26 2020 Pavel Raiskup 32.5-1 +- Add Devel repo to CentOS 8 and CentOS Stream (ngompa13@gmail.com) +- Add PowerTools sources repo entry to CentOS 8 and CentOS Stream + (ngompa13@gmail.com) +- Fix openSUSE Leap 15.1 aarch64 update repo & package filters + (ngompa13@gmail.com) +- Add openSUSE Leap 15.2 (ngompa13@gmail.com) +- openSUSE Leap 15.0 is EOL (ngompa13@gmail.com) +- Add OpenMandriva Lx 4.1 (ngompa13@gmail.com) +- OpenMandriva Lx 4.0 is EOL (ngompa13@gmail.com) * Wed Mar 11 2020 Pavel Raiskup 32.4-1 - disable package_state plugin for openmandriva 4.0/Cooker diff --git a/sources b/sources index 3217bec..dba552f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.4.tar.gz) = 6207fa37798ccd9d01a349a8b241e7ad3b8ad950fa4dac6d2a893f47c7c25e683347262cd66fce355a070289b44f281a3dc7bbcd15a83419482a96c5f84f041b +SHA512 (mock-core-configs-32.5.tar.gz) = 552390758e877d9e70604eb29b056f3136fe510d59cbb995bc2d005687f99b466d7e6c64c7137682177b5b33d8c35142f268b2b6ac1a4b60292ca2eaddf5950b From 6958b5629236d3219e7af1f89e7288873644b46f Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 26 Mar 2020 16:39:19 +0100 Subject: [PATCH 072/122] Update mock-core-configs to 32.5-1 --- .gitignore | 1 + mock-core-configs.spec | 13 ++++++++++++- sources | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 38bf68b..46bc13b 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ /mock-core-configs-32.2.tar.gz /mock-core-configs-32.3.tar.gz /mock-core-configs-32.4.tar.gz +/mock-core-configs-32.5.tar.gz diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 3a8ede5..31c302a 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.4 +Version: 32.5 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -143,6 +143,17 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Mar 26 2020 Pavel Raiskup 32.5-1 +- Add Devel repo to CentOS 8 and CentOS Stream (ngompa13@gmail.com) +- Add PowerTools sources repo entry to CentOS 8 and CentOS Stream + (ngompa13@gmail.com) +- Fix openSUSE Leap 15.1 aarch64 update repo & package filters + (ngompa13@gmail.com) +- Add openSUSE Leap 15.2 (ngompa13@gmail.com) +- openSUSE Leap 15.0 is EOL (ngompa13@gmail.com) +- Add OpenMandriva Lx 4.1 (ngompa13@gmail.com) +- OpenMandriva Lx 4.0 is EOL (ngompa13@gmail.com) + * Wed Mar 11 2020 Pavel Raiskup 32.4-1 - disable package_state plugin for openmandriva 4.0/Cooker - Mageia 6 is EOL diff --git a/sources b/sources index 3217bec..dba552f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.4.tar.gz) = 6207fa37798ccd9d01a349a8b241e7ad3b8ad950fa4dac6d2a893f47c7c25e683347262cd66fce355a070289b44f281a3dc7bbcd15a83419482a96c5f84f041b +SHA512 (mock-core-configs-32.5.tar.gz) = 552390758e877d9e70604eb29b056f3136fe510d59cbb995bc2d005687f99b466d7e6c64c7137682177b5b33d8c35142f268b2b6ac1a4b60292ca2eaddf5950b From 897ccbc228f7a904f4892771a86ebe77b3b7f715 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 26 Mar 2020 17:00:54 +0100 Subject: [PATCH 073/122] cleanup gitignore --- .gitignore | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index 46bc13b..189967c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,29 +1 @@ -/mock-core-configs-27.2.tar.gz -/mock-core-configs-27.3.tar.gz -/mock-core-configs-27.4.tar.gz -/mock-core-configs-28.1.tar.gz -/mock-core-configs-28.2.tar.gz -/mock-core-configs-28.3.tar.gz -/mock-core-configs-28.4.tar.gz -/mock-core-configs-29.1.tar.gz -/mock-core-configs-29.2.tar.gz -/mock-core-configs-29.3.tar.gz -/mock-core-configs-29.4.tar.gz -/mock-core-configs-30.1.tar.gz -/mock-core-configs-30.2.tar.gz -/mock-core-configs-30.3.tar.gz -/mock-core-configs-30.4.tar.gz -/mock-core-configs-30.5.tar.gz -/mock-core-configs-31.1.tar.gz -/mock-core-configs-31.2.tar.gz -/mock-core-configs-31.3.tar.gz -/mock-core-configs-31.4.tar.gz -/mock-core-configs-31.5.tar.gz -/mock-core-configs-31.6.tar.gz -/mock-core-configs-31.7.tar.gz -/mock-core-configs-32.0.tar.gz -/mock-core-configs-32.1.tar.gz -/mock-core-configs-32.2.tar.gz -/mock-core-configs-32.3.tar.gz -/mock-core-configs-32.4.tar.gz -/mock-core-configs-32.5.tar.gz +/mock-core-configs-*.tar.gz From 5b34748e72f294630648f92a58bff07f099db1b4 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 1 Apr 2020 18:32:40 +0200 Subject: [PATCH 074/122] Update mock-core-configs to 32.6-1 --- mock-core-configs.spec | 23 +++++++++++++++++++++-- sources | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 31c302a..7a45124 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,7 +2,7 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.5 +Version: 32.6 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -11,13 +11,19 @@ URL: https://github.com/rpm-software-management/mock/ # Source is created by # git clone https://github.com/rpm-software-management/mock.git # cd mock/mock-core-configs -# git reset --hard %{name}-%{version} +# git reset --hard %%{name}-%%{version} # tito build --tgz Source: https://github.com/rpm-software-management/mock/releases/download/%{name}-%{version}-1/%{name}-%{version}.tar.gz BuildArch: noarch +# The mock.rpm requires this. Other packages may provide this if they tend to +# replace the mock-core-configs.rpm functionality. +Provides: mock-configs + # distribution-gpg-keys contains GPG keys used by mock configs Requires: distribution-gpg-keys >= 1.36 +# specify minimal compatible version of mock +Requires: mock >= 2.2 Requires(post): coreutils %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 @@ -91,6 +97,10 @@ elif [ -d %{buildroot}%{_sysconfdir}/bash_completion.d ]; then echo %{_sysconfdir}/bash_completion.d/mock >> %{name}.cfgs fi +# reference valid mock.rpm's docdir with example site-defaults.cfg +mock_docs=%{_pkgdocdir} +mock_docs=${mock_docs//mock-core-configs/mock} +sed -i "s~@MOCK_DOCS@~$mock_docs~" %{buildroot}%{_sysconfdir}/mock/site-defaults.cfg %pre # check for existence of mock group, create it if not found @@ -143,6 +153,15 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Apr 01 2020 Pavel Raiskup 32.6-1 +- the site-defaults.cfg file moved from mock to mock-core-configs +- new option config_opts['isolation'], obsoletes 'use_nspawn' +- declare minimal version of mock, and set this to v2.2 as we use the new + 'isolation' config option now, and we provide site-defaults.cfg file +- specify amazonlinux bootstrap image, to fix --use-bootstrap-image +- allow to replace mock-core-configs by packages that 'Provides: mock-configs' +- rpmlint: remove macro in comment + * Thu Mar 26 2020 Pavel Raiskup 32.5-1 - Add Devel repo to CentOS 8 and CentOS Stream (ngompa13@gmail.com) - Add PowerTools sources repo entry to CentOS 8 and CentOS Stream diff --git a/sources b/sources index dba552f..55dc853 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.5.tar.gz) = 552390758e877d9e70604eb29b056f3136fe510d59cbb995bc2d005687f99b466d7e6c64c7137682177b5b33d8c35142f268b2b6ac1a4b60292ca2eaddf5950b +SHA512 (mock-core-configs-32.6.tar.gz) = 519c73e3f9d34d748a21cfba95324dfdc3ba920475bd0dc9e8dc3e02ed95b7ad8c9d804412a812349553add603f24cd845850679e753bf42a97bf861684c01a5 From 2c39325277deeb0e2a6fdab7c05a4e2dc27933a0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 08:13:43 +0000 Subject: [PATCH 075/122] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 7a45124..395205c 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ Name: mock-core-configs Version: 32.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -153,6 +153,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 32.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Apr 01 2020 Pavel Raiskup 32.6-1 - the site-defaults.cfg file moved from mock to mock-core-configs - new option config_opts['isolation'], obsoletes 'use_nspawn' From 744245637cb43348dad7584caa6953cff6a65a3d Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 6 Aug 2020 16:26:59 +0200 Subject: [PATCH 076/122] Update mock-core-configs to 32.7-1 --- mock-core-configs.spec | 15 ++++++++++----- sources | 2 +- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 395205c..9b601eb 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -2,8 +2,8 @@ %global mockgid 135 Name: mock-core-configs -Version: 32.6 -Release: 2%{?dist} +Version: 32.7 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -21,7 +21,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.36 +Requires: distribution-gpg-keys >= 1.41 # specify minimal compatible version of mock Requires: mock >= 2.2 @@ -100,6 +100,7 @@ fi # reference valid mock.rpm's docdir with example site-defaults.cfg mock_docs=%{_pkgdocdir} mock_docs=${mock_docs//mock-core-configs/mock} +mock_docs=${mock_docs//-%version/-*} sed -i "s~@MOCK_DOCS@~$mock_docs~" %{buildroot}%{_sysconfdir}/mock/site-defaults.cfg %pre @@ -153,8 +154,12 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Tue Jul 28 2020 Fedora Release Engineering - 32.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild +* Thu Aug 06 2020 Pavel Raiskup 32.7-1 +- add branched Fedora 33 configs +- eol Fedora 30 +- tolerate a 1-minute baseurl outages in OpenSUSE configs +- fix site-defaults.cfg reference to docs +- change all openSUSE configs to use the download redirector (baseurl) * Wed Apr 01 2020 Pavel Raiskup 32.6-1 - the site-defaults.cfg file moved from mock to mock-core-configs diff --git a/sources b/sources index 55dc853..87acaee 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.6.tar.gz) = 519c73e3f9d34d748a21cfba95324dfdc3ba920475bd0dc9e8dc3e02ed95b7ad8c9d804412a812349553add603f24cd845850679e753bf42a97bf861684c01a5 +SHA512 (mock-core-configs-32.7.tar.gz) = 4c3a70d9b2c8c2250e5a4ae4f71378813b5727224fe83fd08bac3a910d5ee03265ea2a7ffb45fa8d395988789c656a0578dc89d2de7abded258e92f5dbbeef0c From 02655426c73d9f06c7cc80a0bef1fca830009bcc Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 3 Sep 2020 01:51:28 +0200 Subject: [PATCH 077/122] Update mock-core-configs to 33-1 --- mock-core-configs.spec | 25 ++++++++++++------------- sources | 2 +- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 9b601eb..a6da67b 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,8 +1,5 @@ -# mock group id allocate for Fedora -%global mockgid 135 - Name: mock-core-configs -Version: 32.7 +Version: 33 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -23,7 +20,8 @@ Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs Requires: distribution-gpg-keys >= 1.41 # specify minimal compatible version of mock -Requires: mock >= 2.2 +Requires: mock >= 2.5 +Requires: mock-filesystem Requires(post): coreutils %if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 @@ -103,11 +101,6 @@ mock_docs=${mock_docs//mock-core-configs/mock} mock_docs=${mock_docs//-%version/-*} sed -i "s~@MOCK_DOCS@~$mock_docs~" %{buildroot}%{_sysconfdir}/mock/site-defaults.cfg -%pre -# check for existence of mock group, create it if not found -getent group mock > /dev/null || groupadd -f -g %mockgid -r mock -exit 0 - %post if [ -s /etc/os-release ]; then # fedora and rhel7+ @@ -148,12 +141,18 @@ fi %files -f %{name}.cfgs %license COPYING -%dir %{_sysconfdir}/mock -%dir %{_sysconfdir}/mock/eol -%dir %{_sysconfdir}/mock/templates %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Sep 03 2020 Pavel Raiskup 33-1 +- bump version to 33, as we already ship F33 configs +- because of the mock-filesystem change, depend on mock 2.5 + +* Thu Sep 03 2020 Pavel Raiskup 32.8-1 +- set the DNF user_agent in dnf.conf (msuchy@redhat.com) +- add Fedora ELN configs +- introduce mock-filesystem subpackage (msuchy@redhat.com) + * Thu Aug 06 2020 Pavel Raiskup 32.7-1 - add branched Fedora 33 configs - eol Fedora 30 diff --git a/sources b/sources index 87acaee..6de8872 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-32.7.tar.gz) = 4c3a70d9b2c8c2250e5a4ae4f71378813b5727224fe83fd08bac3a910d5ee03265ea2a7ffb45fa8d395988789c656a0578dc89d2de7abded258e92f5dbbeef0c +SHA512 (mock-core-configs-33.tar.gz) = a5f91115045883db321ac32e05b0d5d391adf17452ab6136105c79c3eec11136366c7ecac5b29cbe51ee9683662c744d6116ffbfdb3aebf3b3493bf0f7807263 From 3b4d0124fb4309b2d0a3096f92ff709784713d0b Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 11 Nov 2020 14:40:35 +0100 Subject: [PATCH 078/122] Update mock-core-configs to 33.1-1 --- mock-core-configs.spec | 10 +++++++++- sources | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index a6da67b..72bc7f3 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 33 +Version: 33.1 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -144,6 +144,14 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Nov 11 2020 Pavel Raiskup 33.1-1 +- ELN fixups (mmathesi@redhat.com) +- EPEL: fix repo-id and name= +- Add missing repos to CentOS 6 and CentOS 7 configs +- Do --disablerepo=centos-sclo* in templates +- Add plain CentOS 6/7/8 configs (without epel) +- EPEL Playground depends on normal EPEL + * Thu Sep 03 2020 Pavel Raiskup 33-1 - bump version to 33, as we already ship F33 configs - because of the mock-filesystem change, depend on mock 2.5 diff --git a/sources b/sources index 6de8872..d51a9b7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-33.tar.gz) = a5f91115045883db321ac32e05b0d5d391adf17452ab6136105c79c3eec11136366c7ecac5b29cbe51ee9683662c744d6116ffbfdb3aebf3b3493bf0f7807263 +SHA512 (mock-core-configs-33.1.tar.gz) = e8dca8d485ca9c787be97535c470bec487c94686990ebee9495efd508d1608ea3fb0c1cda72b6b2a4dbc048b597d574e4e3eaca8a7b99b5dc5ac07ca19dbfa90 From 6637c0a4e981c59ba2cf5730401e96a29cb6d831 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 11 Nov 2020 22:13:19 +0100 Subject: [PATCH 079/122] Update mock-core-configs to 33.2-1 --- mock-core-configs.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 72bc7f3..882efba 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 33.1 +Version: 33.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -144,6 +144,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Nov 11 2020 Pavel Raiskup 33.2-1 +- Add missing CRB repository (jkonecny@redhat.com) + * Wed Nov 11 2020 Pavel Raiskup 33.1-1 - ELN fixups (mmathesi@redhat.com) - EPEL: fix repo-id and name= diff --git a/sources b/sources index d51a9b7..28bfd3f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-33.1.tar.gz) = e8dca8d485ca9c787be97535c470bec487c94686990ebee9495efd508d1608ea3fb0c1cda72b6b2a4dbc048b597d574e4e3eaca8a7b99b5dc5ac07ca19dbfa90 +SHA512 (mock-core-configs-33.2.tar.gz) = 5853012ef7879715ddc0ebd542f2b8d25004e8e66fd7d489bcca7a40385e30573b550b673d8bba60c0b5e9129c75bfff4eac19f141e59b8969054fc22104c430 From 5dc3e2184acbd3577661af7228a782852c48034c Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 20 Nov 2020 13:05:01 +0100 Subject: [PATCH 080/122] Update mock-core-configs to 33.3-1 --- mock-core-configs.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 882efba..b0126e2 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 33.2 +Version: 33.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -144,6 +144,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Nov 20 2020 Pavel Raiskup 33.3-1 +- ELN should use for build Everything repository (jkonecny@redhat.com) + * Wed Nov 11 2020 Pavel Raiskup 33.2-1 - Add missing CRB repository (jkonecny@redhat.com) diff --git a/sources b/sources index 28bfd3f..1c7c7af 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-33.2.tar.gz) = 5853012ef7879715ddc0ebd542f2b8d25004e8e66fd7d489bcca7a40385e30573b550b673d8bba60c0b5e9129c75bfff4eac19f141e59b8969054fc22104c430 +SHA512 (mock-core-configs-33.3.tar.gz) = ba783cf834fc1066977448287b11b545008de4b72804cf965a6cb76e1f439e99688a2c653068ec6c302845c80b067ffb12c0d77477026207cca28766eba9774e From a3fba8ae4530a8d4ab38d2244176f77e3edf1773 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 18 Jan 2021 16:00:18 +0100 Subject: [PATCH 081/122] Update mock-core-configs to 33.4-1 --- mock-core-configs.spec | 32 +++++++++++++++++++++++--------- sources | 2 +- 2 files changed, 24 insertions(+), 10 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index b0126e2..641b557 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 33.3 +Version: 33.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -53,7 +53,6 @@ Config files which allow you to create chroots for: %build -cd etc/host-overrides HOST=none %if 0%{?fedora} HOST="fedora-%{fedora}" @@ -62,13 +61,20 @@ HOST="fedora-%{fedora}" HOST="rhel-%{rhel}" %endif -if [ -d "$HOST" ]; then - pushd "$HOST" - for i in *.cfg; do - cat "$i" >> "../../mock/$i" - done - popd -fi +# host overrides +case $HOST in + rhel-7) + # RPM on EL7 doesn't link against libzstd, and newer Fedora is compressed + # using ZSTD. We need to enable bootstrap image here to be able to + # initialize the Fedora bootstrap chroot. + for config in etc/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 @@ -144,6 +150,14 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Jan 18 2021 Pavel Raiskup 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 33.3-1 - ELN should use for build Everything repository (jkonecny@redhat.com) diff --git a/sources b/sources index 1c7c7af..2fcdff4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-33.3.tar.gz) = ba783cf834fc1066977448287b11b545008de4b72804cf965a6cb76e1f439e99688a2c653068ec6c302845c80b067ffb12c0d77477026207cca28766eba9774e +SHA512 (mock-core-configs-33.4.tar.gz) = 0bf7355d94c43c7414420be93f9a413b0bb19d5ba3692a1d5e41c7fb6b5aea12573e1a6823d49de1a5b01dc835640fc02de547e65761e841e105a319f5d79cfe From bc63f1c49146573e911cb04951c4c81b68d94f3e Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 18 Jan 2021 16:19:05 +0100 Subject: [PATCH 082/122] Update mock-core-configs to 33.5-1 --- mock-core-configs.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 641b557..8eb2948 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 33.4 +Version: 33.5 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -67,7 +67,7 @@ case $HOST in # RPM on EL7 doesn't link against libzstd, and newer Fedora is compressed # using ZSTD. We need to enable bootstrap image here to be able to # initialize the Fedora bootstrap chroot. - for config in etc/fedora-*-*.cfg; do + 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" @@ -150,6 +150,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Jan 18 2021 Pavel Raiskup 33.5-1 +- fix typo in host-specific config generater + * Mon Jan 18 2021 Pavel Raiskup 33.4-1 - fix bootstrapping of newer Fedora on EL7 - efine a bootstrap image for openSUSE Tumbleweed (ngompa13@gmail.com) diff --git a/sources b/sources index 2fcdff4..ffa996c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-33.4.tar.gz) = 0bf7355d94c43c7414420be93f9a413b0bb19d5ba3692a1d5e41c7fb6b5aea12573e1a6823d49de1a5b01dc835640fc02de547e65761e841e105a319f5d79cfe +SHA512 (mock-core-configs-33.5.tar.gz) = 448511d13468cb9fb4ccfd1ce1aa358abe852de8c1082009ec423f475760199942abaf1c5eba43e016a8f3b05029cc08552ecfeb733dcf006b2894e5a099483e From 83e89612eff83f93813b7942408600d8fd65b0ed Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 20:36:55 +0000 Subject: [PATCH 083/122] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 8eb2948..594310b 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs Version: 33.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -150,6 +150,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 33.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jan 18 2021 Pavel Raiskup 33.5-1 - fix typo in host-specific config generater From 98585c10dd111e82af63fc8cf32a6be255a01d06 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 2 Feb 2021 14:56:15 +0100 Subject: [PATCH 084/122] Update mock-core-configs to 33.6-1 --- mock-core-configs.spec | 10 ++++++---- sources | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 594310b..eb00bff 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs -Version: 33.5 -Release: 2%{?dist} +Version: 33.6 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -150,8 +150,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Tue Jan 26 2021 Fedora Release Engineering - 33.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild +* Tue Feb 02 2021 Pavel Raiskup 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 33.5-1 - fix typo in host-specific config generater diff --git a/sources b/sources index ffa996c..6101c8f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-33.5.tar.gz) = 448511d13468cb9fb4ccfd1ce1aa358abe852de8c1082009ec423f475760199942abaf1c5eba43e016a8f3b05029cc08552ecfeb733dcf006b2894e5a099483e +SHA512 (mock-core-configs-33.6.tar.gz) = 1a3e1b0fecadb22ec2612847a12ed22a8bc64e879d2cab307393f932c7f37dba33d3773e6e2ad18269a251e29d69a21766a042031e7c98d25a584fb4ac5f8ba4 From 364c0ec843116bb906535a7236a7b13566bb528f Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 8 Feb 2021 09:08:07 +0100 Subject: [PATCH 085/122] Update mock-core-configs to 34-1 --- mock-core-configs.spec | 10 ++++++++-- sources | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index eb00bff..76d173d 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 33.6 +Version: 34 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.41 +Requires: distribution-gpg-keys >= 1.48 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -150,6 +150,12 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Feb 08 2021 Pavel Raiskup 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 33.6-1 - Add Mageia 8 stable release configs (ngompa13@gmail.com) - Update Mageia Cauldron configuration for Mageia 9 (ngompa13@gmail.com) diff --git a/sources b/sources index 6101c8f..42ce6f4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-33.6.tar.gz) = 1a3e1b0fecadb22ec2612847a12ed22a8bc64e879d2cab307393f932c7f37dba33d3773e6e2ad18269a251e29d69a21766a042031e7c98d25a584fb4ac5f8ba4 +SHA512 (mock-core-configs-34.tar.gz) = e40e224cd4d44fd19709549ebcb6780e41a2ab9b7c1b3b3d6d4bd9fb7e3bae317bdbc474381477daee48670d6415a84f679ec6383622c0bc2fcc765686e4e767 From 8ffb5e8b964aa47fc70695f73b00de0691703df9 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 11 Feb 2021 09:49:08 +0100 Subject: [PATCH 086/122] Update mock-core-configs to 34.1-1 --- mock-core-configs.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 76d173d..c5d48a6 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 34 +Version: 34.1 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -150,6 +150,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Feb 11 2021 Pavel Raiskup 34.1-1 +- fix rawhide config after branching + * Mon Feb 08 2021 Pavel Raiskup 34-1 - add fedora 34 configs (msuchy@redhat.com) - require distribution-gpg-keys with F35 keys (msuchy@redhat.com) diff --git a/sources b/sources index 42ce6f4..5955eed 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-34.tar.gz) = e40e224cd4d44fd19709549ebcb6780e41a2ab9b7c1b3b3d6d4bd9fb7e3bae317bdbc474381477daee48670d6415a84f679ec6383622c0bc2fcc765686e4e767 +SHA512 (mock-core-configs-34.1.tar.gz) = b39f8c092ff2131069c4a63afc343fd9b81c582246e357052fbae88fe88208a32cd9e9ca56bffa99bcd06a071bf2986fabb988dc8a994992e7d6e34c814d0cfd From 8524d3e3686733623e43cbf690f2b5304224f14f Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 22 Feb 2021 19:26:50 +0100 Subject: [PATCH 087/122] Update mock-core-configs to 34.2-1 --- mock-core-configs.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index c5d48a6..64b972e 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 34.1 +Version: 34.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -150,6 +150,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Feb 22 2021 Pavel Raiskup 34.2-1 +- configs: use Fedora N-1 gpg keys for ELN (praiskup@redhat.com) + * Thu Feb 11 2021 Pavel Raiskup 34.1-1 - fix rawhide config after branching diff --git a/sources b/sources index 5955eed..f64fe00 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-34.1.tar.gz) = b39f8c092ff2131069c4a63afc343fd9b81c582246e357052fbae88fe88208a32cd9e9ca56bffa99bcd06a071bf2986fabb988dc8a994992e7d6e34c814d0cfd +SHA512 (mock-core-configs-34.2.tar.gz) = 7a3f8e34a429a537c35fdd709b06bedf5bd4a6baaf9ad1dc0fe7ffc2488e3d72cfe99457207846a6c12739124d140c85bb16bde432332aa8af1ef2dd6075157b From 00f4dcfb5659ed8718a755917b37a6ee1255fb77 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 27 Apr 2021 18:33:09 +0200 Subject: [PATCH 088/122] Update mock-core-configs to 34.3-1 --- mock-core-configs.spec | 11 ++++++++++- sources | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 64b972e..86acfa8 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 34.2 +Version: 34.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -150,6 +150,15 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Tue Apr 27 2021 Pavel Raiskup 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 34.2-1 - configs: use Fedora N-1 gpg keys for ELN (praiskup@redhat.com) diff --git a/sources b/sources index f64fe00..f52f8c8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-34.2.tar.gz) = 7a3f8e34a429a537c35fdd709b06bedf5bd4a6baaf9ad1dc0fe7ffc2488e3d72cfe99457207846a6c12739124d140c85bb16bde432332aa8af1ef2dd6075157b +SHA512 (mock-core-configs-34.3.tar.gz) = 397623f20f46badd17ad2c43efcb9996d754697121fae09054d2d94517ccd149c63122bc2beb5654d23527c683356c7f872d674744ae28b9c649e96f01dd61f0 From a0dee0997cb463026a04fb5aacaa518d2862fc0a Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 8 Jun 2021 19:12:55 +0200 Subject: [PATCH 089/122] Update mock-core-configs to 34.4-1 --- mock-core-configs.spec | 9 +++++++-- sources | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 86acfa8..ea6c133 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 34.3 +Version: 34.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.48 +Requires: distribution-gpg-keys >= 1.54 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -150,6 +150,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Tue Jun 08 2021 Pavel Raiskup 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 34.3-1 - Add Oracle Linux 8 (ngompa13@gmail.com) - Add Oracle Linux 7 (ngompa13@gmail.com) diff --git a/sources b/sources index f52f8c8..4477a71 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-34.3.tar.gz) = 397623f20f46badd17ad2c43efcb9996d754697121fae09054d2d94517ccd149c63122bc2beb5654d23527c683356c7f872d674744ae28b9c649e96f01dd61f0 +SHA512 (mock-core-configs-34.4.tar.gz) = 99e1a8b5526828e7dbe1d474264abff2e87aaec70e06f177c2d794fbb3b877580319f2e4a1d0dab476cdb6fac9545686aaca062a4f4a4497878f2ebf751ee4c7 From 25741bc4a4517acdc85ff475d7cdf4e18e4fb777 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 19 Jul 2021 09:13:19 +0200 Subject: [PATCH 090/122] Update mock-core-configs to 34.5-1 --- mock-core-configs.spec | 15 ++++++++++++--- sources | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index ea6c133..8dab8e7 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 34.4 +Version: 34.5 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.54 +Requires: distribution-gpg-keys >= 1.55 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -32,7 +32,6 @@ Requires(post): system-release Requires(post): python3 Requires(post): sed %endif -Requires(pre): shadow-utils %if 0%{?rhel} && 0%{?rhel} <= 7 # to detect correct default.cfg Requires(post): python @@ -150,6 +149,16 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Jul 19 2021 Pavel Raiskup 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 34.4-1 - Add GPG keys and RPM repositories for openSUSE Leap 15.3 (ngompa13@gmail.com) - EOL Fedora 32 (msuchy@redhat.com) diff --git a/sources b/sources index 4477a71..674952e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-34.4.tar.gz) = 99e1a8b5526828e7dbe1d474264abff2e87aaec70e06f177c2d794fbb3b877580319f2e4a1d0dab476cdb6fac9545686aaca062a4f4a4497878f2ebf751ee4c7 +SHA512 (mock-core-configs-34.5.tar.gz) = ecef4bb62de11efa162951762e2eeb71e4e907f0fc645277e5652f7676ceeaa5e70d3f202571cc80a08a08eb052fa8bfca55221ee921a67bec7e11c6c44541dc From 22b17533ac9a2aa49d321f6c5d4655896aa88746 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 19 Jul 2021 14:25:39 +0200 Subject: [PATCH 091/122] Update mock-core-configs to 34.6-1 --- mock-core-configs.spec | 7 ++++++- sources | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 8dab8e7..fbcbe08 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 34.5 +Version: 34.6 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -149,6 +149,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Jul 19 2021 Pavel Raiskup 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 34.5-1 - Add CentOS Stream 9 "preview" files - Add rocky support to mock (tucklesepk@gmail.com) diff --git a/sources b/sources index 674952e..a086975 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-34.5.tar.gz) = ecef4bb62de11efa162951762e2eeb71e4e907f0fc645277e5652f7676ceeaa5e70d3f202571cc80a08a08eb052fa8bfca55221ee921a67bec7e11c6c44541dc +SHA512 (mock-core-configs-34.6.tar.gz) = 7d09acd6169dad6d2de569e16ba171d03f55edc0d0241651050780d4ef0754f2f4dfa9ab62735271b481a22ff99b195680d88c3439b27f7d9f789c7600f98320 From f01b41e6230260f95c5ad5521a86d33c629039e6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 15:09:51 +0000 Subject: [PATCH 092/122] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index fbcbe08..6c8b9b2 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs Version: 34.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -149,6 +149,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 34.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Mon Jul 19 2021 Pavel Raiskup 34.6-1 - Disable Rocky Linux "Devel" repo by default (ngompa13@gmail.com) - Fix URL for Rocky Linux repos in commented out "baseurl" lines From 496e4ee6d7b39f92dec7b9afa34cebd895c24353 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 16 Aug 2021 07:37:45 +0200 Subject: [PATCH 093/122] Update mock-core-configs to 35-1 --- mock-core-configs.spec | 8 ++++---- sources | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 6c8b9b2..4cf1335 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs -Version: 34.6 -Release: 2%{?dist} +Version: 35 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -149,8 +149,8 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Thu Jul 22 2021 Fedora Release Engineering - 34.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild +* Mon Aug 16 2021 Pavel Raiskup 35-1 +- config: add Fedora 35 configs * Mon Jul 19 2021 Pavel Raiskup 34.6-1 - Disable Rocky Linux "Devel" repo by default (ngompa13@gmail.com) diff --git a/sources b/sources index a086975..57567df 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-34.6.tar.gz) = 7d09acd6169dad6d2de569e16ba171d03f55edc0d0241651050780d4ef0754f2f4dfa9ab62735271b481a22ff99b195680d88c3439b27f7d9f789c7600f98320 +SHA512 (mock-core-configs-35.tar.gz) = 39773f3d6cdd21514ca83769cb528517c771faa0f767b8d3acdd4cb5e805d857f84e14b621b14d029ee83d6cddfe24e30db16634a451cd2e9f5b3cd619f6aa2d From b3fc5e6f7ebb2f1feb2a52795f233ec6e7022b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Thu, 16 Sep 2021 09:21:41 +0200 Subject: [PATCH 094/122] Update mock-core-configs to 36-1 --- mock-core-configs.spec | 12 +++++++++++- sources | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 4cf1335..0c29b6d 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 35 +Version: 36 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -149,6 +149,16 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Sep 16 2021 Miroslav Suchý 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 35-1 - config: add Fedora 35 configs diff --git a/sources b/sources index 57567df..280f11f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-35.tar.gz) = 39773f3d6cdd21514ca83769cb528517c771faa0f767b8d3acdd4cb5e805d857f84e14b621b14d029ee83d6cddfe24e30db16634a451cd2e9f5b3cd619f6aa2d +SHA512 (mock-core-configs-36.tar.gz) = 90f1fafdcc71a1e0a6d27adbf9f4f81f39df84571cc7842a981ad6004dfde21952e45b3e2e6758407ebc95236dab4a941d643b3c51af3a9b67a8621f41bfda65 From fb0631f512875612ec702b090a52b697f7b8a724 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 8 Oct 2021 13:56:51 +0200 Subject: [PATCH 095/122] Update mock-core-configs to 36.1-1 --- mock-core-configs.spec | 6 +++++- sources | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 0c29b6d..f9dc077 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 36 +Version: 36.1 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -149,6 +149,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Oct 08 2021 Pavel Raiskup 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ý 36-1 - config: Align CentOS Stream 9 with the production configuration (ngompa13@gmail.com) diff --git a/sources b/sources index 280f11f..d80d182 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-36.tar.gz) = 90f1fafdcc71a1e0a6d27adbf9f4f81f39df84571cc7842a981ad6004dfde21952e45b3e2e6758407ebc95236dab4a941d643b3c51af3a9b67a8621f41bfda65 +SHA512 (mock-core-configs-36.1.tar.gz) = 7465152cbf6b66e36214c1d57dffc265cdd93dd7cf6068283a442f8168fe970283f416772579b3126e2a127e405e4ab2c75b456c47fe82d16bc4175580d827c9 From 2535fd58dfcda8465721c340b55847a78d1180e4 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 26 Oct 2021 16:12:14 +0200 Subject: [PATCH 096/122] Update mock-core-configs to 36.2-1 --- mock-core-configs.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index f9dc077..2b3bc12 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 36.1 +Version: 36.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -149,6 +149,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Tue Oct 26 2021 Pavel Raiskup 36.2-1 +- bump eln to F36 (praiskup@redhat.com) + * Fri Oct 08 2021 Pavel Raiskup 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) diff --git a/sources b/sources index d80d182..9151dfc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-36.1.tar.gz) = 7465152cbf6b66e36214c1d57dffc265cdd93dd7cf6068283a442f8168fe970283f416772579b3126e2a127e405e4ab2c75b456c47fe82d16bc4175580d827c9 +SHA512 (mock-core-configs-36.2.tar.gz) = 6e8674a1f51a4b207df5f55cc0365a4a950780f8691fa240a693c4e1a2296bf91f3feb4073b70bf27e148f812bf1c43edb4e059be972d3ebcaadb55ab25090ee From 66e6ad56fcbd989d57f4f5b1d7bd5de7ac364c61 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 29 Oct 2021 08:59:59 +0200 Subject: [PATCH 097/122] Update mock-core-configs to 36.3-1 --- mock-core-configs.spec | 9 +++++++-- sources | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 2b3bc12..4537bc3 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 36.2 +Version: 36.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.55 +Requires: distribution-gpg-keys >= 1.59 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -149,6 +149,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Oct 29 2021 Pavel Raiskup 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 36.2-1 - bump eln to F36 (praiskup@redhat.com) diff --git a/sources b/sources index 9151dfc..1d5bd4c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-36.2.tar.gz) = 6e8674a1f51a4b207df5f55cc0365a4a950780f8691fa240a693c4e1a2296bf91f3feb4073b70bf27e148f812bf1c43edb4e059be972d3ebcaadb55ab25090ee +SHA512 (mock-core-configs-36.3.tar.gz) = 6d8215cdbe498683a930ec66b6b30085e8ee446ce0f9c5bec28fe856505d6c4e11ec2c680dcb5a71814693b00f45f7d286e4fc8bac12c0fe70fb3b70b2235502 From 4378e227cc0e7d216ba590b6bc0fdcead0b0d186 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 16 Dec 2021 19:01:29 +0100 Subject: [PATCH 098/122] Update mock-core-configs to 36.4-1 --- mock-core-configs.spec | 31 +++++++++++++++++++++++++++++-- sources | 2 +- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 4537bc3..3901227 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 36.3 +Version: 36.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.59 +Requires: distribution-gpg-keys >= 1.60 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -89,7 +89,10 @@ cp -a etc/mock/eol/templates/*.tpl %{buildroot}%{_sysconfdir}/mock/eol/templates # generate files section with config - there is many of them echo "%defattr(0644, root, mock)" > %{name}.cfgs find %{buildroot}%{_sysconfdir}/mock -name "*.cfg" -o -name '*.tpl' \ + | grep -v chroot-aliases \ | sed -e "s|^%{buildroot}|%%config(noreplace) |" >> %{name}.cfgs +echo "%%config %{_sysconfdir}/mock/chroot-aliases.cfg" >> %{name}.cfgs + # just for %%ghosting purposes ln -s fedora-rawhide-x86_64.cfg %{buildroot}%{_sysconfdir}/mock/default.cfg # bash-completion @@ -149,6 +152,30 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Dec 16 2021 Pavel Raiskup 36.4-1 +- add CentOS Stream 9 + EPEL Next 9 (ngompa13@gmail.com) +- add compatibility symlinks for EPEL 7 to centos+epel-7-* (ngompa13@gmail.com) +- EPEL 7 for AArch64 and PPC64 are EOL (ngompa13@gmail.com) +- resolve the multiple "local" repo collision (from multiple templates) +- configure the alternative help for missing 'epel-8-*' configs +- Fedora 33 is EOL +- rhelepel moved to rhel+epel +- EOL the EPEL Playground configs (ngompa13@gmail.com) +- Add rocky+epel confs + Disable devel-debug (tucklesepk@gmail.com) +- Rename epel to centos+epel (ngompa13@gmail.com) +- fix the root name and remove Next from the EPEL 9 configs (ngompa13@gmail.com) +- rename 'epel-next' to 'centos-stream+epel-next' (ngompa13@gmail.com) +- add epel9 repos to epel9 template (carl@george.computer) +- rhbz#2026571 - expand dnf_vars (msuchy@redhat.com) +- oraclelinux+epel configs (carl@george.computer) +- Add AlmaLinux+EPEL configs (ngompa13@gmail.com) +- add navy-8-x86_64 (adil@linux.com) +- use quay.io Almalinux image (gotmax@e.email) +- use fully qualified bootstrap_image name (gotmax@e.email) +- update almalinux-8.tpl bootstrap_image (gotmax@e.email) +- add Koji local repos to CentOS Stream configs (ngompa13@gmail.com) +- reduce packages installed in epel chroots (carl@george.computer) + * Fri Oct 29 2021 Pavel Raiskup 36.3-1 - add EuroLinux 8 aarch64 (alex@euro-linux.com) - add HA and RS configs to EuroLinux configs (alex@euro-linux.com) diff --git a/sources b/sources index 1d5bd4c..16c809f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-36.3.tar.gz) = 6d8215cdbe498683a930ec66b6b30085e8ee446ce0f9c5bec28fe856505d6c4e11ec2c680dcb5a71814693b00f45f7d286e4fc8bac12c0fe70fb3b70b2235502 +SHA512 (mock-core-configs-36.4.tar.gz) = 32c60b81cfa2b9a17633d936bfb7aa86d82d99d1c69709cce1be437010a62567d402a71e6e36b5593d3741516f3ef4adfc10b26c53fa546fc9b50ec843712dd9 From b27a0dd39cc3a1840561d4e56e14f021923361d1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 20:11:24 +0000 Subject: [PATCH 099/122] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 3901227..0c501f7 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs Version: 36.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -152,6 +152,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 36.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Dec 16 2021 Pavel Raiskup 36.4-1 - add CentOS Stream 9 + EPEL Next 9 (ngompa13@gmail.com) - add compatibility symlinks for EPEL 7 to centos+epel-7-* (ngompa13@gmail.com) From 66a95cbcbb98a8f5fe2969af188dd76564fae72d Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 2 Feb 2022 14:23:30 +0100 Subject: [PATCH 100/122] Update mock-core-configs to 37-1 --- mock-core-configs.spec | 27 ++++++++++----------------- sources | 2 +- 2 files changed, 11 insertions(+), 18 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 0c501f7..9e41b32 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs -Version: 36.4 -Release: 2%{?dist} +Version: 37 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -18,26 +18,18 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.60 +Requires: distribution-gpg-keys >= 1.64 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem Requires(post): coreutils -%if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 # to detect correct default.cfg Requires(post): python3-dnf Requires(post): python3-hawkey Requires(post): system-release Requires(post): python3 Requires(post): sed -%endif -%if 0%{?rhel} && 0%{?rhel} <= 7 -# to detect correct default.cfg -Requires(post): python -Requires(post): yum -Requires(post): /etc/os-release -%endif %description Config files which allow you to create chroots for: @@ -126,15 +118,11 @@ else # something obsure, use buildtime version ver=%{?rhel}%{?fedora}%{?mageia} fi -%if 0%{?fedora} || 0%{?mageia} || 0%{?rhel} > 7 if [ -s /etc/mageia-release ]; then mock_arch=$(sed -n '/^$/!{$ s/.* \(\w*\)$/\1/p}' /etc/mageia-release) else mock_arch=$(python3 -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") fi -%else -mock_arch=$(python -c "import rpmUtils.arch; baseArch = rpmUtils.arch.getBaseArch(); print baseArch") -%endif cfg=%{?fedora:fedora}%{?rhel:epel}%{?mageia:mageia}-$ver-${mock_arch}.cfg if [ -e %{_sysconfdir}/mock/$cfg ]; then if [ "$(readlink %{_sysconfdir}/mock/default.cfg)" != "$cfg" ]; then @@ -152,8 +140,13 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Thu Jan 20 2022 Fedora Release Engineering - 36.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild +* Wed Feb 02 2022 Pavel Raiskup 37-1 +- move CentOS/EPEL 8 configs to eol/ +- Fedora 36 branching, Rawhide == Fedora 37 now +- depend on distribution-gpg-keys 1.64 +- drop failovermethod=priority from EL8 configs +- Add Extras repo for CentOS Stream 9 (ngompa13@gmail.com) +- remove el7 specific parts from the spec file (msuchy@redhat.com) * Thu Dec 16 2021 Pavel Raiskup 36.4-1 - add CentOS Stream 9 + EPEL Next 9 (ngompa13@gmail.com) diff --git a/sources b/sources index 16c809f..e02918c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-36.4.tar.gz) = 32c60b81cfa2b9a17633d936bfb7aa86d82d99d1c69709cce1be437010a62567d402a71e6e36b5593d3741516f3ef4adfc10b26c53fa546fc9b50ec843712dd9 +SHA512 (mock-core-configs-37.tar.gz) = 137a3d8de7fab7c46556ebd0c4805d48218471ed12ad6fa9d0e2acf6dca89de4accfb74dbdadcd83c732e5ffa70d6d0df3db0f87683a8e4189f11a6248e60ac6 From d159e44c92c7431f1888c4245f70d91e5f412ba5 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 4 Feb 2022 08:53:10 +0100 Subject: [PATCH 101/122] Update mock-core-configs to 37.1-1 --- mock-core-configs.spec | 54 +++++++++++++++++++++++------------------- sources | 2 +- 2 files changed, 31 insertions(+), 25 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 9e41b32..a0f82e2 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 37 +Version: 37.1 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -44,28 +44,6 @@ Config files which allow you to create chroots for: %build -HOST=none -%if 0%{?fedora} -HOST="fedora-%{fedora}" -%endif -%if 0%{?rhel} -HOST="rhel-%{rhel}" -%endif - -# host overrides -case $HOST in - rhel-7) - # RPM on EL7 doesn't link against libzstd, and newer Fedora is compressed - # using ZSTD. We need to enable bootstrap image here to be able to - # initialize the Fedora bootstrap chroot. - 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 @@ -123,7 +101,30 @@ if [ -s /etc/mageia-release ]; then else mock_arch=$(python3 -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") fi -cfg=%{?fedora:fedora}%{?rhel:epel}%{?mageia:mageia}-$ver-${mock_arch}.cfg + +cfg=unknown-distro +%if 0%{?fedora} +cfg=fedora-$ver-$mock_arch.cfg +%endif +%if 0%{?rhel} +# Being installed on RHEL, or a RHEL fork. Detect it. +distro_id=$(. /etc/os-release; echo $ID) +case $distro_id in +centos) + # This package is EL8+, and there's only CentOS Stream now. + distro_id=centos-stream + ;; +almalinux) + # AlmaLinux configs look like 'alma+epel' + distro_id=alma + ;; +esac +cfg=$distro_id+epel-$ver-$mock_arch.cfg +%endif +%if 0%{?mageia} +cfg=mageia-$ver-$mock_arch.cfg +%endif + if [ -e %{_sysconfdir}/mock/$cfg ]; then if [ "$(readlink %{_sysconfdir}/mock/default.cfg)" != "$cfg" ]; then ln -s $cfg %{_sysconfdir}/mock/default.cfg 2>/dev/null || ln -s -f $cfg %{_sysconfdir}/mock/default.cfg.rpmnew @@ -140,6 +141,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Feb 04 2022 Pavel Raiskup 37.1-1 +- drop EL7 related %%build hack +- link default.cfg file to the right EL N config file +- Add centos-stream+epel-8 configs + * Wed Feb 02 2022 Pavel Raiskup 37-1 - move CentOS/EPEL 8 configs to eol/ - Fedora 36 branching, Rawhide == Fedora 37 now diff --git a/sources b/sources index e02918c..c608ee1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.tar.gz) = 137a3d8de7fab7c46556ebd0c4805d48218471ed12ad6fa9d0e2acf6dca89de4accfb74dbdadcd83c732e5ffa70d6d0df3db0f87683a8e4189f11a6248e60ac6 +SHA512 (mock-core-configs-37.1.tar.gz) = 9df88407af742c96500f4e71e434159c2652280563119392ffd7b5a499994ec6802fb0fb02ed17a3f8a9c081b5bc826ac77fcefab51f3b5f2ec17e1b56d16506 From 96cda325a9d76874541a123503f12fc19d71b1a2 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 3 Mar 2022 08:20:23 +0100 Subject: [PATCH 102/122] Update mock-core-configs to 37.2-1 --- mock-core-configs.spec | 10 ++++++++-- sources | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index a0f82e2..e639483 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 37.1 +Version: 37.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.64 +Requires: distribution-gpg-keys >= 1.66 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -141,6 +141,12 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Mar 03 2022 Pavel Raiskup 37.2-1 +- Update CentOS Stream 9 Extras repo to use correct key (ngompa@centosproject.org) +- Add AlmaLinux+EPEL 8 for POWER (ppc64le) (ngompa13@gmail.com) +- Add AlmaLinux 8 for POWER (ppc64le) (ngompa13@gmail.com) +- Delete Fedora 37/Rawhide armhfp configs (miro@hroncok.cz) + * Fri Feb 04 2022 Pavel Raiskup 37.1-1 - drop EL7 related %%build hack - link default.cfg file to the right EL N config file diff --git a/sources b/sources index c608ee1..e621909 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.1.tar.gz) = 9df88407af742c96500f4e71e434159c2652280563119392ffd7b5a499994ec6802fb0fb02ed17a3f8a9c081b5bc826ac77fcefab51f3b5f2ec17e1b56d16506 +SHA512 (mock-core-configs-37.2.tar.gz) = 41dd928f66c7c5fa8869ac9160bfd873c63ddeaf4f749fbfb32388042c867c4d0998f4b8b6ad41bd222ab33b66e0a07c33285302e62bec3b3c57dd0c42e5c953 From bead080bbc3dedc9b8b37e6b8fc11ee6cdc1cc9f Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 7 Apr 2022 08:53:47 +0200 Subject: [PATCH 103/122] Update mock-core-configs to 37.3-1 --- mock-core-configs.spec | 19 ++++++++++++------- sources | 2 +- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index e639483..88edaa4 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 37.2 +Version: 37.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -32,12 +32,11 @@ Requires(post): python3 Requires(post): sed %description -Config files which allow you to create chroots for: - * Fedora - * Epel - * Mageia - * Custom chroot - * OpenSuse Tumbleweed and Leap +Mock configuration files which allow you to create chroots for Alma Linux, +Amazon Linux, CentOS, CentOS Stream, EuroLinux, Fedora, Fedora EPEL, Mageia, +Navy Linux, OpenMandriva Lx, openSUSE, Oracle Linux, Red Hat Enterprise Linux, +Rocky Linux and various other specific or combined chroots. + %prep %setup -q @@ -141,6 +140,12 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Apr 06 2022 Pavel Raiskup 37.3-1 +- updated %%description field +- provide 'epel-9' symlinks for 'fedpkg mockbuild' +- allow n-2 gpg key for Fedora ELN (msuchy@redhat.com) +- added config "description" fields for --list-chroots (msuchy@redhat.com) + * Thu Mar 03 2022 Pavel Raiskup 37.2-1 - Update CentOS Stream 9 Extras repo to use correct key (ngompa@centosproject.org) - Add AlmaLinux+EPEL 8 for POWER (ppc64le) (ngompa13@gmail.com) diff --git a/sources b/sources index e621909..f21ca36 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.2.tar.gz) = 41dd928f66c7c5fa8869ac9160bfd873c63ddeaf4f749fbfb32388042c867c4d0998f4b8b6ad41bd222ab33b66e0a07c33285302e62bec3b3c57dd0c42e5c953 +SHA512 (mock-core-configs-37.3.tar.gz) = d171f8fd21f20cdb57eedf458f8c1950fd337d4bd201b6db52916c37ee1afdabcf851e1b32af7aaa7ddb89b06123f3b95716bea940e7e37e7d1701cffbc06f4e From 27f42320c2494bf1edb7a7e3775da85399cfbb92 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 19 May 2022 13:19:38 +0200 Subject: [PATCH 104/122] Update mock-core-configs to 37.4-1 --- mock-core-configs.spec | 10 ++++++++-- sources | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 88edaa4..f68d359 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 37.3 +Version: 37.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.66 +Requires: distribution-gpg-keys >= 1.71 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -140,6 +140,12 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu May 19 2022 Pavel Raiskup 37.4-1 +- Add AlmaLinux 9 and AlmaLinux 9 + EPEL configs (neal@gompa.dev) +- Update the AlmaLinux 8 GPG key path (neal@gompa.dev) +- Fix description typo on AlmaLinux 8 for x86_64 (neal@gompa.dev) +- Add RHEL9 templates and configs (carl@george.computer) + * Wed Apr 06 2022 Pavel Raiskup 37.3-1 - updated %%description field - provide 'epel-9' symlinks for 'fedpkg mockbuild' diff --git a/sources b/sources index f21ca36..7b1e4a8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.3.tar.gz) = d171f8fd21f20cdb57eedf458f8c1950fd337d4bd201b6db52916c37ee1afdabcf851e1b32af7aaa7ddb89b06123f3b95716bea940e7e37e7d1701cffbc06f4e +SHA512 (mock-core-configs-37.4.tar.gz) = 64b0fe9ed52aac09775c736fa4ec0c5ed338eb9d4bad94b42e47e7c8726bb53315ff259b8086c94dfd89c90581a0963ddd1bd158ba237e2abfe8a59ede575f6c From d2e22c30ea583026b181126bc4091e3da8f0da0e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 23:30:10 +0000 Subject: [PATCH 105/122] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index f68d359..6df136c 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs Version: 37.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -140,6 +140,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 37.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu May 19 2022 Pavel Raiskup 37.4-1 - Add AlmaLinux 9 and AlmaLinux 9 + EPEL configs (neal@gompa.dev) - Update the AlmaLinux 8 GPG key path (neal@gompa.dev) From e6342e0f93b24f70459a4c5c128de70633f51bb6 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Sat, 23 Jul 2022 09:31:59 +0200 Subject: [PATCH 106/122] Update mock-core-configs to 37.5-1 --- mock-core-configs.spec | 22 +++++++++++++++++----- sources | 2 +- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 6df136c..3cfd47c 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs -Version: 37.4 -Release: 2%{?dist} +Version: 37.5 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPLv2+ @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.71 +Requires: distribution-gpg-keys >= 1.74 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -140,8 +140,20 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Thu Jul 21 2022 Fedora Release Engineering - 37.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild +* Fri Jul 22 2022 Pavel Raiskup 37.5-1 +- configs: add ELN local Koji repo +- config: sync epel-8 and epel-9 templates +- Add Rocky Linux 9 Configuration and Mod RL8 (label@rockylinux.org) +- Update Fedora ELN repo template (sgallagh@redhat.com) +- EuroLinux 9 chroot configs added (git@istiak.com) +- Fedora 34 is EOL +- circlelinux+epel-8 as epel-8 alternative +- Fix dist value for openSUSE Leap 15.4 (ngompa@opensuse.org) +- Add CircleLinux 8 configs (bella@cclinux.org) +- Add openSUSE Leap 15.4 configs (ngompa@opensuse.org) +- Move openSUSE Leap 15.2 to EOL directory (ngompa@opensuse.org) +- Use MirrorCache for openSUSE repositories instead of MirrorBrain (ngompa@opensuse.org) +- Add Anolis OS 7 and Anolis OS 8 templates and configs (wb-zh951434@alibaba-inc.com) * Thu May 19 2022 Pavel Raiskup 37.4-1 - Add AlmaLinux 9 and AlmaLinux 9 + EPEL configs (neal@gompa.dev) diff --git a/sources b/sources index 7b1e4a8..785d3e0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.4.tar.gz) = 64b0fe9ed52aac09775c736fa4ec0c5ed338eb9d4bad94b42e47e7c8726bb53315ff259b8086c94dfd89c90581a0963ddd1bd158ba237e2abfe8a59ede575f6c +SHA512 (mock-core-configs-37.5.tar.gz) = e274748e16d5e747f88dd53bc30edb59c756c42b06dbf537ea1efcf8d758d28dd708f7a91597ecf9ce563e4fc3f328d98546e89ebb11a16f57d5c4a5516d1d73 From 28ab99a2d462ca2e3fe99328db91c5b23fc8d4af Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 10 Aug 2022 12:32:58 +0200 Subject: [PATCH 107/122] Update mock-core-configs to 37.6-1 --- mock-core-configs.spec | 7 ++++++- sources | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 3cfd47c..16021d6 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 37.5 +Version: 37.6 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -140,6 +140,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Aug 10 2022 Pavel Raiskup 37.6-1 +- Branch Fedora 37 configs (miro@hroncok.cz) +- Add anolis-release for Anolis OS 7 and Anolis OS 8 templates (wb- + zh951434@alibaba-inc.com) + * Fri Jul 22 2022 Pavel Raiskup 37.5-1 - configs: add ELN local Koji repo - config: sync epel-8 and epel-9 templates diff --git a/sources b/sources index 785d3e0..626f44a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.5.tar.gz) = e274748e16d5e747f88dd53bc30edb59c756c42b06dbf537ea1efcf8d758d28dd708f7a91597ecf9ce563e4fc3f328d98546e89ebb11a16f57d5c4a5516d1d73 +SHA512 (mock-core-configs-37.6.tar.gz) = 767169874e4eff7311206ad9c68a75869eea93c373b69edce756e279c7213769921ae9b16b4ae2414c742c56567f57913cd91fd2248a35aa790e1e95b6d2caa6 From 7daac7e66924764c30fbf1d099bdc7f6af40d441 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 10 Aug 2022 14:07:18 +0200 Subject: [PATCH 108/122] Update mock-core-configs to 37.7-1 --- mock-core-configs.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 16021d6..52906ba 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 37.6 +Version: 37.7 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.74 +Requires: distribution-gpg-keys >= 1.76 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -140,6 +140,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Wed Aug 10 2022 Pavel Raiskup 37.7-1 +- depend on distribution-gpg-keys 1.76 (F38 key) + * Wed Aug 10 2022 Pavel Raiskup 37.6-1 - Branch Fedora 37 configs (miro@hroncok.cz) - Add anolis-release for Anolis OS 7 and Anolis OS 8 templates (wb- diff --git a/sources b/sources index 626f44a..5aa8e37 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.6.tar.gz) = 767169874e4eff7311206ad9c68a75869eea93c373b69edce756e279c7213769921ae9b16b4ae2414c742c56567f57913cd91fd2248a35aa790e1e95b6d2caa6 +SHA512 (mock-core-configs-37.7.tar.gz) = d7baf348103a3a8f5a1f13eaf0df7eebc7df342747a9e894e0d713b82afb0e02f36243341e539ddc6af34c87c48abdf60dfd66fc5a88e96bf828c054fa399958 From 4426cc94a6fc7d3b845ae5b86f0c89021987b528 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 27 Sep 2022 08:21:28 +0200 Subject: [PATCH 109/122] Update mock-core-configs to 37.8-1 --- mock-core-configs.spec | 14 +++++++++++--- sources | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 52906ba..ebdabb8 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,9 +1,9 @@ Name: mock-core-configs -Version: 37.7 +Version: 37.8 Release: 1%{?dist} Summary: Mock core config files basic chroots -License: GPLv2+ +License: GPL-2.0-or-later URL: https://github.com/rpm-software-management/mock/ # Source is created by # git clone https://github.com/rpm-software-management/mock.git @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.76 +Requires: distribution-gpg-keys >= 1.77 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -140,6 +140,14 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Tue Sep 27 2022 Pavel Raiskup 37.8-1 +- openEuler 22.03 configs added (yikunkero@gmail.com) +- openEuler 20.03 configs added (yikunkero@gmail.com) +- Oracle Linux 9 configs added (a.samets@gmail.com) +- change license to spdx (msuchy@redhat.com) +- Update to AlmaLinux Quay.io repo (srbala@gmail.com) +- EPEL Koji repo not exposed when we are on EPEL Next (miro@hroncok.cz) + * Wed Aug 10 2022 Pavel Raiskup 37.7-1 - depend on distribution-gpg-keys 1.76 (F38 key) diff --git a/sources b/sources index 5aa8e37..d0aa1de 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.7.tar.gz) = d7baf348103a3a8f5a1f13eaf0df7eebc7df342747a9e894e0d713b82afb0e02f36243341e539ddc6af34c87c48abdf60dfd66fc5a88e96bf828c054fa399958 +SHA512 (mock-core-configs-37.8.tar.gz) = c838a7a6a6f63fade1ffe66eeb76438941d83ab4443fa03fc217e203015a6ee3d4d045fb7551fa4b6b130cf553c88e64aa76f5286e0872290f7088e958bbd10c From ec5783fdec32302581e4e4307a819c0b0458c7c1 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 5 Jan 2023 16:29:15 +0100 Subject: [PATCH 110/122] Update mock-core-configs to 37.9-1 --- mock-core-configs.spec | 6 +++++- sources | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index ebdabb8..5fb3e8c 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 37.8 +Version: 37.9 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -140,6 +140,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Jan 05 2023 Pavel Raiskup 37.9-1 +- missmatching gpg key and rpms in openEuler 20.03 LTS (pkwarcraft@gmail.com) +- drop unneccessary module docs from configuration files (nkadel@gmail.com) + * Tue Sep 27 2022 Pavel Raiskup 37.8-1 - openEuler 22.03 configs added (yikunkero@gmail.com) - openEuler 20.03 configs added (yikunkero@gmail.com) diff --git a/sources b/sources index d0aa1de..8c251ae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.8.tar.gz) = c838a7a6a6f63fade1ffe66eeb76438941d83ab4443fa03fc217e203015a6ee3d4d045fb7551fa4b6b130cf553c88e64aa76f5286e0872290f7088e958bbd10c +SHA512 (mock-core-configs-37.9.tar.gz) = bd05c1962a74d770ae9fc88e60794a3cd25c8309c80d4566eab0562116251840e80f43fedbc363a9cf4cbc9db3783a068d18512483ef40c29ff70ec4f4c2be18 From b2588abaeaef2cc40de2f51e41f833d4fccd3d0b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 20:29:06 +0000 Subject: [PATCH 111/122] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 5fb3e8c..607ce2d 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs Version: 37.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPL-2.0-or-later @@ -140,6 +140,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 37.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Thu Jan 05 2023 Pavel Raiskup 37.9-1 - missmatching gpg key and rpms in openEuler 20.03 LTS (pkwarcraft@gmail.com) - drop unneccessary module docs from configuration files (nkadel@gmail.com) From 5ba7051b673964ed035a84f3781c5a15ee24d57c Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 31 Jan 2023 14:43:53 +0100 Subject: [PATCH 112/122] Update mock-core-configs to 38.1-1 --- mock-core-configs.spec | 13 ++++++++----- sources | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 607ce2d..e8cdbca 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,6 +1,6 @@ Name: mock-core-configs -Version: 37.9 -Release: 2%{?dist} +Version: 38.1 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPL-2.0-or-later @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.77 +Requires: distribution-gpg-keys >= 1.82 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -140,8 +140,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Thu Jan 19 2023 Fedora Release Engineering - 37.9-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild +* Tue Jan 31 2023 Pavel Raiskup 38.1-1 +- update openEuler gpg key (pkwarcraft@gmail.com) +- Branch Fedora 38 (miro@hroncok.cz) +- disable fastestmirror on almalinux (jonathan@almalinux.org) +- openEuler 22.03-SP1 released, use the latest repo url (pkwarcraft@gmail.com) * Thu Jan 05 2023 Pavel Raiskup 37.9-1 - missmatching gpg key and rpms in openEuler 20.03 LTS (pkwarcraft@gmail.com) diff --git a/sources b/sources index 8c251ae..33bf39c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-37.9.tar.gz) = bd05c1962a74d770ae9fc88e60794a3cd25c8309c80d4566eab0562116251840e80f43fedbc363a9cf4cbc9db3783a068d18512483ef40c29ff70ec4f4c2be18 +SHA512 (mock-core-configs-38.1.tar.gz) = 9b542b5cda2800353ec9a7d51147770b5f29a28fee33b6a018a97522cd941d358bed0a98df8d428d41f04214a790c82f22387c3034c97ac2cd2c53d19085965a From d2557e68ca830725c2f8d0d0d3c2de7f9cb7322d Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 17 Feb 2023 07:12:46 +0100 Subject: [PATCH 113/122] Update mock-core-configs to 38.2-1 --- mock-core-configs.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index e8cdbca..ec9625c 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 38.1 +Version: 38.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.82 +Requires: distribution-gpg-keys >= 1.84 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -140,6 +140,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Feb 17 2023 Pavel Raiskup 38.2-1 +- update gpg keys for Tumbleweed (msuchy@redhat.com) + * Tue Jan 31 2023 Pavel Raiskup 38.1-1 - update openEuler gpg key (pkwarcraft@gmail.com) - Branch Fedora 38 (miro@hroncok.cz) diff --git a/sources b/sources index 33bf39c..740c7f9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-38.1.tar.gz) = 9b542b5cda2800353ec9a7d51147770b5f29a28fee33b6a018a97522cd941d358bed0a98df8d428d41f04214a790c82f22387c3034c97ac2cd2c53d19085965a +SHA512 (mock-core-configs-38.2.tar.gz) = 236bcf817ab082a429f360b595ba3dcd0f627a5ce66331f1ba8cd2c95132d1354ef0258faec29bf839aabe8e1c1b7a546af6638a99bb48d0eb9dfbda441839c4 From 12f00bafef465ebd78d9e173126d6be1f9b2e268 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 16 Mar 2023 08:13:23 +0100 Subject: [PATCH 114/122] Update mock-core-configs to 38.3-1 --- mock-core-configs.spec | 6 +++++- sources | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index ec9625c..d839564 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 38.2 +Version: 38.3 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -140,6 +140,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Mar 16 2023 Pavel Raiskup 38.3-1 +- new URL for CenOS Stream 8 koji (msuchy@redhat.com) +- Make --enablerepo=local work with centos-stream chroots (miro@hroncok.cz) + * Fri Feb 17 2023 Pavel Raiskup 38.2-1 - update gpg keys for Tumbleweed (msuchy@redhat.com) diff --git a/sources b/sources index 740c7f9..18164fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-38.2.tar.gz) = 236bcf817ab082a429f360b595ba3dcd0f627a5ce66331f1ba8cd2c95132d1354ef0258faec29bf839aabe8e1c1b7a546af6638a99bb48d0eb9dfbda441839c4 +SHA512 (mock-core-configs-38.3.tar.gz) = b4fde25757b4e8cbf0e91f040db231b78deeb7f18e10c2fdb80152eca20d2a4e9c539628e7a32e8fe9372400535aebbfc598c2f0af2467bf662232ca5bef545c From 46e65150be3472be6bd5db5f68f3d346ab002969 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Sat, 15 Apr 2023 21:07:14 +0200 Subject: [PATCH 115/122] Update mock-core-configs to 38.4-1 --- mock-core-configs.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index d839564..8181042 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 38.3 +Version: 38.4 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -18,7 +18,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.84 +Requires: distribution-gpg-keys >= 1.85 # specify minimal compatible version of mock Requires: mock >= 2.5 Requires: mock-filesystem @@ -140,6 +140,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Sat Apr 15 2023 Pavel Raiskup 38.4-1 +- Add Amazon Linux 2023 mock configs (trawets@amazon.com) + * Thu Mar 16 2023 Pavel Raiskup 38.3-1 - new URL for CenOS Stream 8 koji (msuchy@redhat.com) - Make --enablerepo=local work with centos-stream chroots (miro@hroncok.cz) diff --git a/sources b/sources index 18164fb..bd47bc1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-38.3.tar.gz) = b4fde25757b4e8cbf0e91f040db231b78deeb7f18e10c2fdb80152eca20d2a4e9c539628e7a32e8fe9372400535aebbfc598c2f0af2467bf662232ca5bef545c +SHA512 (mock-core-configs-38.4.tar.gz) = 7e8b5f7453014670c87de5a83a8a80169b8fbffc240da87634c6aa042399bbfa461be18369034573d5eb7e6f99823e2879190424edb2863ab6b884db1eabb6d3 From 019adee371853ea2bb0c0349a9449ff795ce6b1d Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 22 May 2023 15:20:52 +0200 Subject: [PATCH 116/122] Update mock-core-configs to 38.5-1 --- mock-core-configs.spec | 10 ++++++++-- sources | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 8181042..cb02dcb 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,5 @@ Name: mock-core-configs -Version: 38.4 +Version: 38.5 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -20,7 +20,7 @@ Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs Requires: distribution-gpg-keys >= 1.85 # specify minimal compatible version of mock -Requires: mock >= 2.5 +Requires: mock >= 4.0 Requires: mock-filesystem Requires(post): coreutils @@ -140,6 +140,12 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon May 22 2023 Pavel Raiskup 38.5-1 +- drop includepkgs=devtoolset* from centos-{6,7} (orion@nwra.com) +- Fedora 35 and 36 is EOL +- remove useradd specific changes in configs - it is not needed for Mock 4+ +- openSUSE i586 has been moved out of the main repo into a port (f_krull@gmx.de) + * Sat Apr 15 2023 Pavel Raiskup 38.4-1 - Add Amazon Linux 2023 mock configs (trawets@amazon.com) diff --git a/sources b/sources index bd47bc1..69fc24b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-38.4.tar.gz) = 7e8b5f7453014670c87de5a83a8a80169b8fbffc240da87634c6aa042399bbfa461be18369034573d5eb7e6f99823e2879190424edb2863ab6b884db1eabb6d3 +SHA512 (mock-core-configs-38.5.tar.gz) = 97a895a651b97a6123fd20d1cbb8505cbe27013c5ac5e6414f17ba86efe66c7698de166dc4d0e832889583ad0a8e78df5cf6cb9b4da72091413b2f60be4b33ce From f251be5bc5807aa9de61cb8d1cf3edbef7f82289 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Mon, 5 Jun 2023 10:03:00 +0200 Subject: [PATCH 117/122] Update mock-core-configs to 38.6-1 --- mock-core-configs.spec | 12 ++++++++++-- sources | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index cb02dcb..6beb737 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -1,5 +1,9 @@ +%if 0%{?el8} +%global python3 /usr/libexec/platform-python +%endif + Name: mock-core-configs -Version: 38.5 +Version: 38.6 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -98,7 +102,7 @@ fi if [ -s /etc/mageia-release ]; then mock_arch=$(sed -n '/^$/!{$ s/.* \(\w*\)$/\1/p}' /etc/mageia-release) else - mock_arch=$(python3 -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") + mock_arch=$(%{python3} -c "import dnf.rpm; import hawkey; print(dnf.rpm.basearch(hawkey.detect_arch()))") fi cfg=unknown-distro @@ -140,6 +144,10 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Mon Jun 05 2023 Pavel Raiskup 38.6-1 +- use python3 macro for post scriptlet (mroche@omenos.dev) +- openEuler: use metalinks instead of baseurls (chenzeng2@huawei.com) + * Mon May 22 2023 Pavel Raiskup 38.5-1 - drop includepkgs=devtoolset* from centos-{6,7} (orion@nwra.com) - Fedora 35 and 36 is EOL diff --git a/sources b/sources index 69fc24b..6cc41e1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-38.5.tar.gz) = 97a895a651b97a6123fd20d1cbb8505cbe27013c5ac5e6414f17ba86efe66c7698de166dc4d0e832889583ad0a8e78df5cf6cb9b4da72091413b2f60be4b33ce +SHA512 (mock-core-configs-38.6.tar.gz) = 63f447bc296743dd4da4c7b57712afd03fd33f2a6b85dfafa81c14efcbb662c82819a9b6625d88e3449165cb82f0fc9bb33715225141a28f3a53c159bf36d751 From 168d5cc40d643be67b08c6c1bcb74d65434ba6a4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jul 2023 15:32:06 +0000 Subject: [PATCH 118/122] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- mock-core-configs.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 6beb737..c2dcc61 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -4,7 +4,7 @@ Name: mock-core-configs Version: 38.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Mock core config files basic chroots License: GPL-2.0-or-later @@ -144,6 +144,9 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Jul 20 2023 Fedora Release Engineering - 38.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Mon Jun 05 2023 Pavel Raiskup 38.6-1 - use python3 macro for post scriptlet (mroche@omenos.dev) - openEuler: use metalinks instead of baseurls (chenzeng2@huawei.com) From c3dd5807c789ccab3b7ef8ff9e1ea24659fdb3d4 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 10 Aug 2023 10:06:06 +0200 Subject: [PATCH 119/122] Update mock-core-configs to 39-1 --- mock-core-configs.spec | 10 +++++----- sources | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index c2dcc61..3eebf00 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,8 +3,8 @@ %endif Name: mock-core-configs -Version: 38.6 -Release: 2%{?dist} +Version: 39 +Release: 1%{?dist} Summary: Mock core config files basic chroots License: GPL-2.0-or-later @@ -24,7 +24,7 @@ Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs Requires: distribution-gpg-keys >= 1.85 # specify minimal compatible version of mock -Requires: mock >= 4.0 +Requires: mock >= 5.0 Requires: mock-filesystem Requires(post): coreutils @@ -144,8 +144,8 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog -* Thu Jul 20 2023 Fedora Release Engineering - 38.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild +* Wed Aug 09 2023 Pavel Raiskup 39-1 +- new upstream release, per https://rpm-software-management.github.io/mock/Release-Notes-5.0 * Mon Jun 05 2023 Pavel Raiskup 38.6-1 - use python3 macro for post scriptlet (mroche@omenos.dev) diff --git a/sources b/sources index 6cc41e1..5362b20 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-38.6.tar.gz) = 63f447bc296743dd4da4c7b57712afd03fd33f2a6b85dfafa81c14efcbb662c82819a9b6625d88e3449165cb82f0fc9bb33715225141a28f3a53c159bf36d751 +SHA512 (mock-core-configs-39.tar.gz) = 00e705bc51bf74b345d19bf74d71f04582af8a76178db055a94dec30e85f994f7fb711bd5a33be213dc7e5702bd6874883f65062004e33a8182ad848b6d9662e From 7ab9276dc0315e4bc66999cfdb715cf8c1c054ab Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 15 Sep 2023 13:34:36 +0200 Subject: [PATCH 120/122] Update mock-core-configs to 39.1-1 --- mock-core-configs.spec | 9 +++++++-- sources | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 3eebf00..7037edb 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ %endif Name: mock-core-configs -Version: 39 +Version: 39.1 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -22,7 +22,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.85 +Requires: distribution-gpg-keys >= 1.96 # specify minimal compatible version of mock Requires: mock >= 5.0 Requires: mock-filesystem @@ -144,6 +144,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Fri Sep 15 2023 Pavel Raiskup 39.1-1 +- Add openSUSE Leap 15.5 (neal@gompa.dev) +- Move openSUSE Leap 15.3 to EOL (neal@gompa.dev) +- Mageia 9 branched, Mageia Cauldron retargeted to Mageia 10 (neal@gompa.dev) + * Wed Aug 09 2023 Pavel Raiskup 39-1 - new upstream release, per https://rpm-software-management.github.io/mock/Release-Notes-5.0 diff --git a/sources b/sources index 5362b20..6ee3fbc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-39.tar.gz) = 00e705bc51bf74b345d19bf74d71f04582af8a76178db055a94dec30e85f994f7fb711bd5a33be213dc7e5702bd6874883f65062004e33a8182ad848b6d9662e +SHA512 (mock-core-configs-39.1.tar.gz) = c7fdee02f74d7c9569a989f0130b33619562696c955e494b863d57f9782cbdfd9811d43ed33fcb4894a8b722c2b6516d93d7990bb48c384b868a5365973b24e6 From 2fd4eee944cbd3884626274d79a5f5e5c2949a1b Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Thu, 19 Oct 2023 10:20:33 +0200 Subject: [PATCH 121/122] Update mock-core-configs to 39.2-1 --- mock-core-configs.spec | 15 +++++++++++++-- sources | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/mock-core-configs.spec b/mock-core-configs.spec index 7037edb..786d90f 100644 --- a/mock-core-configs.spec +++ b/mock-core-configs.spec @@ -3,7 +3,7 @@ %endif Name: mock-core-configs -Version: 39.1 +Version: 39.2 Release: 1%{?dist} Summary: Mock core config files basic chroots @@ -22,7 +22,7 @@ BuildArch: noarch Provides: mock-configs # distribution-gpg-keys contains GPG keys used by mock configs -Requires: distribution-gpg-keys >= 1.96 +Requires: distribution-gpg-keys >= 1.98 # specify minimal compatible version of mock Requires: mock >= 5.0 Requires: mock-filesystem @@ -124,6 +124,12 @@ almalinux) esac cfg=$distro_id+epel-$ver-$mock_arch.cfg %endif + +%if 0%{?eln} +# overrides rhel value which resolves in fedora+epel-rawhide-$mock_arch.cfg +cfg=fedora-eln-$mock_arch.cfg +%endif + %if 0%{?mageia} cfg=mageia-$ver-$mock_arch.cfg %endif @@ -144,6 +150,11 @@ fi %ghost %config(noreplace,missingok) %{_sysconfdir}/mock/default.cfg %changelog +* Thu Oct 19 2023 Pavel Raiskup 39.2-1 +- Switch ELN to use a native bootstrap container image +- Use the correct openSUSE Backports key for Leap 15.5 (neal@gompa.dev) +- Properly handle /etc/mock/default.cfg on Fedora ELN (sbonazzo@redhat.com) + * Fri Sep 15 2023 Pavel Raiskup 39.1-1 - Add openSUSE Leap 15.5 (neal@gompa.dev) - Move openSUSE Leap 15.3 to EOL (neal@gompa.dev) diff --git a/sources b/sources index 6ee3fbc..1d190f4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mock-core-configs-39.1.tar.gz) = c7fdee02f74d7c9569a989f0130b33619562696c955e494b863d57f9782cbdfd9811d43ed33fcb4894a8b722c2b6516d93d7990bb48c384b868a5365973b24e6 +SHA512 (mock-core-configs-39.2.tar.gz) = 626a6ff4251398606f23ce40d2d276caf6f956ddcbb7356bd06402ff00cb39e135712dea7fc39b89bb6df17042ceab572c94289874e19e14c96302e1130e7f54 From c62c412c5508ee44712b095e070343d3d04661b6 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:31:25 +0300 Subject: [PATCH 122/122] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 1d190f4..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (mock-core-configs-39.2.tar.gz) = 626a6ff4251398606f23ce40d2d276caf6f956ddcbb7356bd06402ff00cb39e135712dea7fc39b89bb6df17042ceab572c94289874e19e14c96302e1130e7f54