Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/
Date: Wed, 19 Jan 2022 07:26:22
Message-Id: 1642577155.f376d5b79443fbbf33bd0bc7d5f961ac25e896cf.arthurzam@gentoo
1 commit: f376d5b79443fbbf33bd0bc7d5f961ac25e896cf
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 19 07:25:55 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 19 07:25:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f376d5b7
7
8 dev-python/cfn-lint: add 0.57.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/cfn-lint/Manifest | 1 +
13 dev-python/cfn-lint/cfn-lint-0.57.0.ebuild | 49 ++++++++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
17 index 08a30413f645..c0ee18d44e7f 100644
18 --- a/dev-python/cfn-lint/Manifest
19 +++ b/dev-python/cfn-lint/Manifest
20 @@ -1,2 +1,3 @@
21 DIST cfn-lint-0.56.3.tar.gz 8278034 BLAKE2B 894d30add7a193d256dc2195c0cd1d4b75f10f60abe9e37c5b0bdd84178d9559759326ad3e55d2321b99588094b436dc2dc8dff1cc561ae56dd4cee98d6b43bd SHA512 8aeaf44a626f9bfc05ebeefc8aec9211fcac1a65de681d5d700f3621631bff15e74ed644b9d0dc8af4d9b0b14802c2259dbc4ccf38594705040f5fd3af1cf482
22 DIST cfn-lint-0.56.4.tar.gz 8550039 BLAKE2B 99efd99b423e068717f3050e4da444436463c16b0a55dfc36ca7ca45b1136d08bbce84441c8c4170eff7c82cbd4ecf87b6f78504b1d09d850d803a7e957903c9 SHA512 b7c94d85d58f9e44ff8d5575bb33c8c7fafcb908afe144d585765f02d645436d6583ecc802f0fa376597b75c72ada9a23862141cf1170c1ac1f64f2467d346fb
23 +DIST cfn-lint-0.57.0.tar.gz 8579636 BLAKE2B 5e9cadcbd695b1047c4cf51132fcdf5a254a89fcd89a86e3c5d86096e8cd376f7f02422757f7daaf98490ff82df88933a976faba1ea6504a463ed7c485c83631 SHA512 11ec66bc5a98c928e059778462766100fb47f4b45a4cc7023d3d2b70ae664a1b199ec4df0d95cb9ada5a09a1f7a609fcec7d76339b3d9d6430bbe85462e1c020
24
25 diff --git a/dev-python/cfn-lint/cfn-lint-0.57.0.ebuild b/dev-python/cfn-lint/cfn-lint-0.57.0.ebuild
26 new file mode 100644
27 index 000000000000..0025c3b1062d
28 --- /dev/null
29 +++ b/dev-python/cfn-lint/cfn-lint-0.57.0.ebuild
30 @@ -0,0 +1,49 @@
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 +inherit distutils-r1
38 +
39 +DESCRIPTION="CloudFormation Linter"
40 +HOMEPAGE="https://pypi.org/project/cfn-lint/ https://github.com/aws-cloudformation/cfn-lint/"
41 +SRC_URI="
42 + https://github.com/aws-cloudformation/cfn-lint/archive/v${PV}.tar.gz
43 + -> ${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
48 +
49 +RDEPEND="
50 + >=dev-python/aws-sam-translator-1.42.0[${PYTHON_USEDEP}]
51 + dev-python/jsonpatch[${PYTHON_USEDEP}]
52 + >=dev-python/jschema_to_python-1.2.3[${PYTHON_USEDEP}]
53 + >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
54 + dev-python/junit-xml[${PYTHON_USEDEP}]
55 + dev-python/networkx[${PYTHON_USEDEP}]
56 + >dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
57 + >=dev-python/requests-2.15.0[${PYTHON_USEDEP}]
58 + >=dev-python/sarif_om-1.0.4[${PYTHON_USEDEP}]
59 + >=dev-python/six-1.11[${PYTHON_USEDEP}]
60 +"
61 +
62 +distutils_enable_tests --install pytest
63 +
64 +EPYTEST_DESELECT=(
65 + # TODO
66 + test/unit/module/test_template.py::TestTemplate::test_build_graph
67 + # requires git repo
68 + test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
69 + # Internet
70 + test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
71 + test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_2
72 + test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
73 +)
74 +
75 +src_prepare() {
76 + # unpin the deps
77 + sed -e 's:~=[0-9.]*::' -i setup.py || die
78 + distutils-r1_src_prepare
79 +}