# # If we should enable docs building # Currently we cannot until we get a stack of needed packages added and a few bugs fixed # %bcond_with docs # # If we should enable tests by default # %bcond_without tests Name: ansible-core Summary: A radically simple IT automation system Version: 2.13.0 Release: 1%{?dist} License: GPLv3+ Source: https://github.com/ansible/ansible/archive/v%{version}/%{name}-%{version}.tar.gz # A 2.10.3 async test uses /usr/bin/python, which we do not have by default. # Patch the test to use /usr/bin/python3 as we have for our build. Patch: 2.10.3-test-patch.patch # Stop using a deprecated cryptography method that is no longer available in F37. Patch: https://github.com/ansible/ansible/pull/77834.patch#/avoid-deprecated-method-unit-tests.patch Url: https://ansible.com BuildArch: noarch # Require packaging macros if rpm-build exists # This makes the transition seamless for other packages Requires: (ansible-packaging if rpm-build) #Provides: ansible = %%{version}-%%{release} #Obsoletes: ansible <= 2.9.99 # For now conflict with the ansible 'classic' package. Conflicts: ansible <= 2.9.99 # # obsoletes/provides for ansible-base # Provides: ansible-base = %{version}-%{release} Obsoletes: ansible-base < 2.10.6-1 %if %{with tests} # # For tests # # These two exist on both fedora and rhel8 # BuildRequires: make BuildRequires: git-core BuildRequires: python3-packaging BuildRequires: python3-pexpect BuildRequires: python3-pytz BuildRequires: glibc-all-langpacks BuildRequires: python3-resolvelib # # These only exist on Fedora. RHEL8 will just skip tests that need them. # %if 0%{?fedora} BuildRequires: python3-paramiko BuildRequires: python3-winrm BuildRequires: python3-coverage BuildRequires: python3-passlib %endif %endif %if %{with docs} BuildRequires: make BuildRequires: python3-sphinx BuildRequires: python3-sphinx-theme-alabaster BuildRequires: python3-sphinx-notfound-page BuildRequires: asciidoc BuildRequires: python3-straight-plugin BuildRequires: python3-rstcheck BuildRequires: python3-pygments BuildRequires: antsibull %endif # # main buildrequires to build # BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pytest BuildRequires: python3-pytest-xdist BuildRequires: python3-pytest-mock BuildRequires: python3-requests BuildRequires: python3-jinja2 BuildRequires: python3-pyyaml BuildRequires: python3-cryptography BuildRequires: python3-pyvmomi # Needed to build manpages from source. BuildRequires: python3-straight-plugin BuildRequires: python3-docutils # RHEL8 doesn't have python3-paramiko or python3-winrm (yet), but Fedora does Recommends: python3-paramiko Recommends: python3-winrm %description Ansible is a radically simple model-driven configuration management, multi-node deployment, and remote task execution system. Ansible works over SSH and does not require any software or daemons to be installed on remote nodes. Extension modules can be written in any language and are transferred to managed machines automatically. This is the base part of ansible (the engine). %package -n ansible-core-doc Summary: Documentation for Ansible Core Provides: ansible-base-doc = %{version}-%{release} Obsoletes: ansible-base-doc < 2.10.6-1 %description -n ansible-core-doc Ansible is a radically simple model-driven configuration management, multi-node deployment, and remote task execution system. Ansible works over SSH and does not require any software or daemons to be installed on remote nodes. Extension modules can be written in any language and are transferred to managed machines automatically. This package installs extensive documentation for ansible-core %prep %autosetup -p1 # disable the python -s shbang flag as we want to be able to find non system modules %global py3_shbang_opts %(echo %{py3_shbang_opts} | sed 's/-s//') %py3_shebang_fix . # Patch out python3-mock, as per https://fedoraproject.org/wiki/Changes/DeprecatePythonMock. grep -lEr '^(\s*)import mock' | xargs sed -i 's|^\(\s*\)import mock|\1from unittest import mock|' grep -lEr '^(\s*)from mock import ' | xargs sed -i 's|^\(\s*\)from mock import |\1from unittest.mock import |' sed -i '/^mock_use_standalone_module = true$/d' test/lib/ansible_test/_data/pytest.ini %build sed -i -s 's|/usr/bin/env python|%{__python3}|' test/lib/ansible_test/_util/target/cli/ansible_test_cli_stub.py bin/* # Build manpages make PYTHON=%{__python3} docs %py3_build %if %{with docs} make PYTHON=%{__python3} SPHINXBUILD=sphinx-build-3 webdocs %else # we still need things to build these minimal docs too. # make PYTHON=%{__python3} -Cdocs/docsite config cli keywords modules plugins testing %endif %install %py3_install # Create system directories that Ansible defines as default locations in # ansible/config/base.yml DATADIR_LOCATIONS='%{_datadir}/ansible/collections %{_datadir}/ansible/collections/ansible_collections %{_datadir}/ansible/plugins/doc_fragments %{_datadir}/ansible/plugins/action %{_datadir}/ansible/plugins/become %{_datadir}/ansible/plugins/cache %{_datadir}/ansible/plugins/callback %{_datadir}/ansible/plugins/cliconf %{_datadir}/ansible/plugins/connection %{_datadir}/ansible/plugins/filter %{_datadir}/ansible/plugins/httpapi %{_datadir}/ansible/plugins/inventory %{_datadir}/ansible/plugins/lookup %{_datadir}/ansible/plugins/modules %{_datadir}/ansible/plugins/module_utils %{_datadir}/ansible/plugins/netconf %{_datadir}/ansible/roles %{_datadir}/ansible/plugins/strategy %{_datadir}/ansible/plugins/terminal %{_datadir}/ansible/plugins/test %{_datadir}/ansible/plugins/vars' UPSTREAM_DATADIR_LOCATIONS=$(grep -ri default lib/ansible/config/base.yml| tr ':' '\n' | grep '/usr/share/ansible') if [ "$SYSTEM_LOCATIONS" != "$UPSTREAM_SYSTEM_LOCATIONS" ] ; then echo "The upstream Ansible datadir locations have changed. Spec file needs to be updated" exit 1 fi mkdir -p %{buildroot}%{_datadir}/ansible/plugins/ for location in $DATADIR_LOCATIONS ; do mkdir %{buildroot}"$location" done mkdir -p %{buildroot}/etc/ansible/ mkdir -p %{buildroot}/etc/ansible/roles/ cp examples/hosts %{buildroot}/etc/ansible/ cp examples/ansible.cfg %{buildroot}/etc/ansible/ mkdir -p %{buildroot}/%{_mandir}/man1 cp -v docs/man/man1/*.1 %{buildroot}/%{_mandir}/man1/ # no need to ship zero length files find %{buildroot}/%{python3_sitelib} -name .git_keep -exec rm -f {} \; find %{buildroot}/%{python3_sitelib} -name .travis.yml -exec rm -f {} \; %check %if %{with tests} ln -s /usr/bin/pytest-3 bin/pytest make PYTHON=%{__python3} tests-py3 %endif %files %license COPYING %doc README.rst PKG-INFO changelogs/CHANGELOG-v2.13.rst %dir %{_sysconfdir}/ansible/ %config(noreplace) %{_sysconfdir}/ansible/* %{_mandir}/man1/ansible* %{_bindir}/ansible* %{_datadir}/ansible/ %{python3_sitelib}/ansible %{python3_sitelib}/ansible_test %{python3_sitelib}/*egg-info %files -n ansible-core-doc %doc docs/docsite/rst %if %{with docs} %doc docs/docsite/_build/html %endif %changelog * Fri May 27 2022 Maxwell G - 2.13.0-1 - Update to 2.13.0. - Re-enable tests that work with newer pytest - Patch out python3-mock - Manually build manpages to workaround upstream issue. - Remove unneeded BRs - Make ansible-base* Obsoletes/Provides compliant with Packaging Guidelines - Remove python3-jmespath dependency. json_query is part of community.general. * Tue May 24 2022 Maxwell G - 2.12.6-1 - Update to 2.12.6. * Wed Apr 27 2022 Maxwell G - 2.12.5-1 - Update to 2.12.5. Fixes rhbz#2078558. * Sat Apr 02 2022 Maxwell G - 2.12.4-1 - Update to 2.12.4. Fixes rhbz#2069384. * Thu Mar 10 2022 Maxwell G - 2.12.3-2 - Add patch to fix failing tests and FTBFS with Pytest 7. - Resolves: rhbz#2059937 * Tue Mar 01 2022 Kevin Fenzi - 2.12.3-1 - Update to 2.12.3. Fixes rhbz#2059284 * Mon Jan 31 2022 Kevin Fenzi - 2.12.2-1 - Update to 2.12.2. Fixes rhbz#2048795 * Wed Jan 19 2022 Fedora Release Engineering - 2.12.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Thu Jan 13 2022 Neal Gompa - 2.12.1-3 - Split out packaging macros and generators to ansible-packaging * Wed Dec 08 2021 Kevin Fenzi - 2.12.1-2 - Re-enable tests * Tue Dec 07 2021 Kevin Fenzi - 2.12.1-1 - Update to 2.12.1. Fixes rhbz#2029598 * Mon Nov 08 2021 Kevin Fenzi - 2.12.0-1 - Update to 2.12.0. Fixes rhbz#2022533 * Thu Oct 14 2021 Maxwell G - 2.11.6-1 - Update to 2.11.6. * Tue Sep 14 2021 Kevin Fenzi - 2.11.5-1 - Update to 2.11.5. Fixes rhbz#2002393 * Thu Aug 19 2021 Kevin Fenzi - 2.11.4-1 - Update to 2.11.4. Fixes rhbz#1994107 * Sun Jul 25 2021 Kevin Fenzi - 2.11.3-1 - Update to 2.11.3. Fixes rhbz#1983836 * Wed Jul 21 2021 Fedora Release Engineering - 2.11.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild * Tue Jun 22 2021 Kevin Fenzi - 2.11.2-1 - Update to 2.11.2. Fixed rhbz#1974593 * Fri Jun 04 2021 Python Maint - 2.11.1-2 - Rebuilt for Python 3.10 * Mon May 24 2021 Kevin Fenzi - 2.11.1-1 - Update to 2.11.1. Fixes rhbz#1964172 * Tue Apr 27 2021 Kevin Fenzi - 2.11.0-1 - Update to 2.11.0 final. * Sat Apr 24 2021 Kevin Fenzi - 2.11.0-0.3.rc2 - Update to 2.11.0rc2. * Sat Apr 03 2021 Kevin Fenzi - 2.11.0-0.1.b4 - Rename to ansible-base, update to b4 beta version. * Sat Feb 20 2021 Kevin Fenzi - 2.10.6-1 - Update to 2.10.6. - Fixes CVE-2021-20228 * Tue Jan 26 2021 Fedora Release Engineering - 2.10.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Sun Jan 24 2021 Kevin Fenzi - 2.10.5-1 - Update to 2.10.5. * Sat Dec 19 2020 Kevin Fenzi - 2.10.4-1 - Update to 2.10.4 * Sat Nov 07 2020 Kevin Fenzi - 2.10.3-2 - Various review fixes * Tue Nov 03 2020 Kevin Fenzi - 2.10.3-1 - Update to 2.10.3 * Sat Oct 10 2020 Kevin Fenzi - 2.10.2-1 - Update to 2.10.2 * Sat Sep 26 2020 Kevin Fenzi - 2.10.1-1 - Initial version for review.