You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
Name: ansible-packaging
|
|
Version: 1
|
|
Release: 1%{?dist}
|
|
Summary: RPM packaging macros and generators for Ansible collections
|
|
|
|
License: GPLv3+
|
|
|
|
Source0: ansible-generator
|
|
Source1: ansible.attr
|
|
Source2: macros.ansible
|
|
Source3: COPYING
|
|
|
|
Requires: ansible-core
|
|
|
|
# Conflict with anything providing its own copies of these files
|
|
%if ! (0%{?rhel} >= 9)
|
|
Conflicts: ansible-core < 2.12.1-3
|
|
%endif
|
|
Conflicts: ansible <= 2.9.99
|
|
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
%{summary}.
|
|
|
|
|
|
%prep
|
|
%autosetup -T -c
|
|
cp -a %{sources} .
|
|
|
|
|
|
%build
|
|
# Nothing to build
|
|
|
|
|
|
%install
|
|
install -Dpm0644 -t %{buildroot}%{_fileattrsdir} ansible.attr
|
|
install -Dpm0644 -t %{buildroot}%{_rpmmacrodir} macros.ansible
|
|
install -Dpm0755 -t %{buildroot}%{_rpmconfigdir} ansible-generator
|
|
|
|
|
|
%files
|
|
%license COPYING
|
|
%{_fileattrsdir}/ansible.attr
|
|
%{_rpmmacrodir}/macros.ansible
|
|
%{_rpmconfigdir}/ansible-generator
|
|
|
|
|
|
%changelog
|
|
* Thu Jan 13 2022 Neal Gompa <ngompa@fedoraproject.org> - 1-1
|
|
- Initial packaging split out of ansible-core (#2038591)
|