Blame SPECS/ansible-core.spec

5a4438
# We need this because we are no longer noarch, since our bundled deps might
5a4438
# conceivably need to compile arch-specific things. But we currently have no
5a4438
# useful debuginfo stuff.
5a4438
%global debug_package %{nil}
5a4438
5a4438
# Disable shebang munging for specific paths.  These files are data files.
5a4438
# ansible-test munges the shebangs itself.
5a4438
%global __brp_mangle_shebangs_exclude_from_file %{SOURCE1}
5a4438
5a4438
%global commitId 6c75cf5c83da044d1fd69bc444ce4de50d728d09
5a4438
%global python38_sitelib /usr/lib/python3.8/site-packages/
5a4438
5a4438
# NOTE(pabelanger): Don't auto add pwsh as Requires for ansible-test. We do
5a4438
# not wish to package it.
5a4438
%global __requires_exclude ^/usr/bin/pwsh$
5a4438
5a4438
# RHEL and Fedora add -s to the shebang line.  We do *not* use -s -E -S or -I
5a4438
# with ansible because it has many optional features which users need to
5a4438
# install libraries on their own to use.  For instance, paramiko for the
5a4438
# network connection plugins or winrm to talk to windows hosts.
5a4438
# Set this to nil to remove -s
5a4438
%define py_shbang_opts %{nil}
5a4438
%define py2_shbang_opts %{nil}
5a4438
%define py3_shbang_opts %{nil}
5a4438
5a4438
%define vendor_path %{buildroot}%{python38_sitelib}/ansible/_vendor/
5a4438
%define vendor_pip /usr/bin/python3.8 -m pip install --no-deps -v --no-use-pep517 --no-binary :all: -t %{vendor_path}
5a4438
5a4438
# These control which bundled dep versions we pin against
5a4438
%global packaging_version 20.4
5a4438
%global pyparsing_version 2.4.7
5a4438
%global straightplugin_version 1.4.1
5a4438
5a4438
5a4438
Name: ansible-core
5a4438
Summary: SSH-based configuration management, deployment, and task execution system
5a4438
Version: 2.12.2
5a4438
Release: 2%{?dist}
5a4438
ExcludeArch: i686
5a4438
5a4438
Group: Development/Libraries
5a4438
License: GPLv3+
5a4438
Source0: ansible-%{commitId}.tar.gz
5a4438
Source1: ansible-test-data-files.txt
5a4438
5a4438
# And bundled deps
5a4438
Source2: packaging-ded06cedf6e20680eea0363fac894cb4a09e7831.tar.gz
5a4438
Source3: pyparsing-6a844ee35ca5125490a28dbd6dd2d15b6498e605.tar.gz
5a4438
5a4438
# Deps to build man pages
5a4438
Source5: straightplugin-6634ea8e1e89d5bb23804f50e676f196c52c46ed.tar.gz
5a4438
5a4438
URL: http://ansible.com
5a4438
5a4438
# We obsolete old ansible, and any version of ansible-base.
5a4438
Obsoletes: ansible < 2.10.0
5a4438
Obsoletes: ansible-base
5a4438
5a4438
# ... and provide 'ansible' so that old packages still work without updated
5a4438
# spec files.
5a4438
# Provides: ansible
5a4438
5a4438
# Bundled provides that are sprinkled throughout the codebase.
5a4438
Provides: bundled(python-backports-ssl_match_hostname) = 3.7.0.1
5a4438
Provides: bundled(python-distro) = 1.5.0
5a4438
Provides: bundled(python-selectors2) = 1.1.1
5a4438
Provides: bundled(python-six) = 1.13.0
5a4438
5a4438
# Things we explicitly bundle via src rpm, and put in ansible._vendor
5a4438
Provides: bundled(python-packaging) = %{packaging_version}
5a4438
Provides: bundled(python-pyparsing) = %{pyparsing_version}
5a4438
Provides: bundled(python-straightplugin) = %{straightplugin_version}
5a4438
5a4438
BuildRequires: python38-devel
5a4438
# BuildRequires: python38-docutils
5a4438
BuildRequires: python38-jinja2
5a4438
BuildRequires: python38-pip
5a4438
BuildRequires: python38-pyyaml
5a4438
BuildRequires: python38-resolvelib
5a4438
BuildRequires: python38-rpm-macros
5a4438
BuildRequires: python38-setuptools
5a4438
BuildRequires: python38-wheel
5a4438
5a4438
Requires: git
5a4438
Requires: python38
5a4438
Requires: python38-jinja2
5a4438
Requires: python38-PyYAML
5a4438
Requires: python38-cryptography
5a4438
Requires: python38-resolvelib
5a4438
Requires: python38-six
5a4438
Requires: sshpass
5a4438
5a4438
%description
5a4438
Ansible is a radically simple model-driven configuration management,
5a4438
multi-node deployment, and remote task execution system. Ansible works
5a4438
over SSH and does not require any software or daemons to be installed
5a4438
on remote nodes. Extension modules can be written in any language and
5a4438
are transferred to managed machines automatically.
5a4438
5a4438
%package -n ansible-test
5a4438
Summary: Tool for testing ansible plugin and module code
5a4438
Requires: %{name} = %{version}-%{release}
5a4438
5a4438
%description -n ansible-test
5a4438
Ansible is a radically simple model-driven configuration management,
5a4438
multi-node deployment, and remote task execution system. Ansible works
5a4438
over SSH and does not require any software or daemons to be installed
5a4438
on remote nodes. Extension modules can be written in any language and
5a4438
are transferred to managed machines automatically.
5a4438
5a4438
This package installs the ansible-test command for testing modules and plugins
5a4438
developed for ansible.
5a4438
5a4438
%prep
5a4438
%setup -q -T -b 2 -n packaging-ded06cedf6e20680eea0363fac894cb4a09e7831
5a4438
%setup -q -T -b 3 -n pyparsing-6a844ee35ca5125490a28dbd6dd2d15b6498e605
5a4438
%setup -q -T -b 5 -n straightplugin-6634ea8e1e89d5bb23804f50e676f196c52c46ed
5a4438
%setup -q -n ansible-%{commitId}
5a4438
5a4438
# Fix all Python shebangs recursively in ansible-test
5a4438
# -p preserves timestamps
5a4438
# -n prevents creating ~backup files
5a4438
# -i specifies the interpreter for the shebang
5a4438
pathfix3.8.py -pni "%{__python3} %{py3_shbang_opts}" test/lib/ansible_test
5a4438
5a4438
%build
5a4438
/usr/bin/python3.8 setup.py build
5a4438
5a4438
%install
5a4438
/usr/bin/python3.8 setup.py install --root %{buildroot}
5a4438
5a4438
# Handle bundled deps:
5a4438
%{vendor_pip} \
5a4438
  ../pyparsing-6a844ee35ca5125490a28dbd6dd2d15b6498e605/ \
