Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9125fbb32e |
1
.ansible-collection-redhat-leapp.metadata
Normal file
1
.ansible-collection-redhat-leapp.metadata
Normal file
@ -0,0 +1 @@
|
||||
ad7723c29fe3e92f54aab322bde16ca54f047fda SOURCES/infra.leapp-1.7.4.tar.gz
|
||||
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,4 +1 @@
|
||||
/infra.leapp-1.7.0.tar.gz
|
||||
/infra.leapp-7a4bab008a8045c54b3477ab64766dd39a3273cd.tar.gz
|
||||
/infra.leapp-1.7.4.tar.gz
|
||||
/infra.leapp-1.7.5.tar.gz
|
||||
SOURCES/infra.leapp-1.7.4.tar.gz
|
||||
|
||||
@ -10,12 +10,7 @@ Provides: ansible-collection(%{collection_namespace}.%{collection_name}) = %{col
|
||||
|
||||
# ansible-galaxy is available by ansible-core on RHEL 8.6 and newer at buildtime.
|
||||
%define ansible_collection_build() ansible-galaxy collection build
|
||||
# --force is required because ansible-galaxy skips installation if the collection
|
||||
# is already installed anywhere on the system, even though we're installing to a
|
||||
# different location (buildroot). Without --force, local builds fail with
|
||||
# "All requested collections are already installed" when the collection exists
|
||||
# in ~/.ansible/collections or other configured paths.
|
||||
%define ansible_collection_install() ansible-galaxy collection install -n --force -p %{buildroot}%{_datadir}/ansible/collections %{collection_namespace}-%{collection_name}-%{version}.tar.gz
|
||||
%define ansible_collection_install() ansible-galaxy collection install -n -p %{buildroot}%{_datadir}/ansible/collections %{collection_namespace}-%{collection_name}-%{version}.tar.gz
|
||||
|
||||
# TODO: Officially deprecate this macro and add the following line to the macro
|
||||
# def after the new approach has gotten more testing and adoption:
|
||||
@ -1,7 +1,7 @@
|
||||
%bcond_with collection_artifact
|
||||
|
||||
Name: ansible-collection-redhat-leapp
|
||||
Version: 1.7.5
|
||||
Version: 1.7.4
|
||||
Release: 1%{?dist}
|
||||
Summary: redhat.leapp Ansible collection that handles RHEL upgrades
|
||||
License: MIT
|
||||
@ -46,13 +46,9 @@ Collection artifact for %{name}. This package contains %{collection_namespace}-%
|
||||
%prep
|
||||
%autosetup -n %{source_path} -p1
|
||||
|
||||
# The collection-requirements.yml file is only used upstream. Ansible does not know about or use it - it might be
|
||||
# confusing for downstream users, so it should be removed.
|
||||
rm -f meta/collection-requirements.yml
|
||||
|
||||
find -type f ! -executable -name '*.py' -exec \
|
||||
sed -i -e '1{\@^#!.*@d}' '{}' +
|
||||
find . -type f ! -name galaxy.yml -exec \
|
||||
find . -type f -exec \
|
||||
sed -e "s/infra\.leapp/redhat.leapp/g" \
|
||||
-e "s/leapp_system_roles_collection: fedora.linux_system_roles/leapp_system_roles_collection: redhat.rhel_system_roles/g" \
|
||||
-e "s/default('fedora.linux_system_roles')/default('redhat.rhel_system_roles')/g" \
|
||||
@ -61,8 +57,6 @@ find . -type f ! -name galaxy.yml -exec \
|
||||
|
||||
sed -i -e 's/namespace\: infra/namespace: redhat/g' \
|
||||
-e 's/version: .*/version: %{version}/g' \
|
||||
-e 's|^homepage: .*|homepage: https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/9/html/upgrading_from_rhel_8_to_rhel_9/upgrading-large-deployments-by-using-ansible-roles_upgrading-from-rhel-8-to-rhel-9|g' \
|
||||
-e 's/"fedora\.linux_system_roles": "\*"/"redhat.rhel_system_roles": "*"/g' \
|
||||
galaxy.yml
|
||||
|
||||
%build
|
||||
@ -141,30 +135,22 @@ find %{buildroot}%{ansible_collection_files}%{collection_name} -mindepth 1 -maxd
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Jul 10 2026 Sergei Petrosian <spetrosi@redhat.com> - 1.7.5-1
|
||||
- Resolves: RHEL-192801 - Rebase ansible-collection-redhat-leapp to 1.7.5
|
||||
- Resolves: RHEL-194092 - Reflect changes in leapp report keys in the infra.leapp mappings for remediations
|
||||
|
||||
* Mon Mar 09 2026 Sergei Petrosian <spetrosi@redhat.com> - 1.7.4-1
|
||||
- Update to latest upstream version 1.7.4
|
||||
- Resolves: RHEL-153382 : Fix the role failing on steps that copy logs to the controller EL10
|
||||
- Resolves: RHEL-153381 : Fix the role failing on steps that copy logs to the controller EL9
|
||||
|
||||
* Tue Feb 24 2026 Sergei Petrosian <spetrosi@redhat.com> - 1.7.1-2
|
||||
- Fix spec file to require rhel-system-roles package
|
||||
- Resolves: RHEL-141757 : [RFE] Add ansible-collection-redhat-leapp to RHEL10
|
||||
- Resolves: RHEL-117252 : [RFE] Add ansible-collection-redhat-leapp to RHEL9
|
||||
|
||||
* Mon Feb 23 2026 Sergei Petrosian <spetrosi@redhat.com> - 1.7.1-1
|
||||
- Update to latest upstream version via commit hash
|
||||
- Resolves: RHEL-141757 : [RFE] Add ansible-collection-redhat-leapp to RHEL10
|
||||
- Resolves: RHEL-117252 : [RFE] Add ansible-collection-redhat-leapp to RHEL9
|
||||
|
||||
* Fri Feb 13 2026 Sergei Petrosian <spetrosi@redhat.com> - 1.7.0-1
|
||||
- Replace upstream value of leapp_system_roles_collection with downstream redhat.rhel_system_roles.
|
||||
- Resolves: RHEL-141757 : [RFE] Add ansible-collection-redhat-leapp to RHEL10
|
||||
|
||||
* Fri Dec 5 2025 Sergei Petrosian <spetrosi@redhat.com> - 0.0.1-2
|
||||
- Bump version to get automation to do builds and create an erratum
|
||||
- Resolves: RHEL-141757 : [RFE] Add ansible-collection-redhat-leapp to RHEL10
|
||||
- Resolves: RHEL-117252 : [RFE] Add ansible-collection-redhat-leapp to RHEL9
|
||||
|
||||
* Fri Dec 5 2025 Sergei Petrosian <spetrosi@redhat.com> - 0.0.1-1
|
||||
- Initialize the package
|
||||
- Resolves: RHEL-141757 : [RFE] Add ansible-collection-redhat-leapp to RHEL10
|
||||
- Resolves: RHEL-117252 : [RFE] Add ansible-collection-redhat-leapp to RHEL9
|
||||
@ -1,6 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier1.functional}
|
||||
Loading…
Reference in New Issue
Block a user