ansible-lint/ansible-lint.spec
Johannes Kastl f9c7483b28 Accepting request 1066035 from home:ojkastl_buildservice:Branch_systemsmanagement_ansible
- update to 6.13.0:
  * Minor Changes
    - Removed experimental flag from multiple rules (#3037) @ssbarnea
    - Allow only use of quoted octals (#3030) @ssbarnea
    - Load rule ignores from external text file (#3004) @ssbarnea
  * Bugfixes
    - Improve jinja error line number identification (#3044) @ssbarnea
    - profiles: include all rules when listing all rules or tags (#3043) @ziegenberg
    - Improve documentation on var-naming (#3042) @ssbarnea
    - Improve loop-var-prefix checking (#3041) @ssbarnea
    - Ignore known problematic modules from args rule (#3040) @ssbarnea
    - Improve jinja2 rule error handling (#3039) @ssbarnea
    - Enable syntax-check on roles (#3035) @ssbarnea
    - Recognize role-name[path] also inside roles block (#3034) @ssbarnea
    - Allow {% in schema full-jinja check (#3029) @ssbarnea
    - Update ansible-compat (#3025) @ssbarnea
    - Recognize systemctl kill as a valid command (#3024) @konstruktoid
    - Mark syntax-check as unskippable (#3020) @ssbarnea
    - Fixes no-tabs issue with fqcn actions (#3021) @ssbarnea
    - Move empty-playbook to syntax-check (#3019) @ssbarnea
    - Ensure that rule import failures are not ignored (#2983) @ssbarnea
    - Increase the test coverage (#3014) @ssbarnea

OBS-URL: https://build.opensuse.org/request/show/1066035
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:ansible/ansible-lint?expand=0&rev=24
2023-02-15 18:58:12 +00:00

127 lines
5.1 KiB
RPMSpec

#
# spec file for package ansible-lint
#
# Copyright (c) 2022 SUSE LLC
# Copyright 2018 by Lars Vogdt
#
# 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 ansible_python python310
%define ansible_python_executable python3.10
%define ansible_python_sitelib %python310_sitelib
%else
# Tumbleweed
%define ansible_python python3
%define ansible_python_executable python3
%define ansible_python_sitelib %python3_sitelib
%endif
%global lib_name ansiblelint
%{?python_enable_dependency_generator}
Name: ansible-lint
Version: 6.13.0
Release: 0%{?dist}
Summary: Best practices checker for Ansible
License: MIT
URL: https://github.com/ansible-community/ansible-lint
Source0: https://github.com/ansible-community/ansible-lint/archive/v%{version}/ansible-lint-%{version}.tar.gz#/ansible-lint-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python-rpm-macros
BuildRequires: %{ansible_python}-base >= 3.8
BuildRequires: %{ansible_python}-pip
BuildRequires: %{ansible_python}-wheel
BuildRequires: fdupes
# SECTION tests
BuildRequires: %{ansible_python}-flaky >= 3.7.0
BuildRequires: %{ansible_python}-pytest
BuildRequires: %{ansible_python}-pytest-cov
BuildRequires: %{ansible_python}-pytest-xdist >= 2.1.0
BuildRequires: %{ansible_python}-psutil
BuildRequires: %{ansible_python}-black >= 22.8.0
BuildRequires: %{ansible_python}-mypy
BuildRequires: %{ansible_python}-pylint
BuildRequires: %{ansible_python}-flake8
# /SECTION
# Add runtime requirements (unless required for tests)
# to make sure this only builds if they are present
BuildRequires: ansible-core >= 2.12
BuildRequires: %{ansible_python}-ansible-compat >= 2.2.5
BuildRequires: %{ansible_python}-enrich >= 1.2.6
BuildRequires: %{ansible_python}-filelock >= 3.8.0
BuildRequires: %{ansible_python}-jsonschema >= 4.17.0
BuildRequires: %{ansible_python}-packaging >= 21.3
BuildRequires: %{ansible_python}-PyYAML >= 5.4.1
BuildRequires: %{ansible_python}-rich >= 12.0.0
BuildRequires: (%{ansible_python}-ruamel.yaml >= 0.17.21 and %{ansible_python}-ruamel.yaml < 0.18)
BuildRequires: %{ansible_python}-six
BuildRequires: %{ansible_python}-subprocess-tee
BuildRequires: %{ansible_python}-tenacity
BuildRequires: %{ansible_python}-wcmatch >= 8.3.2
BuildRequires: %{ansible_python}-yamllint >= 1.26.3
#
Requires: ansible-core >= 2.12
Requires: %{ansible_python}-ansible-compat >= 2.2.5
Requires: %{ansible_python}-black >= 22.8.0
Requires: %{ansible_python}-bracex
Requires: %{ansible_python}-enrich >= 1.2.6
Requires: %{ansible_python}-filelock
Requires: %{ansible_python}-jsonschema >= 4.17.0
Requires: %{ansible_python}-packaging >= 21.3
Requires: %{ansible_python}-PyYAML >= 5.4.1
Requires: %{ansible_python}-rich >= 12.0.0
Requires: (%{ansible_python}-ruamel.yaml >= 0.17.21 and %{ansible_python}-ruamel.yaml < 0.18)
Requires: %{ansible_python}-six
Requires: %{ansible_python}-subprocess-tee
Requires: %{ansible_python}-tenacity
Requires: %{ansible_python}-wcmatch >= 8.3.2
Requires: %{ansible_python}-yamllint >= 1.26.3
%description
Checks playbooks for practices and behavior that could potentially be improved.
%prep
%setup -n %{name}-%{version}
sed -i '/^dynamic/d' pyproject.toml
sed -i '/^description/a version = "%{version}"' pyproject.toml
sed -i '1{/\/usr\/bin\/env python/d;}' src/ansiblelint/__main__.py
%build
%{ansible_python_executable} -mpip wheel --no-deps --disable-pip-version-check --use-pep517 --no-build-isolation --progress-bar off --verbose --wheel-dir ./build/ .
mkdir -p ./dist
cp ./build/ansible_lint-*-none-any.whl ./dist/
%install
%{ansible_python_executable} -mpip install --root %{buildroot} --disable-pip-version-check --no-compile --no-deps --progress-bar off --ignore-installed --no-index --verbose --find-links build/ansible_lint-*.whl ansible_lint==%{version}
find %{buildroot}/%{ansible_python_sitelib} -name '*.pyc' -delete
%{ansible_python_executable} -m compileall %{buildroot}/%{ansible_python_sitelib}
%{ansible_python_executable} -O -m compileall %{buildroot}/%{ansible_python_sitelib}
cp -vr src/ansiblelint/schemas %{buildroot}/%{ansible_python_sitelib}/%{lib_name}/
cp -vr src/ansiblelint/data %{buildroot}/%{ansible_python_sitelib}/%{lib_name}/
%fdupes -s %{buildroot}/%{ansible_python_sitelib}
%files
%doc README.md
%license COPYING
%{_bindir}/ansible-lint
%{ansible_python_sitelib}/%{lib_name}/
%{ansible_python_sitelib}/ansible_lint-%{version}.dist-info/
%changelog