5a4438
  ../packaging-ded06cedf6e20680eea0363fac894cb4a09e7831/
5a4438
5a4438
# Create system directories that Ansible defines as default locations in
5a4438
# ansible/config/base.yml
5a4438
DATADIR_LOCATIONS='%{_datadir}/ansible/collections
5a4438
%{_datadir}/ansible/plugins/doc_fragments
5a4438
%{_datadir}/ansible/plugins/action
5a4438
%{_datadir}/ansible/plugins/become
5a4438
%{_datadir}/ansible/plugins/cache
5a4438
%{_datadir}/ansible/plugins/callback
5a4438
%{_datadir}/ansible/plugins/cliconf
5a4438
%{_datadir}/ansible/plugins/connection
5a4438
%{_datadir}/ansible/plugins/filter
5a4438
%{_datadir}/ansible/plugins/httpapi
5a4438
%{_datadir}/ansible/plugins/inventory
5a4438
%{_datadir}/ansible/plugins/lookup
5a4438
%{_datadir}/ansible/plugins/modules
5a4438
%{_datadir}/ansible/plugins/module_utils
5a4438
%{_datadir}/ansible/plugins/netconf
5a4438
%{_datadir}/ansible/roles
5a4438
%{_datadir}/ansible/plugins/strategy
5a4438
%{_datadir}/ansible/plugins/terminal
5a4438
%{_datadir}/ansible/plugins/test
5a4438
%{_datadir}/ansible/plugins/vars'
5a4438
5a4438
UPSTREAM_DATADIR_LOCATIONS=$(grep -ri default lib/ansible/config/base.yml | tr ':' '\n' | grep '/usr/share/ansible')
5a4438
5a4438
if [ "$SYSTEM_LOCATIONS" != "$UPSTREAM_SYSTEM_LOCATIONS" ] ; then
5a4438
	echo "The upstream Ansible datadir locations have changed.  Spec file needs to be updated"
5a4438
	exit 1
5a4438
fi
5a4438
5a4438
mkdir -p %{buildroot}%{_datadir}/ansible/plugins/
5a4438
for location in $DATADIR_LOCATIONS ; do
5a4438
	mkdir %{buildroot}"$location"
