b5421d386e
- disable automatic generation of RPM dependencies from files in collections The files are not meant to be executed on the Ansible controller (i.e. the machine where this package is being installed), but rather on the targets that get modified. So e.g. python2 is not needed as a dependency on the ansible controller - do no longer change shebangs in files from collections OBS-URL: https://build.opensuse.org/request/show/1043661 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:ansible/ansible?expand=0&rev=9
102 lines
3.2 KiB
RPMSpec
102 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package ansible
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
%if 0%{?suse_version} < 1550
|
|
# Leap15, SLES15
|
|
%define pythons python310
|
|
%define ansible_python python310
|
|
%define ansible_python_executable python3.10
|
|
%define ansible_python_sitelib %python310_sitelib
|
|
%else
|
|
# Tumbleweed
|
|
%define pythons python3
|
|
%define ansible_python python3
|
|
%define ansible_python_executable python3
|
|
%define ansible_python_sitelib %python3_sitelib
|
|
%endif
|
|
|
|
Name: ansible
|
|
Version: 7.1.0
|
|
Release: 0
|
|
Summary: Radically simple IT automation
|
|
License: GPL-3.0+
|
|
URL: https://ansible.com/
|
|
Source: https://files.pythonhosted.org/packages/source/a/ansible/ansible-%{version}.tar.gz
|
|
Source99: ansible-rpmlintrc
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: %{ansible_python}-base >= 3.9
|
|
BuildRequires: %{ansible_python}-setuptools
|
|
BuildRequires: fdupes
|
|
|
|
# required to fix the azure collection line endings
|
|
BuildRequires: dos2unix
|
|
|
|
# SECTION test requirements
|
|
BuildRequires: ansible-core >= 2.14.1
|
|
# /SECTION
|
|
|
|
Requires: %{ansible_python}-base >= 3.9
|
|
Requires: ansible-core >= 2.14.1
|
|
|
|
# Do not check any files in collections for requires
|
|
%global __requires_exclude_from ^%{ansible_python_sitelib}/.*$
|
|
|
|
BuildArch: noarch
|
|
|
|
%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.
|
|
|
|
%prep
|
|
%setup -q -n ansible-%{version}
|
|
|
|
for file in .git_keep .travis.yml ; do
|
|
find . -name "$file" -delete
|
|
done
|
|
|
|
# fix for wrong shebang:
|
|
sed -i 's|/Users/kbreit/Documents/Programming/ansible_collections/cisco/meraki/venv/bin/python|%{_bindir}/%{ansible_python_executable}|g' ansible_collections/cisco/meraki/scripts/sublime-build/build.py.generic
|
|
|
|
# remove .keep and .gitignore files
|
|
find ./ansible_collections/ -iname .gitignore -delete
|
|
find ./ansible_collections/ -iname .keep -delete
|
|
|
|
# azure collection has wrong file endings
|
|
find ./ansible_collections/azure -type f -exec dos2unix {} \;
|
|
|
|
# ./ansible_collections/lowlydba/sqlserver/ throws errors in rpmlint
|
|
# and is powershell only
|
|
rm -rf ./ansible_collections/lowlydba/sqlserver/
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%fdupes %{buildroot}/%{ansible_python_sitelib}/ansible_collections/
|
|
|
|
%files
|
|
%doc CHANGELOG-v7.rst README.rst
|
|
%license COPYING
|
|
%{_bindir}/ansible-community
|
|
%{ansible_python_sitelib}/
|
|
|
|
%changelog
|