ansible-builder/ansible-builder.spec
Johannes Kastl 8706ef6f04 Accepting request 1087369 from home:ojkastl_buildservice:Branch_systemsmanagement_ansible
- disable color in checks
- modify %if-condition to allow building for python3.10 or
  python3.11 on SLES15
- update to 3.0.0:
- change python version on Leap15/SLES15 to python3.11 to use the
  new stack supported by SUSE

OBS-URL: https://build.opensuse.org/request/show/1087369
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:ansible/ansible-builder?expand=0&rev=5
2023-05-16 10:17:31 +00:00

123 lines
4.2 KiB
RPMSpec

#
# spec file for package ansible-builder
#
# Copyright (c) 2023 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/
#
%{?sle15_python_module_pythons}
%if 0%{?suse_version} < 1550
# Leap15, SLES15
%if %pythons == "python310"
%define ansible_python python310
%define ansible_python_executable python3.10
%define ansible_python_sitelib %python310_sitelib
%endif
%if %pythons == "python311"
%define ansible_python python311
%define ansible_python_executable python3.11
%define ansible_python_sitelib %python311_sitelib
%endif
%else
# Tumbleweed
%define pythons python3
%define ansible_python python3
%define ansible_python_executable python3
%define ansible_python_sitelib %python3_sitelib
%endif
Name: ansible-builder
Version: 3.0.0
Release: 0
Summary: An Ansible execution environment builder
License: Apache-2.0
URL: https://github.com/ansible/ansible-builder
Source: https://files.pythonhosted.org/packages/source/a/ansible-builder/ansible-builder-%{version}.tar.gz
BuildArch: noarch
BuildRequires: %{ansible_python}-base >= 3.8
BuildRequires: %{ansible_python}-pip
BuildRequires: %{ansible_python}-setuptools
BuildRequires: %{ansible_python}-wheel
BuildRequires: ansible-core
BuildRequires: python-rpm-macros
# https://github.com/ansible/ansible-builder/blob/devel/requirements.txt
BuildRequires: %{ansible_python}-pbr
BuildRequires: %{ansible_python}-PyYAML
BuildRequires: %{ansible_python}-bindep
BuildRequires: %{ansible_python}-jsonschema
BuildRequires: %{ansible_python}-requirements-parser
#
# Tests require podman, but also require connectivity to pull container images
# hence we do not enable this dependency
# BuildRequires: podman
#
# SECTION test requirements
# https://github.com/ansible/ansible-builder/blob/devel/test/requirements.txt
BuildRequires: %{ansible_python}-pytest
BuildRequires: %{ansible_python}-pytest-mock
BuildRequires: %{ansible_python}-pytest-xdist
# /SECTION
BuildRequires: fdupes
Requires: %{ansible_python}-PyYAML
Requires: %{ansible_python}-bindep
Requires: %{ansible_python}-jsonschema
Requires: %{ansible_python}-requirements-parser
Requires: (podman or docker)
%description
Ansible Builder is a tool that automates the process of
building execution environments using the schemas and
tooling defined in various Ansible Collections and by
the user.
See the readthedocs page for ansible-builder at:
https://ansible-builder.readthedocs.io/en/latest/
%prep
%setup -q -n ansible-builder-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand sed -i "1{s/env bash/bash/;}" %{buildroot}%{ansible_python_sitelib}/ansible_builder/_target_scripts/entrypoint
%python_expand head -n 1 %{buildroot}%{ansible_python_sitelib}/ansible_builder/_target_scripts/entrypoint
%fdupes %{buildroot}%{ansible_python_sitelib}
%check
# disable coverage tests
sed -i '/cov/d' pytest.ini
# disable color output
sed -i '/color/d' pytest.ini
# add %{buildroot}%{_bindir} to PATH, so the executable is found
export PATH=%{buildroot}%{_bindir}:$PATH
# checks ignored, as they require podman
# https://github.com/ansible/ansible-builder/issues/534
IGNORED_CHECKS="test_v3_pre_post_commands"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_v3_complete"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_ansible_check_is_skipped"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_missing_ansible"
IGNORED_CHECKS="${IGNORED_CHECKS} or test_missing_runner"
%pytest -k "not (${IGNORED_CHECKS})"
%files
%doc README.md
%license LICENSE.md
%{_bindir}/ansible-builder
%{ansible_python_sitelib}/ansible_builder
%{ansible_python_sitelib}/ansible_builder-*-info
%changelog