Skip to content

Commit 6163041

Browse files
committed
alvistack/v6.21.1
git clean -xdf git submodule sync --recursive git submodule update --recursive --init git submodule foreach --recursive git checkout -- . tar zcvf ../python-ansible-lint_6.21.1.orig.tar.gz --exclude=.git . debuild -uc -us cp python-ansible-lint.spec ../python-ansible-lint_6.21.1-1.spec cp ../python*-ansible-lint*6.21.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/ansible-ansible-lint-6.21.1/ rm -rf ../python*-ansible-lint*6.21.1*.* ../ansible-lint*6.21.1*.* See ansible#3869 Signed-off-by: Wong Hoi Sing Edison <[email protected]>
1 parent b4d4810 commit 6163041

21 files changed

+218
-17
lines changed

.config/requirements-lock.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ referencing==0.30.2
3434
requests==2.31.0
3535
rich==13.5.3
3636
rpds-py==0.10.3
37-
ruamel-yaml==0.17.33
37+
ruamel-yaml==0.18.2
3838
subprocess-tee==0.4.1
3939
tomli==2.0.1
4040
typing-extensions==4.8.0

.config/requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pytest >= 7.2.2
1111
pytest-mock
1212
pytest-plus >= 0.6 # for PYTEST_REQPASS
1313
pytest-xdist >= 2.1.0
14-
ruamel.yaml>=0.17.31,<0.18 # only the latest is expected to pass our tests
14+
ruamel.yaml>=0.17.31
1515
ruamel-yaml-clib # needed for mypy
1616
types-jsonschema # IDE support
1717
types-pyyaml # IDE support

.config/requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ packaging>=21.3 # Apache-2.0,BSD-2-Clause
1010
pathspec>=0.10.3 # Mozilla Public License 2.0 (MPL 2.0)
1111
pyyaml>=5.4.1 # MIT (centos 9 has 5.3.1)
1212
rich>=12.0.0 # MIT
13-
ruamel.yaml>=0.17.0,<0.18,!=0.17.29,!=0.17.30 # MIT, next version is planned to have breaking changes
13+
ruamel.yaml>=0.17.0,!=0.17.29,!=0.17.30 # MIT
1414
requests>=2.31.0 # Apache-2.0 (indirect, but we want newer version for security reasons)
1515
subprocess-tee>=0.4.1 # MIT, used by ansible-compat
1616
yamllint >= 1.30.0 # GPLv3

.config/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ regex==2023.8.8
9292
requests==2.31.0
9393
rich==13.5.3
9494
rpds-py==0.10.3
95-
ruamel-yaml==0.17.33
95+
ruamel-yaml==0.18.2
9696
six==1.16.0
9797
soupsieve==2.5
9898
subprocess-tee==0.4.1

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ pip-wheel-metadata
4646
# mypy
4747
.mypy_cache
4848

49-
# Generated by setuptools-scm
50-
src/ansiblelint/_version.py
51-
5249
# Unformatted fixtures, need to be added with force as we need to exclude
5350
# them from being reformatted (.prettierignore is a symlink to .gitignore)
5451
test/fixtures/formatting-before/
@@ -62,7 +59,6 @@ examples/playbooks/vars/transform_nested_data.yml
6259
.DS_Store
6360
.vscode
6461
.idea
65-
src/ansiblelint/_version.py
6662
*.tar.gz
6763
.pytest_cache
6864
test/eco/CODENOTIFY.html
@@ -73,3 +69,5 @@ collections
7369
site
7470
_readthedocs
7571
*.tmp.*
72+
73+
.pybuild/

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ repos:
157157
- pytest>=7.2.2
158158
- rich>=13.2.0
159159
- ruamel-yaml-clib>=0.2.7
160-
- ruamel-yaml>=0.17.31
160+
- ruamel-yaml>=0.18.2
161161
- subprocess-tee
162162
- types-PyYAML
163163
- types-jsonschema>=4.4.2
@@ -188,7 +188,7 @@ repos:
188188
- pyyaml
189189
- rich>=13.2.0
190190
- ruamel-yaml-clib>=0.2.7
191-
- ruamel-yaml>=0.17.31
191+
- ruamel-yaml>=0.18.2
192192
- typing_extensions
193193
- wcmatch
194194
- yamllint

MANIFEST.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
include COPYING
2+
include README.md
3+
4+
recursive-exclude * __pycache__
5+
recursive-exclude * *.py[co]
6+
7+
recursive-include src/ansiblelint/schemas **/*
8+
recursive-include src/ansiblelint/data **/*

debian/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.substvars
2+
*debhelper*
3+
.debhelper
4+
files
5+
ansible-lint
6+
tmp

debian/ansible-lint.install

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
usr/bin/*
2+
usr/lib/python*/*-packages/*
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ansible-lint: copyright-without-copyright-notice
2+
ansible-lint: initial-upload-closes-no-bugs
3+
ansible-lint: no-manual-page
4+
ansible-lint: zero-byte-file-in-doc-directory

0 commit comments

Comments
 (0)