5a4438
done
5a4438
mkdir -p %{buildroot}%{_sysconfdir}/ansible/
5a4438
mkdir -p %{buildroot}%{_sysconfdir}/ansible/roles/
5a4438
5a4438
cp examples/hosts %{buildroot}%{_sysconfdir}/ansible/
5a4438
cp examples/ansible.cfg %{buildroot}%{_sysconfdir}/ansible/
5a4438
mkdir -p %{buildroot}/%{_mandir}/man1/
5a4438
## Build man pages
5a4438
#
5a4438
#mkdir /tmp/_vendor
5a4438
#/usr/bin/python3.8 -m pip install ../straightplugin-6634ea8e1e89d5bb23804f50e676f196c52c46ed -t /tmp/_vendor --no-build-isolation
5a4438
#
5a4438
## Remove plugins not needed, they bring in more dependencies
5a4438
#find hacking/build_library/build_ansible/command_plugins ! -name 'generate_man.py' -type f -exec rm -f {} +
5a4438
#
5a4438
#PYTHON=python3.8 PYTHONPATH=%{vendor_path}:/tmp/_vendor make docs
5a4438
#cp -v docs/man/man1/*.1 %{buildroot}/%{_mandir}/man1/
5a4438
#
5a4438
#cp -pr docs/docsite/rst .
5a4438
cp -p lib/ansible_core.egg-info/PKG-INFO .
5a4438
5a4438
%files
5a4438
%defattr(-,root,root)
5a4438
%{_bindir}/ansible*
5a4438
%exclude %{_bindir}/ansible-test
5a4438
%config(noreplace) %{_sysconfdir}/ansible/
5a4438
%doc README.rst PKG-INFO COPYING
5a4438
# TODO(pabelanger): uncomment once we move back to tagged releases
5a4438
# %doc changelogs/CHANGELOG-v2.*.rst
5a4438
#%doc %{_mandir}/man1/ansible*
5a4438
%{_datadir}/ansible/
5a4438
%{python38_sitelib}/ansible*
5a4438
%exclude %{python38_sitelib}/ansible_test
5a4438
5a4438
%files -n ansible-test
5a4438
%{_bindir}/ansible-test
5a4438
%{python38_sitelib}/ansible_test
5a4438
5a4438
%changelog
5a4438
* Wed Feb 02 2022 Dimitri Savineau <dsavinea@redhat.com> - 2.12.2-2
5a4438
- fix ansible tarball setup
5a4438
5a4438
* Wed Feb 02 2022 Dimitri Savineau <dsavinea@redhat.com> - 2.12.2-1
5a4438
- ansible-core 2.12.2 release
5a4438
- add gating and test files
5a4438
5a4438
* Wed Jan 19 2022 Dimitri Savineau <dsavinea@redhat.com> - 2.12.1-2
5a4438
- Remove Provides on ansible
5a4438
5a4438
* Thu Dec 16 2021 Yanis Guenane <yguenane@redhat.com> - 2.12.1-1
5a4438
- ansible-core 2.12.1-1
5a4438
5a4438
* Wed Jul 21 2021 Paul Belanger <pabelanger@redhat.com> - 2.11.3-2
5a4438
- Add git dependency for ansible-galaxy CLI command.
5a4438
5a4438
* Tue Jul 20 2021 Yanis Guenane <yguenane@redhat.com> - 2.11.3-1
5a4438
- ansible-core 2.11.3-1
5a4438
5a4438
* Fri Jul 02 2021 Satoe Imaishi <simaishi@redhat.com> - 2.11.2-2
5a4438
- Add man pages
5a4438
5a4438
* Tue Jun 29 2021 Paul Belanger <pabelanger@redhat.com> - 2.11.2-1
5a4438
- ansible-core 2.11.2 released.
5a4438
- Drop bundled version of resolvelib in favor of
5a4438
  python38-resolvelib.
5a4438
5a4438
* Wed Mar 31 2021 Rick Elrod <relrod@redhat.com> - 2.11.0b4-1
5a4438
- ansible-core 2.11.0 beta 4
5a4438
5a4438
* Thu Mar 18 2021 Rick Elrod <relrod@redhat.com> - 2.11.0b2-3
5a4438
- Try adding a Provides for old ansible.
5a4438
5a4438
* Thu Mar 18 2021 Rick Elrod <relrod@redhat.com> - 2.11.0b2-2
5a4438
- Try Obsoletes instead of Conflicts.
5a4438
5a4438
* Thu Mar 18 2021 Rick Elrod <relrod@redhat.com> - 2.11.0b2-1
5a4438
- ansible-core 2.11.0 beta 2
5a4438
- Conflict with old ansible and ansible-base.
5a4438
5a4438
* Thu Mar 11 2021 Rick Elrod <relrod@redhat.com> - 2.11.0b1-1
5a4438
- ansible-core 2.11.0 beta 1
5a4438
5a4438
* Mon Nov 30 2020 Rick Elrod <relrod@redhat.com> - 2.11.0-1
5a4438
- ansible-core, beta
5a4438
5a4438
* Wed Jun 10 2020 Rick Elrod <relrod@redhat.com> - 2.10.0-1
5a4438
- ansible-base, beta