Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-lint/
Date: Sat, 27 Aug 2022 23:05:07
Message-Id: 1661639941.cfb65595f585fdcbb98fc504907bedf626345421.marecki@gentoo
1 commit: cfb65595f585fdcbb98fc504907bedf626345421
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 27 22:39:01 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 27 22:39:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfb65595
7
8 app-admin/ansible-lint: add 6.5.1
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-admin/ansible-lint/Manifest | 1 +
13 app-admin/ansible-lint/ansible-lint-6.5.1.ebuild | 76 ++++++++++++++++++++++++
14 2 files changed, 77 insertions(+)
15
16 diff --git a/app-admin/ansible-lint/Manifest b/app-admin/ansible-lint/Manifest
17 index 709e73c10ca2..5c40d5275b33 100644
18 --- a/app-admin/ansible-lint/Manifest
19 +++ b/app-admin/ansible-lint/Manifest
20 @@ -1,2 +1,3 @@
21 DIST ansible-lint-6.3.0.tar.gz 268331 BLAKE2B 00ea2dbc7bb5e71d63a737ac99d4116441f6b1eee2fa476d9aa4d78068064e53975df00950f337e7c9e25dacf8778ddd2e40eb5d3ea1301f56a80dfd90d42c20 SHA512 3e9d480cb90f3022a4b001c061c3e76b753620776a009b1563dce335c13ee38b7ac334725592ac644a2808d85ceb98b618a451c193bc7c4961474d4e7fbbb88e
22 DIST ansible-lint-6.4.0.gh.tar.gz 235346 BLAKE2B a2f55e6f4df739dccb011225f0a660978a9dfdbcc6e45cee2eef12467482c471d8700bb1bfad87e03eb1c4f21291307db5dc174e2440370ca11368f6ad6d195d SHA512 75e30a325a5c62f64066925b99e691886e299e029adc78fdceaa5eb23a74a46408793479e7c54c312d93e0a62d190b34f1e7614dec31a94822d39a231796e9df
23 +DIST ansible-lint-6.5.1.gh.tar.gz 244320 BLAKE2B aff13d6ce9346dbdba459722cfc071b1e671dc17f3fb44744a706097f29e2a6a9962514fc61e669b58517acf6e95feba88af1bf8c7a4fb668e1a8d1cc5d54746 SHA512 40890a3fc0caaa3fd1d38f32739615dd664db1e7ea534c0bc3138da7295cdc6923715ea12febefc8951be350aad5bf7ac76dd004e3c4aff386b78551bd6442a8
24
25 diff --git a/app-admin/ansible-lint/ansible-lint-6.5.1.ebuild b/app-admin/ansible-lint/ansible-lint-6.5.1.ebuild
26 new file mode 100644
27 index 000000000000..c20caa317a96
28 --- /dev/null
29 +++ b/app-admin/ansible-lint/ansible-lint-6.5.1.ebuild
30 @@ -0,0 +1,76 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +DISTUTILS_USE_PEP517=setuptools
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Checks ansible playbooks for practices and behaviour that can be improved"
42 +HOMEPAGE="https://github.com/ansible/ansible-lint"
43 +# PyPI tarballs do not contain all the data files needed by the tests
44 +SRC_URI="https://github.com/ansible/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~riscv"
49 +
50 +RDEPEND="
51 + >=app-admin/ansible-base-2.12.0[${PYTHON_USEDEP}]
52 + >=dev-python/ansible-compat-2.2.0[${PYTHON_USEDEP}]
53 + >=dev-python/enrich-1.2.6[${PYTHON_USEDEP}]
54 + dev-python/filelock[${PYTHON_USEDEP}]
55 + >=dev-python/jsonschema-4.9.0[${PYTHON_USEDEP}]
56 + dev-python/packaging[${PYTHON_USEDEP}]
57 + dev-python/pyyaml[${PYTHON_USEDEP}]
58 + >=dev-python/rich-9.5.1[${PYTHON_USEDEP}]
59 + >=dev-python/ruamel-yaml-0.15.37[${PYTHON_USEDEP}]
60 + >=dev-python/wcmatch-7.0[${PYTHON_USEDEP}]
61 + >=dev-util/yamllint-1.25.0[${PYTHON_USEDEP}]"
62 +BDEPEND="
63 + >=dev-python/setuptools_scm-3.5.0[${PYTHON_USEDEP}]
64 + >=dev-python/setuptools_scm_git_archive-1.0[${PYTHON_USEDEP}]
65 + test? (
66 + >=dev-python/flaky-3.7.0[${PYTHON_USEDEP}]
67 + >=dev-python/pytest-plus-0.2[${PYTHON_USEDEP}]
68 + >=dev-python/pytest-xdist-2.5.0[${PYTHON_USEDEP}]
69 + )"
70 +
71 +PATCHES=(
72 + "${FILESDIR}"/${PN}-6.0.2_test-module-check.patch
73 +)
74 +
75 +# Skip problematic tests:
76 +# - test_call_from_outside_venv doesn't play nicely with the sandbox
77 +# - all the others require Internet access, mostly in order to access Ansible Galaxy
78 +EPYTEST_DESELECT=(
79 + test/test_cli_role_paths.py::test_run_playbook_github
80 + test/test_eco.py
81 + test/test_examples.py::test_custom_kinds
82 + test/test_import_playbook.py::test_task_hook_import_playbook
83 + test/test_list_rules.py::test_list_rules_includes_opt_in_rules
84 + test/test_list_rules.py::test_list_rules_with_format_option
85 + test/test_list_rules.py::test_list_tags_includes_opt_in_rules
86 + test/test_main.py::test_call_from_outside_venv
87 + test/test_prerun.py::test_install_collection
88 + test/test_prerun.py::test_prerun_reqs_v1
89 + test/test_prerun.py::test_prerun_reqs_v2
90 + test/test_prerun.py::test_require_collection_wrong_version
91 + test/test_profiles.py::test_profile_listing
92 + test/test_rules_collection.py::test_rich_rule_listing
93 + test/test_utils.py::test_cli_auto_detect
94 + test/test_utils.py::test_template_lookup
95 + test/test_verbosity.py::test_default_verbosity
96 +)
97 +
98 +distutils_enable_tests pytest
99 +
100 +python_test() {
101 + # Since 6.2.1, without this the test suite still gets confused by the presence of ansible-lint modules
102 + # in both ${ED} and ${S}.
103 + cd "${S}" || die
104 +
105 + epytest test
106 +}