forked from pool/ansible-lint
update to 6.4.0
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:ansible/ansible-lint?expand=0&rev=2
This commit is contained in:
parent
1c9af39c0b
commit
2c41b7cf97
18
_service
Normal file
18
_service
Normal 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
4
_servicedata
Normal 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>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f57f520ae5d810ce062157dc7d633990ad2fbec81bbbb34ccc4ce3a0c21fcd38
|
||||
size 281546
|
3
ansible-lint-v6.4.0.tar.gz
Normal file
3
ansible-lint-v6.4.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a808ec87c8567981dfb2ad5c76018b7cb0ae3c95fb99e2e84931d247942feebb
|
||||
size 241124
|
@ -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>
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user