SHA256
1
0
forked from pool/ansible-lint
Johannes Kastl 2022-07-28 20:37:26 +00:00 committed by Git OBS Bridge
parent 1c9af39c0b
commit 2c41b7cf97
6 changed files with 51 additions and 7 deletions

18
_service Normal file
View File

@ -0,0 +1,18 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="url">https://github.com/ansible-community/ansible-lint</param>
<param name="scm">git</param>
<param name="exclude">.git</param>
<param name="revision">v6.4.0</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="changesgenerate">disable</param>
<param name="match-tag">v*</param>
</service>
<service name="set_version" mode="disabled">
<param name="basename">ansible-lint</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>
<param name="compression">gz</param>
</service>
</services>

4
_servicedata Normal file
View File

@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/ansible-community/ansible-lint</param>
<param name="changesrevision">04f808a67e341d88bcf77fd2017199be959c0459</param></service></servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f57f520ae5d810ce062157dc7d633990ad2fbec81bbbb34ccc4ce3a0c21fcd38
size 281546

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a808ec87c8567981dfb2ad5c76018b7cb0ae3c95fb99e2e84931d247942feebb
size 241124

View File

@ -1,3 +1,25 @@
-------------------------------------------------------------------
Thu Jul 28 20:05:19 UTC 2022 - Johannes Kastl <kastl@b1-systems.de>
- update to 6.4.0:
* Minor Changes
- Add initial support for rule profiles (#2245) @ssbarnea
- deprecated-local-action: refactor to use matchtask() (#2238) @nishipy
- Add support for Python 3.11 (#2239) @ssbarnea
* Bugfixes
- Upgrade jsonschema to 4.8.0 (#2252) @ssbarnea
- Add ability to use use sub-rule matches on skip or warn lists (#2251) @ssbarnea
- Improve argument_specs matching pattern (#2249) @ssbarnea
- Update schemas (#2250) @ssbarnea
- deprecated-local-action: refactor to use matchtask() (#2238) @nishipy
- no-same-owner: refactor to use matchtask() (#2233) @nishipy
- Add cleanup step for empty mocked role folders (#2235) @zhan9san
- Allow yaml extension for inventory and requirements (#2225) @netsandbox
- no-loop-var-prefix: refactor to use matchtask() (#2218) @nishipy
- Update schemas (#2223) @jeefberkey
* Deprecations
- deprecated-local-action: refactor to use matchtask() (#2238) @nishipy
-------------------------------------------------------------------
Mon Jul 18 15:51:37 UTC 2022 - Johannes Kastl <kastl@b1-systems.de>

View File

@ -20,12 +20,12 @@
%global lib_name ansiblelint
%{?python_enable_dependency_generator}
Name: ansible-lint
Version: 6.3.0
Release: 1%{?dist}
Version: 6.4.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
Source0: https://github.com/ansible-community/ansible-lint/archive/v%{version}/ansible-lint-%{version}.tar.gz#/ansible-lint-v%{version}.tar.gz
BuildArch: noarch
BuildRequires: python-rpm-macros
BuildRequires: python3-PyYAML
@ -68,7 +68,7 @@ Requires: python3-yamllint >= 1.25.0
Checks playbooks for practices and behavior that could potentially be improved.
%prep
%setup -n ansible-lint-%{version}
%setup -n %{name}-v%{version}
sed -ri 's/(\[metadata\])/\1\nversion = %{version}/' setup.cfg
sed -i '1{/\/usr\/bin\/env python/d;}' src/ansiblelint/__main__.py