[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-07-14 Thread Michał Górny
commit: 5086f6cfff769b93d8d88e846b50b62e51733d6a
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul 15 03:51:36 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul 15 03:51:36 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5086f6cf

dev-python/cfn-lint: Bump to 1.38.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.38.0.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 75f4f5e9e323..6cbbc20ead8a 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.36.1.tar.gz 3108363 BLAKE2B 
21d99e2ccd5edc69cc7c1995f5667e9997764c0d7be6a2662ef3b8f42bf72d633153a0cef5493d25b16eed2e87da1bdad1536b97b9193e4c26a1e44c15790827
 SHA512 
49adc1844768b9ae70599c02653cfc2b454edf08def22c3d6aa5728f0ebf7b4cc1729f729ab3022a1028f44b54df1e14a626dad684143306766930f398a744a2
 DIST cfn_lint-1.37.0.tar.gz 3089485 BLAKE2B 
38e855b82064738895e0f056867bbd7e81ffa20b955d5276de0a50f80befbc52a4337280b7ab39288d31497fa03f68485e484e966c775b750530f7116408cb55
 SHA512 
05346d7c72c5fae61b5f79b3fc1c0c83b04ce083e534c59ada65bc44258e0e5f72874e09009c52f940c908b7172da34c5bb93b62c366b0aa10ef6bb547aa1c04
 DIST cfn_lint-1.37.2.tar.gz 3105967 BLAKE2B 
afa47f8c3669b32a6471e6bd438b68407f87f76c1473d848b8bc70474616418505ffcb69f7a35124fc2c5c1b2a5135d2d9ed51f2227b36e753d7a481fbc5b362
 SHA512 
e5a24a4cc506c287af3229ca86bee6ece335b8b80c7083f9b8c52a79d09c441043b176464e84051d05e135d2e47b11b307531a9ab0b24de98545e9e276697f64
+DIST cfn_lint-1.38.0.tar.gz 3131464 BLAKE2B 
d843617918f16882927c31a92d24cb67b7701787f0398dae7fb0432df7db811946a78144641e60e3b09b049ec04493860841fce415d2ce2be977ae4a6760e2a7
 SHA512 
a38773533b6d2e8c9df39e2195b6d91a621c2b9e6da1dec5c221ef6d4f52d5f3f52232699395c4d54f00152b23daa22ac2dd44515cb888d1b86b88686f0f9c34

diff --git a/dev-python/cfn-lint/cfn-lint-1.38.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.38.0.ebuild
new file mode 100644
index ..762e8c817cde
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.38.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-07-07 Thread Michał Górny
commit: d95ad46858021ee75daabf88fe179974f78a3808
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jul  8 04:17:58 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jul  8 06:02:52 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d95ad468

dev-python/cfn-lint: Bump to 1.37.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.37.2.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 89aace7fcfb3..75f4f5e9e323 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.36.1.tar.gz 3108363 BLAKE2B 
21d99e2ccd5edc69cc7c1995f5667e9997764c0d7be6a2662ef3b8f42bf72d633153a0cef5493d25b16eed2e87da1bdad1536b97b9193e4c26a1e44c15790827
 SHA512 
49adc1844768b9ae70599c02653cfc2b454edf08def22c3d6aa5728f0ebf7b4cc1729f729ab3022a1028f44b54df1e14a626dad684143306766930f398a744a2
 DIST cfn_lint-1.37.0.tar.gz 3089485 BLAKE2B 
38e855b82064738895e0f056867bbd7e81ffa20b955d5276de0a50f80befbc52a4337280b7ab39288d31497fa03f68485e484e966c775b750530f7116408cb55
 SHA512 
05346d7c72c5fae61b5f79b3fc1c0c83b04ce083e534c59ada65bc44258e0e5f72874e09009c52f940c908b7172da34c5bb93b62c366b0aa10ef6bb547aa1c04
+DIST cfn_lint-1.37.2.tar.gz 3105967 BLAKE2B 
afa47f8c3669b32a6471e6bd438b68407f87f76c1473d848b8bc70474616418505ffcb69f7a35124fc2c5c1b2a5135d2d9ed51f2227b36e753d7a481fbc5b362
 SHA512 
e5a24a4cc506c287af3229ca86bee6ece335b8b80c7083f9b8c52a79d09c441043b176464e84051d05e135d2e47b11b307531a9ab0b24de98545e9e276697f64

diff --git a/dev-python/cfn-lint/cfn-lint-1.37.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.37.2.ebuild
new file mode 100644
index ..762e8c817cde
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.37.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-07-05 Thread Michał Górny
commit: c2ee2e966161f60b3e7deaf64d9296454041a4a8
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul  5 08:46:20 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jul  5 08:46:20 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2ee2e96

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 -
 dev-python/cfn-lint/cfn-lint-1.35.4.ebuild | 61 --
 2 files changed, 62 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 39952bdd47ee..89aace7fcfb3 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,2 @@
-DIST cfn_lint-1.35.4.tar.gz 2981501 BLAKE2B 
51fd51b194e19a0bebd72efadfd81c633f86c3017efaf08b262c83b36228548b53835aae0f17e2617ed7ec8a4cd87886f33d3ad01c935b26dde58273eee37dc4
 SHA512 
67442deda9d3ab8556cb35def0b3b26286d986f17f7fd07080b1752575790bda18ea65ac3ac66be3086cc1762d773fa499f31c26a9d4b75cde2c7c91471fbcd4
 DIST cfn_lint-1.36.1.tar.gz 3108363 BLAKE2B 
21d99e2ccd5edc69cc7c1995f5667e9997764c0d7be6a2662ef3b8f42bf72d633153a0cef5493d25b16eed2e87da1bdad1536b97b9193e4c26a1e44c15790827
 SHA512 
49adc1844768b9ae70599c02653cfc2b454edf08def22c3d6aa5728f0ebf7b4cc1729f729ab3022a1028f44b54df1e14a626dad684143306766930f398a744a2
 DIST cfn_lint-1.37.0.tar.gz 3089485 BLAKE2B 
38e855b82064738895e0f056867bbd7e81ffa20b955d5276de0a50f80befbc52a4337280b7ab39288d31497fa03f68485e484e966c775b750530f7116408cb55
 SHA512 
05346d7c72c5fae61b5f79b3fc1c0c83b04ce083e534c59ada65bc44258e0e5f72874e09009c52f940c908b7172da34c5bb93b62c366b0aa10ef6bb547aa1c04

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild
deleted file mode 100644
index 4f8982d9a705..
--- a/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # different line wrapping somehow
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-07-05 Thread Arthur Zamarin
commit: 20860b704cf6266827f27d009388911cf3f7d8cb
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jul  5 08:09:07 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jul  5 08:09:07 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20860b70

dev-python/cfn-lint: Stabilize 1.36.1 ALLARCHES, #959529

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.36.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.36.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.36.1.ebuild
index 9da77fa174d3..4f8982d9a705 100644
--- a/dev-python/cfn-lint/cfn-lint-1.36.1.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.36.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-07-01 Thread Michał Górny
commit: a754e58cf2f03f7161d292d040a8ab38c6466db1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  2 04:03:02 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  2 04:03:02 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a754e58c

dev-python/cfn-lint: Bump to 1.37.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.37.0.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index dc49742c91a2..39952bdd47ee 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.35.4.tar.gz 2981501 BLAKE2B 
51fd51b194e19a0bebd72efadfd81c633f86c3017efaf08b262c83b36228548b53835aae0f17e2617ed7ec8a4cd87886f33d3ad01c935b26dde58273eee37dc4
 SHA512 
67442deda9d3ab8556cb35def0b3b26286d986f17f7fd07080b1752575790bda18ea65ac3ac66be3086cc1762d773fa499f31c26a9d4b75cde2c7c91471fbcd4
 DIST cfn_lint-1.36.1.tar.gz 3108363 BLAKE2B 
21d99e2ccd5edc69cc7c1995f5667e9997764c0d7be6a2662ef3b8f42bf72d633153a0cef5493d25b16eed2e87da1bdad1536b97b9193e4c26a1e44c15790827
 SHA512 
49adc1844768b9ae70599c02653cfc2b454edf08def22c3d6aa5728f0ebf7b4cc1729f729ab3022a1028f44b54df1e14a626dad684143306766930f398a744a2
+DIST cfn_lint-1.37.0.tar.gz 3089485 BLAKE2B 
38e855b82064738895e0f056867bbd7e81ffa20b955d5276de0a50f80befbc52a4337280b7ab39288d31497fa03f68485e484e966c775b750530f7116408cb55
 SHA512 
05346d7c72c5fae61b5f79b3fc1c0c83b04ce083e534c59ada65bc44258e0e5f72874e09009c52f940c908b7172da34c5bb93b62c366b0aa10ef6bb547aa1c04

diff --git a/dev-python/cfn-lint/cfn-lint-1.37.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.37.0.ebuild
new file mode 100644
index ..762e8c817cde
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.37.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-06-21 Thread Michał Górny
commit: c9acae75d9bdc4f1725e2d88289c53521855c6e7
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun 21 08:06:13 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun 21 08:15:24 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9acae75

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  2 -
 dev-python/cfn-lint/cfn-lint-1.35.3.ebuild | 61 --
 dev-python/cfn-lint/cfn-lint-1.36.0.ebuild | 61 --
 3 files changed, 124 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 815a33ff59a9..dc49742c91a2 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,4 +1,2 @@
-DIST cfn_lint-1.35.3.tar.gz 3105179 BLAKE2B 
a1bd9ea3dee0f4ee6ddf88a4572e0900ac099274bf75f37e54a56a6c5d102e9f1d91a14518be38b03a37257999ff3c9539c4a8f08a5042a1689e862259266d50
 SHA512 
bdd0188bcd7dd327e6a72c60dcc8535643750c3762632e09bb851c62f520b38518d76e0566686f8fe5766beff147abd5eccd94db34701bef5d149e84954a3a48
 DIST cfn_lint-1.35.4.tar.gz 2981501 BLAKE2B 
51fd51b194e19a0bebd72efadfd81c633f86c3017efaf08b262c83b36228548b53835aae0f17e2617ed7ec8a4cd87886f33d3ad01c935b26dde58273eee37dc4
 SHA512 
67442deda9d3ab8556cb35def0b3b26286d986f17f7fd07080b1752575790bda18ea65ac3ac66be3086cc1762d773fa499f31c26a9d4b75cde2c7c91471fbcd4
-DIST cfn_lint-1.36.0.tar.gz 3085599 BLAKE2B 
5f482ab9c4682c11471fb66edb2caa262f7a2c61037c60139ffa610c5d0f40a3c37a32db992e37d3ead6593cbc9a8dba9576400043cbe02c7c64d457dfcbbb76
 SHA512 
3140ea79beeb61411f7e432476009356b67ad64fdaa1ca2d4c4f6965a1630886b9ec6e95f96afe237ebd486abb061c348c0ab224457d04a7a17d529733514a32
 DIST cfn_lint-1.36.1.tar.gz 3108363 BLAKE2B 
21d99e2ccd5edc69cc7c1995f5667e9997764c0d7be6a2662ef3b8f42bf72d633153a0cef5493d25b16eed2e87da1bdad1536b97b9193e4c26a1e44c15790827
 SHA512 
49adc1844768b9ae70599c02653cfc2b454edf08def22c3d6aa5728f0ebf7b4cc1729f729ab3022a1028f44b54df1e14a626dad684143306766930f398a744a2

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild
deleted file mode 100644
index 4f8982d9a705..
--- a/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # different line wrapping somehow
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}

diff --git a/dev-python/cfn-lint/cfn-lint-1.36.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.36.0.ebuild
deleted file mode 100644
index 9da77fa174d3..
--- a/dev-python/cfn-lint/cfn-lint-1.36.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-06-21 Thread Sam James
commit: fa78804c69e3200c14074d0d60955f9b8212a195
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun 21 07:07:08 2025 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun 21 07:08:03 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa78804c

dev-python/cfn-lint: Stabilize 1.35.4 ALLARCHES, #958576

Signed-off-by: Sam James  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.35.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild
index 9da77fa174d3..4f8982d9a705 100644
--- a/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-06-20 Thread Michał Górny
commit: 4d0565536d178e8dc25fb7e90b373b4e8ad520f2
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun 21 03:57:35 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun 21 04:35:13 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d056553

dev-python/cfn-lint: Bump to 1.36.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.36.1.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 4bb49dfb02ef..815a33ff59a9 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.35.3.tar.gz 3105179 BLAKE2B 
a1bd9ea3dee0f4ee6ddf88a4572e0900ac099274bf75f37e54a56a6c5d102e9f1d91a14518be38b03a37257999ff3c9539c4a8f08a5042a1689e862259266d50
 SHA512 
bdd0188bcd7dd327e6a72c60dcc8535643750c3762632e09bb851c62f520b38518d76e0566686f8fe5766beff147abd5eccd94db34701bef5d149e84954a3a48
 DIST cfn_lint-1.35.4.tar.gz 2981501 BLAKE2B 
51fd51b194e19a0bebd72efadfd81c633f86c3017efaf08b262c83b36228548b53835aae0f17e2617ed7ec8a4cd87886f33d3ad01c935b26dde58273eee37dc4
 SHA512 
67442deda9d3ab8556cb35def0b3b26286d986f17f7fd07080b1752575790bda18ea65ac3ac66be3086cc1762d773fa499f31c26a9d4b75cde2c7c91471fbcd4
 DIST cfn_lint-1.36.0.tar.gz 3085599 BLAKE2B 
5f482ab9c4682c11471fb66edb2caa262f7a2c61037c60139ffa610c5d0f40a3c37a32db992e37d3ead6593cbc9a8dba9576400043cbe02c7c64d457dfcbbb76
 SHA512 
3140ea79beeb61411f7e432476009356b67ad64fdaa1ca2d4c4f6965a1630886b9ec6e95f96afe237ebd486abb061c348c0ab224457d04a7a17d529733514a32
+DIST cfn_lint-1.36.1.tar.gz 3108363 BLAKE2B 
21d99e2ccd5edc69cc7c1995f5667e9997764c0d7be6a2662ef3b8f42bf72d633153a0cef5493d25b16eed2e87da1bdad1536b97b9193e4c26a1e44c15790827
 SHA512 
49adc1844768b9ae70599c02653cfc2b454edf08def22c3d6aa5728f0ebf7b4cc1729f729ab3022a1028f44b54df1e14a626dad684143306766930f398a744a2

diff --git a/dev-python/cfn-lint/cfn-lint-1.36.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.36.1.ebuild
new file mode 100644
index ..9da77fa174d3
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.36.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-06-12 Thread Michał Górny
commit: 29f4d2bddfd61f5d953ccf4bffae8a13b82fe218
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 13 03:25:12 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 13 03:25:12 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29f4d2bd

dev-python/cfn-lint: Bump to 1.36.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.36.0.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 03f3c37f15f8..4bb49dfb02ef 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.35.3.tar.gz 3105179 BLAKE2B 
a1bd9ea3dee0f4ee6ddf88a4572e0900ac099274bf75f37e54a56a6c5d102e9f1d91a14518be38b03a37257999ff3c9539c4a8f08a5042a1689e862259266d50
 SHA512 
bdd0188bcd7dd327e6a72c60dcc8535643750c3762632e09bb851c62f520b38518d76e0566686f8fe5766beff147abd5eccd94db34701bef5d149e84954a3a48
 DIST cfn_lint-1.35.4.tar.gz 2981501 BLAKE2B 
51fd51b194e19a0bebd72efadfd81c633f86c3017efaf08b262c83b36228548b53835aae0f17e2617ed7ec8a4cd87886f33d3ad01c935b26dde58273eee37dc4
 SHA512 
67442deda9d3ab8556cb35def0b3b26286d986f17f7fd07080b1752575790bda18ea65ac3ac66be3086cc1762d773fa499f31c26a9d4b75cde2c7c91471fbcd4
+DIST cfn_lint-1.36.0.tar.gz 3085599 BLAKE2B 
5f482ab9c4682c11471fb66edb2caa262f7a2c61037c60139ffa610c5d0f40a3c37a32db992e37d3ead6593cbc9a8dba9576400043cbe02c7c64d457dfcbbb76
 SHA512 
3140ea79beeb61411f7e432476009356b67ad64fdaa1ca2d4c4f6965a1630886b9ec6e95f96afe237ebd486abb061c348c0ab224457d04a7a17d529733514a32

diff --git a/dev-python/cfn-lint/cfn-lint-1.36.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.36.0.ebuild
new file mode 100644
index ..9da77fa174d3
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.36.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-06-07 Thread Michał Górny
commit: 506fe12e901ef0e26c2b0e52d1b6f9e10c65d531
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  7 10:21:56 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  7 10:21:56 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=506fe12e

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 -
 dev-python/cfn-lint/cfn-lint-1.35.1.ebuild | 61 --
 2 files changed, 62 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index e365ac75c052..03f3c37f15f8 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,2 @@
-DIST cfn_lint-1.35.1.tar.gz 3077415 BLAKE2B 
8ef32c6a1b7e6d4db976e8b59b1933814647207a0d690ecadb82ac1dd660bc5ed55e66de2ef21e9936d0c97abcdaa1bdaf8e65a996622e949ddf07afa8588240
 SHA512 
90c6acec47e9d4fb7344dab7c3ce8170a0ee09875806fe1ea71da91a9ef9e852044a351227b279e9ae0ba42d8f2f1104c6f1460b0aba00aac63ce41d4e147b36
 DIST cfn_lint-1.35.3.tar.gz 3105179 BLAKE2B 
a1bd9ea3dee0f4ee6ddf88a4572e0900ac099274bf75f37e54a56a6c5d102e9f1d91a14518be38b03a37257999ff3c9539c4a8f08a5042a1689e862259266d50
 SHA512 
bdd0188bcd7dd327e6a72c60dcc8535643750c3762632e09bb851c62f520b38518d76e0566686f8fe5766beff147abd5eccd94db34701bef5d149e84954a3a48
 DIST cfn_lint-1.35.4.tar.gz 2981501 BLAKE2B 
51fd51b194e19a0bebd72efadfd81c633f86c3017efaf08b262c83b36228548b53835aae0f17e2617ed7ec8a4cd87886f33d3ad01c935b26dde58273eee37dc4
 SHA512 
67442deda9d3ab8556cb35def0b3b26286d986f17f7fd07080b1752575790bda18ea65ac3ac66be3086cc1762d773fa499f31c26a9d4b75cde2c7c91471fbcd4

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild
deleted file mode 100644
index 4f8982d9a705..
--- a/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # different line wrapping somehow
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-06-07 Thread Michał Górny
commit: 282426505c06b65324984ce6838d36b88a020804
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jun  7 10:21:38 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun  7 10:21:38 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28242650

dev-python/cfn-lint: Stabilize 1.35.3 ALLARCHES, #957372

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.35.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild
index 9da77fa174d3..4f8982d9a705 100644
--- a/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-06-03 Thread Michał Górny
commit: 6ac0471b63e4631789bbf1979b989a9cc3490a3c
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun  3 03:45:22 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun  3 04:59:32 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ac0471b

dev-python/cfn-lint: Bump to 1.35.4

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.35.4.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 64298262f842..e365ac75c052 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.35.1.tar.gz 3077415 BLAKE2B 
8ef32c6a1b7e6d4db976e8b59b1933814647207a0d690ecadb82ac1dd660bc5ed55e66de2ef21e9936d0c97abcdaa1bdaf8e65a996622e949ddf07afa8588240
 SHA512 
90c6acec47e9d4fb7344dab7c3ce8170a0ee09875806fe1ea71da91a9ef9e852044a351227b279e9ae0ba42d8f2f1104c6f1460b0aba00aac63ce41d4e147b36
 DIST cfn_lint-1.35.3.tar.gz 3105179 BLAKE2B 
a1bd9ea3dee0f4ee6ddf88a4572e0900ac099274bf75f37e54a56a6c5d102e9f1d91a14518be38b03a37257999ff3c9539c4a8f08a5042a1689e862259266d50
 SHA512 
bdd0188bcd7dd327e6a72c60dcc8535643750c3762632e09bb851c62f520b38518d76e0566686f8fe5766beff147abd5eccd94db34701bef5d149e84954a3a48
+DIST cfn_lint-1.35.4.tar.gz 2981501 BLAKE2B 
51fd51b194e19a0bebd72efadfd81c633f86c3017efaf08b262c83b36228548b53835aae0f17e2617ed7ec8a4cd87886f33d3ad01c935b26dde58273eee37dc4
 SHA512 
67442deda9d3ab8556cb35def0b3b26286d986f17f7fd07080b1752575790bda18ea65ac3ac66be3086cc1762d773fa499f31c26a9d4b75cde2c7c91471fbcd4

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild
new file mode 100644
index ..9da77fa174d3
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.35.4.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-05-24 Thread Michał Górny
commit: fde310361907bd75e642c14d5ddd5004b36469f3
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 24 16:23:39 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 24 16:23:39 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fde31036

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 -
 dev-python/cfn-lint/cfn-lint-1.34.2.ebuild | 61 --
 2 files changed, 62 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 4bf97d8de05f..64298262f842 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,2 @@
-DIST cfn_lint-1.34.2.tar.gz 3180262 BLAKE2B 
0e92964da1d661e5a37f9f4c65c46b7eabdf9a23df1cbeeba96e072347b9be32b8067e72179e51ff83fbf8fa5cf810a409fe1819f3c124189a83e0bd9d147e0a
 SHA512 
46d738319c3e0227fa0996e102e753929bf2bd6916136fe1879d757e64cc83554eca9fd1934dba89602301e42854af9f229bf4d41a118e2dea895553cf556b6e
 DIST cfn_lint-1.35.1.tar.gz 3077415 BLAKE2B 
8ef32c6a1b7e6d4db976e8b59b1933814647207a0d690ecadb82ac1dd660bc5ed55e66de2ef21e9936d0c97abcdaa1bdaf8e65a996622e949ddf07afa8588240
 SHA512 
90c6acec47e9d4fb7344dab7c3ce8170a0ee09875806fe1ea71da91a9ef9e852044a351227b279e9ae0ba42d8f2f1104c6f1460b0aba00aac63ce41d4e147b36
 DIST cfn_lint-1.35.3.tar.gz 3105179 BLAKE2B 
a1bd9ea3dee0f4ee6ddf88a4572e0900ac099274bf75f37e54a56a6c5d102e9f1d91a14518be38b03a37257999ff3c9539c4a8f08a5042a1689e862259266d50
 SHA512 
bdd0188bcd7dd327e6a72c60dcc8535643750c3762632e09bb851c62f520b38518d76e0566686f8fe5766beff147abd5eccd94db34701bef5d149e84954a3a48

diff --git a/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild
deleted file mode 100644
index 17354fd1c836..
--- a/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # different line wrapping somehow
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-05-24 Thread Sam James
commit: 92964696c73119b594cb7b449657b498a845706f
Author: Sam James  gentoo  org>
AuthorDate: Sat May 24 16:10:17 2025 +
Commit: Sam James  gentoo  org>
CommitDate: Sat May 24 16:10:17 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92964696

dev-python/cfn-lint: Stabilize 1.35.1 ALLARCHES, #956550

Signed-off-by: Sam James  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.35.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild
index 9da77fa174d3..4f8982d9a705 100644
--- a/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-05-21 Thread Michał Górny
commit: a72ccd4ad70efb3a4901c9caa07d889953c9f681
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May 22 03:22:32 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May 22 04:17:59 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a72ccd4a

dev-python/cfn-lint: Bump to 1.35.3

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.35.3.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 38c18761186b..4bf97d8de05f 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.34.2.tar.gz 3180262 BLAKE2B 
0e92964da1d661e5a37f9f4c65c46b7eabdf9a23df1cbeeba96e072347b9be32b8067e72179e51ff83fbf8fa5cf810a409fe1819f3c124189a83e0bd9d147e0a
 SHA512 
46d738319c3e0227fa0996e102e753929bf2bd6916136fe1879d757e64cc83554eca9fd1934dba89602301e42854af9f229bf4d41a118e2dea895553cf556b6e
 DIST cfn_lint-1.35.1.tar.gz 3077415 BLAKE2B 
8ef32c6a1b7e6d4db976e8b59b1933814647207a0d690ecadb82ac1dd660bc5ed55e66de2ef21e9936d0c97abcdaa1bdaf8e65a996622e949ddf07afa8588240
 SHA512 
90c6acec47e9d4fb7344dab7c3ce8170a0ee09875806fe1ea71da91a9ef9e852044a351227b279e9ae0ba42d8f2f1104c6f1460b0aba00aac63ce41d4e147b36
+DIST cfn_lint-1.35.3.tar.gz 3105179 BLAKE2B 
a1bd9ea3dee0f4ee6ddf88a4572e0900ac099274bf75f37e54a56a6c5d102e9f1d91a14518be38b03a37257999ff3c9539c4a8f08a5042a1689e862259266d50
 SHA512 
bdd0188bcd7dd327e6a72c60dcc8535643750c3762632e09bb851c62f520b38518d76e0566686f8fe5766beff147abd5eccd94db34701bef5d149e84954a3a48

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild
new file mode 100644
index ..9da77fa174d3
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.35.3.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-05-10 Thread Michał Górny
commit: 946cc9448a4af21e5862ce7a229d3f64a07dfdde
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 10 12:15:05 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 10 12:57:13 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946cc944

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  2 -
 dev-python/cfn-lint/cfn-lint-1.33.2.ebuild | 61 --
 dev-python/cfn-lint/cfn-lint-1.35.0.ebuild | 61 --
 3 files changed, 124 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 134133d0064b..38c18761186b 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,4 +1,2 @@
-DIST cfn_lint-1.33.2.tar.gz 3163304 BLAKE2B 
f61d6a55e1fe2edd3229d6e9281b6267b3231afea43376d0ef2046ed941ef1c910c56e1af05b9eec08c8f0bec87fcddc95757a2433e1c46b2c8863280bebae2a
 SHA512 
d935009da692e5003461d9c9f806733d17de426e0598a33a53470d3ee6c8a194c735b542bd346e9b33d462a71a6043f6ae1f8e9ff55cff3b6b942d2f1f49913c
 DIST cfn_lint-1.34.2.tar.gz 3180262 BLAKE2B 
0e92964da1d661e5a37f9f4c65c46b7eabdf9a23df1cbeeba96e072347b9be32b8067e72179e51ff83fbf8fa5cf810a409fe1819f3c124189a83e0bd9d147e0a
 SHA512 
46d738319c3e0227fa0996e102e753929bf2bd6916136fe1879d757e64cc83554eca9fd1934dba89602301e42854af9f229bf4d41a118e2dea895553cf556b6e
-DIST cfn_lint-1.35.0.tar.gz 3070040 BLAKE2B 
f0f868188e8b9088ce3e15d6b83dfc75ff4fd69b6095e8f1d3f27eec0da6518df5231336416bfc14e50b290def2ed10c9d6e4b022686686f580fec1e4a88db6d
 SHA512 
8f44c6f1639ddeed41f4b978b1b5f8503de6a3e2d96b85a82f86f23ea2a258dfa7cfb37019a5bc9ed0620ccba6d8993f12e33c06d81eb32f1201309dd2a23580
 DIST cfn_lint-1.35.1.tar.gz 3077415 BLAKE2B 
8ef32c6a1b7e6d4db976e8b59b1933814647207a0d690ecadb82ac1dd660bc5ed55e66de2ef21e9936d0c97abcdaa1bdaf8e65a996622e949ddf07afa8588240
 SHA512 
90c6acec47e9d4fb7344dab7c3ce8170a0ee09875806fe1ea71da91a9ef9e852044a351227b279e9ae0ba42d8f2f1104c6f1460b0aba00aac63ce41d4e147b36

diff --git a/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild
deleted file mode 100644
index e52a9af8f993..
--- a/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.96.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # different line wrapping somehow
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.0.ebuild
deleted file mode 100644
index 9da77fa174d3..
--- a/dev-python/cfn-lint/cfn-lint-1.35.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-05-10 Thread Arthur Zamarin
commit: b1f8a023b59f556cf234ad9ebbe5f90c03692b1b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat May 10 12:14:26 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat May 10 12:14:26 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1f8a023

dev-python/cfn-lint: Stabilize 1.34.2 ALLARCHES, #955748

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.34.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild
index ae676d2b2a74..17354fd1c836 100644
--- a/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-05-08 Thread Michał Górny
commit: ddd5e980e865af1e002e1fbdf993a44fb100b6d7
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May  9 01:03:16 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May  9 01:03:16 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd5e980

dev-python/cfn-lint: Bump to 1.35.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.35.1.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 50ecb10632f0..134133d0064b 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.33.2.tar.gz 3163304 BLAKE2B 
f61d6a55e1fe2edd3229d6e9281b6267b3231afea43376d0ef2046ed941ef1c910c56e1af05b9eec08c8f0bec87fcddc95757a2433e1c46b2c8863280bebae2a
 SHA512 
d935009da692e5003461d9c9f806733d17de426e0598a33a53470d3ee6c8a194c735b542bd346e9b33d462a71a6043f6ae1f8e9ff55cff3b6b942d2f1f49913c
 DIST cfn_lint-1.34.2.tar.gz 3180262 BLAKE2B 
0e92964da1d661e5a37f9f4c65c46b7eabdf9a23df1cbeeba96e072347b9be32b8067e72179e51ff83fbf8fa5cf810a409fe1819f3c124189a83e0bd9d147e0a
 SHA512 
46d738319c3e0227fa0996e102e753929bf2bd6916136fe1879d757e64cc83554eca9fd1934dba89602301e42854af9f229bf4d41a118e2dea895553cf556b6e
 DIST cfn_lint-1.35.0.tar.gz 3070040 BLAKE2B 
f0f868188e8b9088ce3e15d6b83dfc75ff4fd69b6095e8f1d3f27eec0da6518df5231336416bfc14e50b290def2ed10c9d6e4b022686686f580fec1e4a88db6d
 SHA512 
8f44c6f1639ddeed41f4b978b1b5f8503de6a3e2d96b85a82f86f23ea2a258dfa7cfb37019a5bc9ed0620ccba6d8993f12e33c06d81eb32f1201309dd2a23580
+DIST cfn_lint-1.35.1.tar.gz 3077415 BLAKE2B 
8ef32c6a1b7e6d4db976e8b59b1933814647207a0d690ecadb82ac1dd660bc5ed55e66de2ef21e9936d0c97abcdaa1bdaf8e65a996622e949ddf07afa8588240
 SHA512 
90c6acec47e9d4fb7344dab7c3ce8170a0ee09875806fe1ea71da91a9ef9e852044a351227b279e9ae0ba42d8f2f1104c6f1460b0aba00aac63ce41d4e147b36

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild
new file mode 100644
index ..9da77fa174d3
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.35.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-05-07 Thread Michał Górny
commit: 7dff95e0a1194fc753890633db5cb8af8fcc5b1f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May  8 03:50:09 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May  8 05:09:24 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dff95e0

dev-python/cfn-lint: Bump to 1.35.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.35.0.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 22334836a5b7..50ecb10632f0 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.33.2.tar.gz 3163304 BLAKE2B 
f61d6a55e1fe2edd3229d6e9281b6267b3231afea43376d0ef2046ed941ef1c910c56e1af05b9eec08c8f0bec87fcddc95757a2433e1c46b2c8863280bebae2a
 SHA512 
d935009da692e5003461d9c9f806733d17de426e0598a33a53470d3ee6c8a194c735b542bd346e9b33d462a71a6043f6ae1f8e9ff55cff3b6b942d2f1f49913c
 DIST cfn_lint-1.34.2.tar.gz 3180262 BLAKE2B 
0e92964da1d661e5a37f9f4c65c46b7eabdf9a23df1cbeeba96e072347b9be32b8067e72179e51ff83fbf8fa5cf810a409fe1819f3c124189a83e0bd9d147e0a
 SHA512 
46d738319c3e0227fa0996e102e753929bf2bd6916136fe1879d757e64cc83554eca9fd1934dba89602301e42854af9f229bf4d41a118e2dea895553cf556b6e
+DIST cfn_lint-1.35.0.tar.gz 3070040 BLAKE2B 
f0f868188e8b9088ce3e15d6b83dfc75ff4fd69b6095e8f1d3f27eec0da6518df5231336416bfc14e50b290def2ed10c9d6e4b022686686f580fec1e4a88db6d
 SHA512 
8f44c6f1639ddeed41f4b978b1b5f8503de6a3e2d96b85a82f86f23ea2a258dfa7cfb37019a5bc9ed0620ccba6d8993f12e33c06d81eb32f1201309dd2a23580

diff --git a/dev-python/cfn-lint/cfn-lint-1.35.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.35.0.ebuild
new file mode 100644
index ..9da77fa174d3
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.35.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-26 Thread Michał Górny
commit: 4564517f6b6a710483c7647c8d787b4a32495e44
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 26 10:14:44 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 26 10:14:44 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4564517f

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.32.4.ebuild | 61 --
 dev-python/cfn-lint/cfn-lint-1.34.0.ebuild | 61 --
 dev-python/cfn-lint/cfn-lint-1.34.1.ebuild | 61 --
 4 files changed, 186 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 20e8a76947b3..22334836a5b7 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,5 +1,2 @@
-DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b300192e4a68086ab4a8350ed0b854b750feae0ad55953c1f3a8ccf32990b58078668b76bfbd41ee59bc736bede87f524
 SHA512 
81545db95bca2f31a41f327e4303e4ec5d398b7b1b25030bb0a8f550ff79591d0e350173234c2a54ae4317180442943bd0c0e4d8327e3163c1f5ff9b92dc5fac
 DIST cfn_lint-1.33.2.tar.gz 3163304 BLAKE2B 
f61d6a55e1fe2edd3229d6e9281b6267b3231afea43376d0ef2046ed941ef1c910c56e1af05b9eec08c8f0bec87fcddc95757a2433e1c46b2c8863280bebae2a
 SHA512 
d935009da692e5003461d9c9f806733d17de426e0598a33a53470d3ee6c8a194c735b542bd346e9b33d462a71a6043f6ae1f8e9ff55cff3b6b942d2f1f49913c
-DIST cfn_lint-1.34.0.tar.gz 3150863 BLAKE2B 
83c43e72113cfabc9f3548077fd899dd9f6fd484b9d19d7b10a4a3b1176686715330153d6aaa0d07d681b879f2ce465cfd4da27fdb5104e4f5169ec62b8e6be2
 SHA512 
89225300054046cbff821d109bddc889b558d3e29d6c6fca619b18083072ebb4ea4e6c0e473b50273b949eab37ae9bf74d08c49610cd0ce39ad40fcbe106f049
-DIST cfn_lint-1.34.1.tar.gz 3192324 BLAKE2B 
ce9d082f9d20f2bd54a178ead36d82d9c84f8802db453256399059acd6aa1ed86b11cd02a45c4da401d586db514434ef57978be961e4f533d672c015865cbab3
 SHA512 
2cb598419f8a8f083c11899eeb20be759f198411d932aba20b717c6c0bbd42be28196387c02b633bb1625b9d6c1a6aff4177709f261aaf161b7281646d83b78e
 DIST cfn_lint-1.34.2.tar.gz 3180262 BLAKE2B 
0e92964da1d661e5a37f9f4c65c46b7eabdf9a23df1cbeeba96e072347b9be32b8067e72179e51ff83fbf8fa5cf810a409fe1819f3c124189a83e0bd9d147e0a
 SHA512 
46d738319c3e0227fa0996e102e753929bf2bd6916136fe1879d757e64cc83554eca9fd1934dba89602301e42854af9f229bf4d41a118e2dea895553cf556b6e

diff --git a/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild
deleted file mode 100644
index 6487301ed38f..
--- a/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # different line wrapping somehow
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}

diff --git a/dev-python/cfn-lint/cfn-lint-1.34.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.34.0.ebuild
deleted file mode 100644
index ae676d2b2a74..
--- a/dev-python/cfn-lint/cfn-lint-1.34.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformat

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-26 Thread Arthur Zamarin
commit: 421e47c0a60fa83b565c0641cb4a6e28e7e53235
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr 26 10:06:54 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr 26 10:06:54 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=421e47c0

dev-python/cfn-lint: Stabilize 1.33.2 ALLARCHES, #954707

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.33.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild
index 300c0765c07f..e52a9af8f993 100644
--- a/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.96.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-24 Thread Michał Górny
commit: 408005f365322f49d300535272234cf305121c1a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Apr 25 03:58:12 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Apr 25 03:58:12 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=408005f3

dev-python/cfn-lint: Bump to 1.34.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.34.2.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 97fd2765e59d..20e8a76947b3 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b3001
 DIST cfn_lint-1.33.2.tar.gz 3163304 BLAKE2B 
f61d6a55e1fe2edd3229d6e9281b6267b3231afea43376d0ef2046ed941ef1c910c56e1af05b9eec08c8f0bec87fcddc95757a2433e1c46b2c8863280bebae2a
 SHA512 
d935009da692e5003461d9c9f806733d17de426e0598a33a53470d3ee6c8a194c735b542bd346e9b33d462a71a6043f6ae1f8e9ff55cff3b6b942d2f1f49913c
 DIST cfn_lint-1.34.0.tar.gz 3150863 BLAKE2B 
83c43e72113cfabc9f3548077fd899dd9f6fd484b9d19d7b10a4a3b1176686715330153d6aaa0d07d681b879f2ce465cfd4da27fdb5104e4f5169ec62b8e6be2
 SHA512 
89225300054046cbff821d109bddc889b558d3e29d6c6fca619b18083072ebb4ea4e6c0e473b50273b949eab37ae9bf74d08c49610cd0ce39ad40fcbe106f049
 DIST cfn_lint-1.34.1.tar.gz 3192324 BLAKE2B 
ce9d082f9d20f2bd54a178ead36d82d9c84f8802db453256399059acd6aa1ed86b11cd02a45c4da401d586db514434ef57978be961e4f533d672c015865cbab3
 SHA512 
2cb598419f8a8f083c11899eeb20be759f198411d932aba20b717c6c0bbd42be28196387c02b633bb1625b9d6c1a6aff4177709f261aaf161b7281646d83b78e
+DIST cfn_lint-1.34.2.tar.gz 3180262 BLAKE2B 
0e92964da1d661e5a37f9f4c65c46b7eabdf9a23df1cbeeba96e072347b9be32b8067e72179e51ff83fbf8fa5cf810a409fe1819f3c124189a83e0bd9d147e0a
 SHA512 
46d738319c3e0227fa0996e102e753929bf2bd6916136fe1879d757e64cc83554eca9fd1934dba89602301e42854af9f229bf4d41a118e2dea895553cf556b6e

diff --git a/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild
new file mode 100644
index ..ae676d2b2a74
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.34.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-21 Thread Michał Górny
commit: ef822bd63a4425370c63406218e4c9832f8fd6c8
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Apr 22 02:31:05 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Apr 22 02:31:05 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef822bd6

dev-python/cfn-lint: Bump to 1.34.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.34.1.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index ddd860e4f8cf..97fd2765e59d 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b300192e4a68086ab4a8350ed0b854b750feae0ad55953c1f3a8ccf32990b58078668b76bfbd41ee59bc736bede87f524
 SHA512 
81545db95bca2f31a41f327e4303e4ec5d398b7b1b25030bb0a8f550ff79591d0e350173234c2a54ae4317180442943bd0c0e4d8327e3163c1f5ff9b92dc5fac
 DIST cfn_lint-1.33.2.tar.gz 3163304 BLAKE2B 
f61d6a55e1fe2edd3229d6e9281b6267b3231afea43376d0ef2046ed941ef1c910c56e1af05b9eec08c8f0bec87fcddc95757a2433e1c46b2c8863280bebae2a
 SHA512 
d935009da692e5003461d9c9f806733d17de426e0598a33a53470d3ee6c8a194c735b542bd346e9b33d462a71a6043f6ae1f8e9ff55cff3b6b942d2f1f49913c
 DIST cfn_lint-1.34.0.tar.gz 3150863 BLAKE2B 
83c43e72113cfabc9f3548077fd899dd9f6fd484b9d19d7b10a4a3b1176686715330153d6aaa0d07d681b879f2ce465cfd4da27fdb5104e4f5169ec62b8e6be2
 SHA512 
89225300054046cbff821d109bddc889b558d3e29d6c6fca619b18083072ebb4ea4e6c0e473b50273b949eab37ae9bf74d08c49610cd0ce39ad40fcbe106f049
+DIST cfn_lint-1.34.1.tar.gz 3192324 BLAKE2B 
ce9d082f9d20f2bd54a178ead36d82d9c84f8802db453256399059acd6aa1ed86b11cd02a45c4da401d586db514434ef57978be961e4f533d672c015865cbab3
 SHA512 
2cb598419f8a8f083c11899eeb20be759f198411d932aba20b717c6c0bbd42be28196387c02b633bb1625b9d6c1a6aff4177709f261aaf161b7281646d83b78e

diff --git a/dev-python/cfn-lint/cfn-lint-1.34.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.34.1.ebuild
new file mode 100644
index ..ae676d2b2a74
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.34.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-19 Thread Michał Górny
commit: 71c2e518b618befd0718050bece6d3de81efa75d
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Apr 20 04:12:13 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Apr 20 05:22:46 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c2e518

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.31.3.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.33.0.ebuild | 61 --
 dev-python/cfn-lint/cfn-lint-1.33.1.ebuild | 61 --
 4 files changed, 195 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 33f8376638b1..ddd860e4f8cf 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,6 +1,3 @@
-DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
 DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b300192e4a68086ab4a8350ed0b854b750feae0ad55953c1f3a8ccf32990b58078668b76bfbd41ee59bc736bede87f524
 SHA512 
81545db95bca2f31a41f327e4303e4ec5d398b7b1b25030bb0a8f550ff79591d0e350173234c2a54ae4317180442943bd0c0e4d8327e3163c1f5ff9b92dc5fac
-DIST cfn_lint-1.33.0.tar.gz 3162568 BLAKE2B 
e2056dc29c6df1b8da62b1ac715ab7360c152ab7287e972f7b65cb2b936332dc07f42dc752089c6e43086fb73ab4ecf9bb2d5706adc4c03dacc84715edbf3ecf
 SHA512 
bf856045ae3a5ce61bb59f50b0d3f445f3ee8e7afef94cc51db807fe02a55e141b83c37750038eb75cc7a9255b2f35c23c57059a8fd955065db4d0a1d52d8379
-DIST cfn_lint-1.33.1.tar.gz 3162624 BLAKE2B 
24fb34624a6570a04bcb963061784934215194bf87943572218501b1613ae7b68f3e44a604020ba3f610e99e05f2671ef255e915f59d04cacae198a15d320820
 SHA512 
7bf79c9c5ceadddbadcb8cdc5b72289fc97ef67629def53f09eaffa4fba42f3c5adf69aa6b8b9844bf0dd6ae6e112226ef649adbdd0c38b6ca2fbd1c7b267743
 DIST cfn_lint-1.33.2.tar.gz 3163304 BLAKE2B 
f61d6a55e1fe2edd3229d6e9281b6267b3231afea43376d0ef2046ed941ef1c910c56e1af05b9eec08c8f0bec87fcddc95757a2433e1c46b2c8863280bebae2a
 SHA512 
d935009da692e5003461d9c9f806733d17de426e0598a33a53470d3ee6c8a194c735b542bd346e9b33d462a71a6043f6ae1f8e9ff55cff3b6b942d2f1f49913c
 DIST cfn_lint-1.34.0.tar.gz 3150863 BLAKE2B 
83c43e72113cfabc9f3548077fd899dd9f6fd484b9d19d7b10a4a3b1176686715330153d6aaa0d07d681b879f2ce465cfd4da27fdb5104e4f5169ec62b8e6be2
 SHA512 
89225300054046cbff821d109bddc889b558d3e29d6c6fca619b18083072ebb4ea4e6c0e473b50273b949eab37ae9bf74d08c49610cd0ce39ad40fcbe106f049

diff --git a/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild
deleted file mode 100644
index cd30dc7745f0..
--- a/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_o

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-19 Thread Arthur Zamarin
commit: 3137507d45c89e580bd945856ea9d2ea896b0194
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr 19 18:38:56 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr 19 18:38:56 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3137507d

dev-python/cfn-lint: Stabilize 1.32.4 ALLARCHES, #954032

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.32.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild
index 5df09dbf3ef1..6487301ed38f 100644
--- a/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-16 Thread Michał Górny
commit: 1e1d8dbfcbabf92e042617731ce5204a84549cdc
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 17 03:55:42 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 17 04:31:51 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e1d8dbf

dev-python/cfn-lint: Bump to 1.34.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.34.0.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 63f80340532b..33f8376638b1 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -3,3 +3,4 @@ DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b3001
 DIST cfn_lint-1.33.0.tar.gz 3162568 BLAKE2B 
e2056dc29c6df1b8da62b1ac715ab7360c152ab7287e972f7b65cb2b936332dc07f42dc752089c6e43086fb73ab4ecf9bb2d5706adc4c03dacc84715edbf3ecf
 SHA512 
bf856045ae3a5ce61bb59f50b0d3f445f3ee8e7afef94cc51db807fe02a55e141b83c37750038eb75cc7a9255b2f35c23c57059a8fd955065db4d0a1d52d8379
 DIST cfn_lint-1.33.1.tar.gz 3162624 BLAKE2B 
24fb34624a6570a04bcb963061784934215194bf87943572218501b1613ae7b68f3e44a604020ba3f610e99e05f2671ef255e915f59d04cacae198a15d320820
 SHA512 
7bf79c9c5ceadddbadcb8cdc5b72289fc97ef67629def53f09eaffa4fba42f3c5adf69aa6b8b9844bf0dd6ae6e112226ef649adbdd0c38b6ca2fbd1c7b267743
 DIST cfn_lint-1.33.2.tar.gz 3163304 BLAKE2B 
f61d6a55e1fe2edd3229d6e9281b6267b3231afea43376d0ef2046ed941ef1c910c56e1af05b9eec08c8f0bec87fcddc95757a2433e1c46b2c8863280bebae2a
 SHA512 
d935009da692e5003461d9c9f806733d17de426e0598a33a53470d3ee6c8a194c735b542bd346e9b33d462a71a6043f6ae1f8e9ff55cff3b6b942d2f1f49913c
+DIST cfn_lint-1.34.0.tar.gz 3150863 BLAKE2B 
83c43e72113cfabc9f3548077fd899dd9f6fd484b9d19d7b10a4a3b1176686715330153d6aaa0d07d681b879f2ce465cfd4da27fdb5104e4f5169ec62b8e6be2
 SHA512 
89225300054046cbff821d109bddc889b558d3e29d6c6fca619b18083072ebb4ea4e6c0e473b50273b949eab37ae9bf74d08c49610cd0ce39ad40fcbe106f049

diff --git a/dev-python/cfn-lint/cfn-lint-1.34.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.34.0.ebuild
new file mode 100644
index ..ae676d2b2a74
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.34.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.97.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-11 Thread Michał Górny
commit: b90ad4f3c6ca0742d6a7cda1480147ae46a389d8
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 12 04:11:05 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 12 04:11:05 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b90ad4f3

dev-python/cfn-lint: Bump to 1.33.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.33.2.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 57ad394a3032..63f80340532b 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99
 DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b300192e4a68086ab4a8350ed0b854b750feae0ad55953c1f3a8ccf32990b58078668b76bfbd41ee59bc736bede87f524
 SHA512 
81545db95bca2f31a41f327e4303e4ec5d398b7b1b25030bb0a8f550ff79591d0e350173234c2a54ae4317180442943bd0c0e4d8327e3163c1f5ff9b92dc5fac
 DIST cfn_lint-1.33.0.tar.gz 3162568 BLAKE2B 
e2056dc29c6df1b8da62b1ac715ab7360c152ab7287e972f7b65cb2b936332dc07f42dc752089c6e43086fb73ab4ecf9bb2d5706adc4c03dacc84715edbf3ecf
 SHA512 
bf856045ae3a5ce61bb59f50b0d3f445f3ee8e7afef94cc51db807fe02a55e141b83c37750038eb75cc7a9255b2f35c23c57059a8fd955065db4d0a1d52d8379
 DIST cfn_lint-1.33.1.tar.gz 3162624 BLAKE2B 
24fb34624a6570a04bcb963061784934215194bf87943572218501b1613ae7b68f3e44a604020ba3f610e99e05f2671ef255e915f59d04cacae198a15d320820
 SHA512 
7bf79c9c5ceadddbadcb8cdc5b72289fc97ef67629def53f09eaffa4fba42f3c5adf69aa6b8b9844bf0dd6ae6e112226ef649adbdd0c38b6ca2fbd1c7b267743
+DIST cfn_lint-1.33.2.tar.gz 3163304 BLAKE2B 
f61d6a55e1fe2edd3229d6e9281b6267b3231afea43376d0ef2046ed941ef1c910c56e1af05b9eec08c8f0bec87fcddc95757a2433e1c46b2c8863280bebae2a
 SHA512 
d935009da692e5003461d9c9f806733d17de426e0598a33a53470d3ee6c8a194c735b542bd346e9b33d462a71a6043f6ae1f8e9ff55cff3b6b942d2f1f49913c

diff --git a/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild
new file mode 100644
index ..300c0765c07f
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.33.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.96.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-10 Thread Michał Górny
commit: 6e65b8f6f719f9e9487446e11bd91971669b0f9f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Apr  9 04:59:18 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Apr  9 07:40:07 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e65b8f6

dev-python/cfn-lint: Bump to 1.33.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.33.0.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index f7b4c62d35d4..4f9b537f59db 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
 DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b300192e4a68086ab4a8350ed0b854b750feae0ad55953c1f3a8ccf32990b58078668b76bfbd41ee59bc736bede87f524
 SHA512 
81545db95bca2f31a41f327e4303e4ec5d398b7b1b25030bb0a8f550ff79591d0e350173234c2a54ae4317180442943bd0c0e4d8327e3163c1f5ff9b92dc5fac
+DIST cfn_lint-1.33.0.tar.gz 3162568 BLAKE2B 
e2056dc29c6df1b8da62b1ac715ab7360c152ab7287e972f7b65cb2b936332dc07f42dc752089c6e43086fb73ab4ecf9bb2d5706adc4c03dacc84715edbf3ecf
 SHA512 
bf856045ae3a5ce61bb59f50b0d3f445f3ee8e7afef94cc51db807fe02a55e141b83c37750038eb75cc7a9255b2f35c23c57059a8fd955065db4d0a1d52d8379

diff --git a/dev-python/cfn-lint/cfn-lint-1.33.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.33.0.ebuild
new file mode 100644
index ..300c0765c07f
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.33.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.96.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-09 Thread Michał Górny
commit: 5e87f7efd2bfdeaca6fdbe34502ff2b12c5a3f18
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr 10 02:28:02 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr 10 03:01:17 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e87f7ef

dev-python/cfn-lint: Bump to 1.33.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.33.1.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 4f9b537f59db..57ad394a3032 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
 DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b300192e4a68086ab4a8350ed0b854b750feae0ad55953c1f3a8ccf32990b58078668b76bfbd41ee59bc736bede87f524
 SHA512 
81545db95bca2f31a41f327e4303e4ec5d398b7b1b25030bb0a8f550ff79591d0e350173234c2a54ae4317180442943bd0c0e4d8327e3163c1f5ff9b92dc5fac
 DIST cfn_lint-1.33.0.tar.gz 3162568 BLAKE2B 
e2056dc29c6df1b8da62b1ac715ab7360c152ab7287e972f7b65cb2b936332dc07f42dc752089c6e43086fb73ab4ecf9bb2d5706adc4c03dacc84715edbf3ecf
 SHA512 
bf856045ae3a5ce61bb59f50b0d3f445f3ee8e7afef94cc51db807fe02a55e141b83c37750038eb75cc7a9255b2f35c23c57059a8fd955065db4d0a1d52d8379
+DIST cfn_lint-1.33.1.tar.gz 3162624 BLAKE2B 
24fb34624a6570a04bcb963061784934215194bf87943572218501b1613ae7b68f3e44a604020ba3f610e99e05f2671ef255e915f59d04cacae198a15d320820
 SHA512 
7bf79c9c5ceadddbadcb8cdc5b72289fc97ef67629def53f09eaffa4fba42f3c5adf69aa6b8b9844bf0dd6ae6e112226ef649adbdd0c38b6ca2fbd1c7b267743

diff --git a/dev-python/cfn-lint/cfn-lint-1.33.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.33.1.ebuild
new file mode 100644
index ..300c0765c07f
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.33.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.96.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-05 Thread Michał Górny
commit: 307b7a3b82eeded5d862de2e735bd64edb681195
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr  5 13:29:41 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr  5 13:29:41 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=307b7a3b

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.30.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.32.1.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.32.3.ebuild | 70 --
 4 files changed, 213 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index a289ae4061fb..f7b4c62d35d4 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,5 +1,2 @@
-DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee421a554354dc3e754ed509108d0f5ef031e4e256de51476bb4904bba34089ac263203bd688d3c27fff050655b5a35a
 SHA512 
0a8819b5ca691a308622a1a394d19c633c06253f3b8a480a95c12dfcebb94220f0464f11e51ee9719f2d00d097520226d9c2ab6b8944ff0b00e117de21d458d9
 DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
-DIST cfn_lint-1.32.1.tar.gz 2896622 BLAKE2B 
2c00467a4f1997fe72f500a339314b5c698a392968978881a11d0982084a6f2ea07ef2ca114a88ca22c99c9ff1748f8a2ba971a1e558df8aa53e2ec6c230c597
 SHA512 
f81ca1bf437db146d8d533da0f445c46c3bd08dc37b5a7e3d653e0395ae73ecb749b65f944a515331477f5395c856d7e7df9b2e4e41ff22446af142c89039aa3
-DIST cfn_lint-1.32.3.tar.gz 3074127 BLAKE2B 
e9b951d2d1193d9fab2e51238ea3ef638ecb9c67f8929deea0b649ffcf064bb0b52bd91da0f0ab8d3a4f2cbc20da2b4913d75068be506d0e08501e717a15c189
 SHA512 
89a68232a7c5753778f5de559d1dcbaa6677d7f33ee0bbf2feeea65e5d39c606111d3ba8fd79b5245c48ecf57af313b792ebc58546d0ed5eaf58eece055f0a14
 DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b300192e4a68086ab4a8350ed0b854b750feae0ad55953c1f3a8ccf32990b58078668b76bfbd41ee59bc736bede87f524
 SHA512 
81545db95bca2f31a41f327e4303e4ec5d398b7b1b25030bb0a8f550ff79591d0e350173234c2a54ae4317180442943bd0c0e4d8327e3163c1f5ff9b92dc5fac

diff --git a/dev-python/cfn-lint/cfn-lint-1.30.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.30.0.ebuild
deleted file mode 100644
index 7eae4ea2a82b..
--- a/dev-python/cfn-lint/cfn-lint-1.30.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
-   # different graphviz version?
-   
test/unit/module/template/test_templ

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-05 Thread Sam James
commit: 87e0b87a99b2eac679deaa7657c3d498822b4e1c
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr  5 11:57:10 2025 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr  5 11:57:10 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87e0b87a

dev-python/cfn-lint: Stabilize 1.31.3 ALLARCHES, #953210

Signed-off-by: Sam James  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.31.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild
index 3d3124e8705a..cd30dc7745f0 100644
--- a/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-04 Thread Michał Górny
commit: 9cac726bc218756bed512ebe33c2ff41d741072b
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr  5 05:59:27 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr  5 06:37:43 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cac726b

dev-python/cfn-lint: Bump to 1.32.4

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.32.4.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 5cbc051b1d24..a289ae4061fb 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee42
 DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
 DIST cfn_lint-1.32.1.tar.gz 2896622 BLAKE2B 
2c00467a4f1997fe72f500a339314b5c698a392968978881a11d0982084a6f2ea07ef2ca114a88ca22c99c9ff1748f8a2ba971a1e558df8aa53e2ec6c230c597
 SHA512 
f81ca1bf437db146d8d533da0f445c46c3bd08dc37b5a7e3d653e0395ae73ecb749b65f944a515331477f5395c856d7e7df9b2e4e41ff22446af142c89039aa3
 DIST cfn_lint-1.32.3.tar.gz 3074127 BLAKE2B 
e9b951d2d1193d9fab2e51238ea3ef638ecb9c67f8929deea0b649ffcf064bb0b52bd91da0f0ab8d3a4f2cbc20da2b4913d75068be506d0e08501e717a15c189
 SHA512 
89a68232a7c5753778f5de559d1dcbaa6677d7f33ee0bbf2feeea65e5d39c606111d3ba8fd79b5245c48ecf57af313b792ebc58546d0ed5eaf58eece055f0a14
+DIST cfn_lint-1.32.4.tar.gz 3090585 BLAKE2B 
348c0a4326bcd8a7c0c0230d6090774b300192e4a68086ab4a8350ed0b854b750feae0ad55953c1f3a8ccf32990b58078668b76bfbd41ee59bc736bede87f524
 SHA512 
81545db95bca2f31a41f327e4303e4ec5d398b7b1b25030bb0a8f550ff79591d0e350173234c2a54ae4317180442943bd0c0e4d8327e3163c1f5ff9b92dc5fac

diff --git a/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild
new file mode 100644
index ..5df09dbf3ef1
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.32.4.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >=dev-python/setuptools-77.0.3[${PYTHON_USEDEP}]
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # different line wrapping somehow
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-04-03 Thread Michał Górny
commit: 53881e8aa084d3513a63b525637c59abe1b1bf27
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr  3 06:06:28 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr  3 07:59:31 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53881e8a

dev-python/cfn-lint: Bump to 1.32.3

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.32.3.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 890813bc..5cbc051b1d24 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee421a554354dc3e754ed509108d0f5ef031e4e256de51476bb4904bba34089ac263203bd688d3c27fff050655b5a35a
 SHA512 
0a8819b5ca691a308622a1a394d19c633c06253f3b8a480a95c12dfcebb94220f0464f11e51ee9719f2d00d097520226d9c2ab6b8944ff0b00e117de21d458d9
 DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
 DIST cfn_lint-1.32.1.tar.gz 2896622 BLAKE2B 
2c00467a4f1997fe72f500a339314b5c698a392968978881a11d0982084a6f2ea07ef2ca114a88ca22c99c9ff1748f8a2ba971a1e558df8aa53e2ec6c230c597
 SHA512 
f81ca1bf437db146d8d533da0f445c46c3bd08dc37b5a7e3d653e0395ae73ecb749b65f944a515331477f5395c856d7e7df9b2e4e41ff22446af142c89039aa3
+DIST cfn_lint-1.32.3.tar.gz 3074127 BLAKE2B 
e9b951d2d1193d9fab2e51238ea3ef638ecb9c67f8929deea0b649ffcf064bb0b52bd91da0f0ab8d3a4f2cbc20da2b4913d75068be506d0e08501e717a15c189
 SHA512 
89a68232a7c5753778f5de559d1dcbaa6677d7f33ee0bbf2feeea65e5d39c606111d3ba8fd79b5245c48ecf57af313b792ebc58546d0ed5eaf58eece055f0a14

diff --git a/dev-python/cfn-lint/cfn-lint-1.32.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.32.3.ebuild
new file mode 100644
index ..3d3124e8705a
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.32.3.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-29 Thread Michał Górny
commit: 41b427c5427e98a6fa5814cc11e46957a1deb21a
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 29 10:16:04 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 29 10:23:28 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41b427c5

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.28.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.29.1.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.32.0.ebuild | 70 --
 4 files changed, 213 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index c4c9fc963cce..890813bc 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,6 +1,3 @@
-DIST cfn_lint-1.28.0.tar.gz 3162534 BLAKE2B 
120831c39c09419744c048d8c5d4ba8978ae50fe873841e3ab4bea82a83965bd5d7b9c2ccf1895e7fc981d4acc982827cd4a8af352ccdc6ecdab8dbf62396783
 SHA512 
69325f028beb6ddb05db144f2409575bdf4cc17efe9ee5c4a221aa82e09cafd6e97521398fbd52e5b797e67aedc3581d6455523490e23cd88d01e7af62436dd7
-DIST cfn_lint-1.29.1.tar.gz 2829516 BLAKE2B 
a624ed18ffe214dafccf807cd71de3ca5285224d090ba1becbca76e541261061843153142487f48000530b8ab5818b434f8ffb8e131d8ad8d345d3590e5f9767
 SHA512 
bbf4cac928bd419b75b93e9d049d14bc36dd46a599fd497296aa47c8818462b74897716009689b7512454172257499142b18dc4af65e9f0bf011a2af45116ade
 DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee421a554354dc3e754ed509108d0f5ef031e4e256de51476bb4904bba34089ac263203bd688d3c27fff050655b5a35a
 SHA512 
0a8819b5ca691a308622a1a394d19c633c06253f3b8a480a95c12dfcebb94220f0464f11e51ee9719f2d00d097520226d9c2ab6b8944ff0b00e117de21d458d9
 DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
-DIST cfn_lint-1.32.0.tar.gz 2893829 BLAKE2B 
0a52741f0148965ba421865790608d19db03b54512a780758f823a448cd8b7f096b3188232a47227446764fc3c42df4f907c7b3addae07f86c879d5878a76674
 SHA512 
c687b76cb5a0bfa03b42630e736e3e92748582a56983c5d8e5163656d8ee84474cb5b29482c0a7d76e95a75546ac4ca4520e98f52a5a5528c1b0b2b6ee62ae5b
 DIST cfn_lint-1.32.1.tar.gz 2896622 BLAKE2B 
2c00467a4f1997fe72f500a339314b5c698a392968978881a11d0982084a6f2ea07ef2ca114a88ca22c99c9ff1748f8a2ba971a1e558df8aa53e2ec6c230c597
 SHA512 
f81ca1bf437db146d8d533da0f445c46c3bd08dc37b5a7e3d653e0395ae73ecb749b65f944a515331477f5395c856d7e7df9b2e4e41ff22446af142c89039aa3

diff --git a/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild
deleted file mode 100644
index 7eae4ea2a82b..
--- a/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-26 Thread Sam James
commit: 69c26115f55041ba4fb5cbe5400b3239fafdd155
Author: Sam James  gentoo  org>
AuthorDate: Wed Mar 19 19:08:49 2025 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Mar 19 19:08:49 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69c26115

dev-python/cfn-lint: Stabilize 1.27.0 ALLARCHES, #950421

Signed-off-by: Sam James  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.27.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild
index 11b35b918d51..7eae4ea2a82b 100644
--- a/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-25 Thread Michał Górny
commit: 883e29fe4e010cbaf5f08fe6776ccd967368835e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 26 05:36:34 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 26 06:34:57 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=883e29fe

dev-python/cfn-lint: Bump to 1.32.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.32.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index feaf17b011ad..c4c9fc963cce 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -3,3 +3,4 @@ DIST cfn_lint-1.29.1.tar.gz 2829516 BLAKE2B 
a624ed18ffe214dafccf807cd71de3ca5285
 DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee421a554354dc3e754ed509108d0f5ef031e4e256de51476bb4904bba34089ac263203bd688d3c27fff050655b5a35a
 SHA512 
0a8819b5ca691a308622a1a394d19c633c06253f3b8a480a95c12dfcebb94220f0464f11e51ee9719f2d00d097520226d9c2ab6b8944ff0b00e117de21d458d9
 DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
 DIST cfn_lint-1.32.0.tar.gz 2893829 BLAKE2B 
0a52741f0148965ba421865790608d19db03b54512a780758f823a448cd8b7f096b3188232a47227446764fc3c42df4f907c7b3addae07f86c879d5878a76674
 SHA512 
c687b76cb5a0bfa03b42630e736e3e92748582a56983c5d8e5163656d8ee84474cb5b29482c0a7d76e95a75546ac4ca4520e98f52a5a5528c1b0b2b6ee62ae5b
+DIST cfn_lint-1.32.1.tar.gz 2896622 BLAKE2B 
2c00467a4f1997fe72f500a339314b5c698a392968978881a11d0982084a6f2ea07ef2ca114a88ca22c99c9ff1748f8a2ba971a1e558df8aa53e2ec6c230c597
 SHA512 
f81ca1bf437db146d8d533da0f445c46c3bd08dc37b5a7e3d653e0395ae73ecb749b65f944a515331477f5395c856d7e7df9b2e4e41ff22446af142c89039aa3

diff --git a/dev-python/cfn-lint/cfn-lint-1.32.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.32.1.ebuild
new file mode 100644
index ..3d3124e8705a
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.32.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-22 Thread Michał Górny
commit: 4a65afcb0b434e7d5f08477153aad790ecbb7bcc
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 22 11:29:57 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 22 11:29:57 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a65afcb

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  2 -
 dev-python/cfn-lint/cfn-lint-1.27.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.31.1.ebuild | 70 --
 3 files changed, 142 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 3b6c7e4777d3..feaf17b011ad 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,7 +1,5 @@
-DIST cfn_lint-1.27.0.tar.gz 3023073 BLAKE2B 
5540d44e40810b17ff6cbf699f14f0a80b70376e8ddf2b66e2623a6a29dbbbd76ef55645fb03f167639119ff6fd0584128b808bce210e9b06f9b7cf8e33b6f15
 SHA512 
be1b4ec9848d927d478130df3cfd1853be694e65999050d524eab90e08cff25f6751c3b83ecdb4e1da5c4ab69d96c57694d857ce39ece0b6b60c628776a7cc6b
 DIST cfn_lint-1.28.0.tar.gz 3162534 BLAKE2B 
120831c39c09419744c048d8c5d4ba8978ae50fe873841e3ab4bea82a83965bd5d7b9c2ccf1895e7fc981d4acc982827cd4a8af352ccdc6ecdab8dbf62396783
 SHA512 
69325f028beb6ddb05db144f2409575bdf4cc17efe9ee5c4a221aa82e09cafd6e97521398fbd52e5b797e67aedc3581d6455523490e23cd88d01e7af62436dd7
 DIST cfn_lint-1.29.1.tar.gz 2829516 BLAKE2B 
a624ed18ffe214dafccf807cd71de3ca5285224d090ba1becbca76e541261061843153142487f48000530b8ab5818b434f8ffb8e131d8ad8d345d3590e5f9767
 SHA512 
bbf4cac928bd419b75b93e9d049d14bc36dd46a599fd497296aa47c8818462b74897716009689b7512454172257499142b18dc4af65e9f0bf011a2af45116ade
 DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee421a554354dc3e754ed509108d0f5ef031e4e256de51476bb4904bba34089ac263203bd688d3c27fff050655b5a35a
 SHA512 
0a8819b5ca691a308622a1a394d19c633c06253f3b8a480a95c12dfcebb94220f0464f11e51ee9719f2d00d097520226d9c2ab6b8944ff0b00e117de21d458d9
-DIST cfn_lint-1.31.1.tar.gz 2855924 BLAKE2B 
753c23cb4f45e17e9a2f5215f819d63a0cf330d4677bf89adce9da3cf3eea0ecbc7c192520747b1ffdbd830891fb5a6ffbc181d1bc924fe4f105c597a96969e8
 SHA512 
cf75ef2b8b9e24be00aa334604e2dbbe312e6cd45a527ecd8a150c7bf93f477258c606f86f87c815901182b2b2921fa23d47e5bade368e8bc3099024dc0e1d0f
 DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
 DIST cfn_lint-1.32.0.tar.gz 2893829 BLAKE2B 
0a52741f0148965ba421865790608d19db03b54512a780758f823a448cd8b7f096b3188232a47227446764fc3c42df4f907c7b3addae07f86c879d5878a76674
 SHA512 
c687b76cb5a0bfa03b42630e736e3e92748582a56983c5d8e5163656d8ee84474cb5b29482c0a7d76e95a75546ac4ca4520e98f52a5a5528c1b0b2b6ee62ae5b

diff --git a/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild
deleted file mode 100644
index 7eae4ea2a82b..
--- a/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resou

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-22 Thread Arthur Zamarin
commit: 0e5065e1b6541bf84f45fc24584a3c525f285030
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Mar 22 11:27:44 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Mar 22 11:27:44 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e5065e1

dev-python/cfn-lint: Stabilize 1.28.0 ALLARCHES, #951774

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild
index 11b35b918d51..7eae4ea2a82b 100644
--- a/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-20 Thread Arthur Zamarin
commit: dae3623e9b39f78e5144b0864e5f39de21fc3db4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Mar 20 17:51:06 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Mar 20 18:17:37 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae3623e

dev-python/cfn-lint: add 1.32.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.32.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 3e8ef108edae..3b6c7e4777d3 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -4,3 +4,4 @@ DIST cfn_lint-1.29.1.tar.gz 2829516 BLAKE2B 
a624ed18ffe214dafccf807cd71de3ca5285
 DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee421a554354dc3e754ed509108d0f5ef031e4e256de51476bb4904bba34089ac263203bd688d3c27fff050655b5a35a
 SHA512 
0a8819b5ca691a308622a1a394d19c633c06253f3b8a480a95c12dfcebb94220f0464f11e51ee9719f2d00d097520226d9c2ab6b8944ff0b00e117de21d458d9
 DIST cfn_lint-1.31.1.tar.gz 2855924 BLAKE2B 
753c23cb4f45e17e9a2f5215f819d63a0cf330d4677bf89adce9da3cf3eea0ecbc7c192520747b1ffdbd830891fb5a6ffbc181d1bc924fe4f105c597a96969e8
 SHA512 
cf75ef2b8b9e24be00aa334604e2dbbe312e6cd45a527ecd8a150c7bf93f477258c606f86f87c815901182b2b2921fa23d47e5bade368e8bc3099024dc0e1d0f
 DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba
+DIST cfn_lint-1.32.0.tar.gz 2893829 BLAKE2B 
0a52741f0148965ba421865790608d19db03b54512a780758f823a448cd8b7f096b3188232a47227446764fc3c42df4f907c7b3addae07f86c879d5878a76674
 SHA512 
c687b76cb5a0bfa03b42630e736e3e92748582a56983c5d8e5163656d8ee84474cb5b29482c0a7d76e95a75546ac4ca4520e98f52a5a5528c1b0b2b6ee62ae5b

diff --git a/dev-python/cfn-lint/cfn-lint-1.32.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.32.0.ebuild
new file mode 100644
index ..3d3124e8705a
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.32.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-19 Thread Michał Górny
commit: 4ca60dac3a76923787b8f0d99ae91ba15098a325
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 20 05:42:36 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 20 06:49:16 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ca60dac

dev-python/cfn-lint: Bump to 1.31.3

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.31.3.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 7151cff54e13..3e8ef108edae 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -3,3 +3,4 @@ DIST cfn_lint-1.28.0.tar.gz 3162534 BLAKE2B 
120831c39c09419744c048d8c5d4ba8978ae
 DIST cfn_lint-1.29.1.tar.gz 2829516 BLAKE2B 
a624ed18ffe214dafccf807cd71de3ca5285224d090ba1becbca76e541261061843153142487f48000530b8ab5818b434f8ffb8e131d8ad8d345d3590e5f9767
 SHA512 
bbf4cac928bd419b75b93e9d049d14bc36dd46a599fd497296aa47c8818462b74897716009689b7512454172257499142b18dc4af65e9f0bf011a2af45116ade
 DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee421a554354dc3e754ed509108d0f5ef031e4e256de51476bb4904bba34089ac263203bd688d3c27fff050655b5a35a
 SHA512 
0a8819b5ca691a308622a1a394d19c633c06253f3b8a480a95c12dfcebb94220f0464f11e51ee9719f2d00d097520226d9c2ab6b8944ff0b00e117de21d458d9
 DIST cfn_lint-1.31.1.tar.gz 2855924 BLAKE2B 
753c23cb4f45e17e9a2f5215f819d63a0cf330d4677bf89adce9da3cf3eea0ecbc7c192520747b1ffdbd830891fb5a6ffbc181d1bc924fe4f105c597a96969e8
 SHA512 
cf75ef2b8b9e24be00aa334604e2dbbe312e6cd45a527ecd8a150c7bf93f477258c606f86f87c815901182b2b2921fa23d47e5bade368e8bc3099024dc0e1d0f
+DIST cfn_lint-1.31.3.tar.gz 2856311 BLAKE2B 
46c7dee3b3a70f59675dd3879604a0860b99b193ce37e11b05f60bb08d1f3e97da7887b8d13be48d5721826ca46f5bdca61945b8d2fc6558d9290eec5257fa64
 SHA512 
4d63d3d529b292125be9b139ebc73ae75024e61afa0928afd6f73f573aaadd9cb1e359cf4bc61aa245c05de86406b9894bca1519b682248946eff0664bbefeba

diff --git a/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild
new file mode 100644
index ..3d3124e8705a
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.31.3.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-19 Thread Michał Górny
commit: b370c26a456a7e68356b3872a3a03a54f2baff85
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 19 19:18:52 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 19 19:18:52 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b370c26a

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.24.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.25.1.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.26.1.ebuild | 70 --
 4 files changed, 213 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 679eb4e514e5..7151cff54e13 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,6 +1,3 @@
-DIST cfn_lint-1.24.0.tar.gz 2803280 BLAKE2B 
b859d41231c915c1a06939c75af91da619cc7c3ed7cd95196e0dc708a460e320eaa312197007e54037601db861b5332bdb27d5bae9a5d603171adf492d89968a
 SHA512 
c9d1984671fbcadc659211d74cdc797924d7a0cffe3baaa284438831fca61b53adfcc615b93e23e946058a9ffc278cc5c088e5c24f2745035f32e9f6cdae24be
-DIST cfn_lint-1.25.1.tar.gz 2837233 BLAKE2B 
0779afe85f8cc1190f24fb9531c576b61a2921be1e725289c164c5113cfffeca6ad984832c0efa10cb6e7dbb78515b24fea3dbb5da3ef4b63765ed80eb1294af
 SHA512 
f623dc24d3a6e3425e9c764498c874afcbc9406a31d8aa4f2c1a0a14e3dd4446584a0524d5a6d016bdcc95810907418b7dda9883d80d9ff2f3ae9385453d428a
-DIST cfn_lint-1.26.1.tar.gz 2943127 BLAKE2B 
ca87cf05d0b5ed3774c6c216f856c057bc04b9353f41feb4b1090c7d809685dc65057dab9b1b121fda78488c55bc8da2b3303a25a5047340843723a2e5d3849a
 SHA512 
a8c14275188d64e7ff53d5dd798805a69cf3fc4b13ca9cce19775cd4033b0a0a5815efb9f6900ed8d4116c8877ce62117738098d500373ae6ba3984fe4170ff1
 DIST cfn_lint-1.27.0.tar.gz 3023073 BLAKE2B 
5540d44e40810b17ff6cbf699f14f0a80b70376e8ddf2b66e2623a6a29dbbbd76ef55645fb03f167639119ff6fd0584128b808bce210e9b06f9b7cf8e33b6f15
 SHA512 
be1b4ec9848d927d478130df3cfd1853be694e65999050d524eab90e08cff25f6751c3b83ecdb4e1da5c4ab69d96c57694d857ce39ece0b6b60c628776a7cc6b
 DIST cfn_lint-1.28.0.tar.gz 3162534 BLAKE2B 
120831c39c09419744c048d8c5d4ba8978ae50fe873841e3ab4bea82a83965bd5d7b9c2ccf1895e7fc981d4acc982827cd4a8af352ccdc6ecdab8dbf62396783
 SHA512 
69325f028beb6ddb05db144f2409575bdf4cc17efe9ee5c4a221aa82e09cafd6e97521398fbd52e5b797e67aedc3581d6455523490e23cd88d01e7af62436dd7
 DIST cfn_lint-1.29.1.tar.gz 2829516 BLAKE2B 
a624ed18ffe214dafccf807cd71de3ca5285224d090ba1becbca76e541261061843153142487f48000530b8ab5818b434f8ffb8e131d8ad8d345d3590e5f9767
 SHA512 
bbf4cac928bd419b75b93e9d049d14bc36dd46a599fd497296aa47c8818462b74897716009689b7512454172257499142b18dc4af65e9f0bf011a2af45116ade

diff --git a/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild
deleted file mode 100644
index 7eae4ea2a82b..
--- a/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-18 Thread Michał Górny
commit: 40ed5a90cd2a2bd32cb977cda9223b4a52f9e7a0
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 19 05:39:21 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 19 05:39:21 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40ed5a90

dev-python/cfn-lint: Bump to 1.31.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.31.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 906fd65ed361..679eb4e514e5 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -5,3 +5,4 @@ DIST cfn_lint-1.27.0.tar.gz 3023073 BLAKE2B 
5540d44e40810b17ff6cbf699f14f0a80b70
 DIST cfn_lint-1.28.0.tar.gz 3162534 BLAKE2B 
120831c39c09419744c048d8c5d4ba8978ae50fe873841e3ab4bea82a83965bd5d7b9c2ccf1895e7fc981d4acc982827cd4a8af352ccdc6ecdab8dbf62396783
 SHA512 
69325f028beb6ddb05db144f2409575bdf4cc17efe9ee5c4a221aa82e09cafd6e97521398fbd52e5b797e67aedc3581d6455523490e23cd88d01e7af62436dd7
 DIST cfn_lint-1.29.1.tar.gz 2829516 BLAKE2B 
a624ed18ffe214dafccf807cd71de3ca5285224d090ba1becbca76e541261061843153142487f48000530b8ab5818b434f8ffb8e131d8ad8d345d3590e5f9767
 SHA512 
bbf4cac928bd419b75b93e9d049d14bc36dd46a599fd497296aa47c8818462b74897716009689b7512454172257499142b18dc4af65e9f0bf011a2af45116ade
 DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee421a554354dc3e754ed509108d0f5ef031e4e256de51476bb4904bba34089ac263203bd688d3c27fff050655b5a35a
 SHA512 
0a8819b5ca691a308622a1a394d19c633c06253f3b8a480a95c12dfcebb94220f0464f11e51ee9719f2d00d097520226d9c2ab6b8944ff0b00e117de21d458d9
+DIST cfn_lint-1.31.1.tar.gz 2855924 BLAKE2B 
753c23cb4f45e17e9a2f5215f819d63a0cf330d4677bf89adce9da3cf3eea0ecbc7c192520747b1ffdbd830891fb5a6ffbc181d1bc924fe4f105c597a96969e8
 SHA512 
cf75ef2b8b9e24be00aa334604e2dbbe312e6cd45a527ecd8a150c7bf93f477258c606f86f87c815901182b2b2921fa23d47e5bade368e8bc3099024dc0e1d0f

diff --git a/dev-python/cfn-lint/cfn-lint-1.31.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.31.1.ebuild
new file mode 100644
index ..3d3124e8705a
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.31.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.95.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-15 Thread Arthur Zamarin
commit: 8f1a72a37aac6edbcad38c7e343ad72fdcc5780f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Mar 13 19:57:21 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Mar 13 20:03:38 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f1a72a3

dev-python/cfn-lint: add 1.30.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.30.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 8a4d3b6a23de..906fd65ed361 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -4,3 +4,4 @@ DIST cfn_lint-1.26.1.tar.gz 2943127 BLAKE2B 
ca87cf05d0b5ed3774c6c216f856c057bc04
 DIST cfn_lint-1.27.0.tar.gz 3023073 BLAKE2B 
5540d44e40810b17ff6cbf699f14f0a80b70376e8ddf2b66e2623a6a29dbbbd76ef55645fb03f167639119ff6fd0584128b808bce210e9b06f9b7cf8e33b6f15
 SHA512 
be1b4ec9848d927d478130df3cfd1853be694e65999050d524eab90e08cff25f6751c3b83ecdb4e1da5c4ab69d96c57694d857ce39ece0b6b60c628776a7cc6b
 DIST cfn_lint-1.28.0.tar.gz 3162534 BLAKE2B 
120831c39c09419744c048d8c5d4ba8978ae50fe873841e3ab4bea82a83965bd5d7b9c2ccf1895e7fc981d4acc982827cd4a8af352ccdc6ecdab8dbf62396783
 SHA512 
69325f028beb6ddb05db144f2409575bdf4cc17efe9ee5c4a221aa82e09cafd6e97521398fbd52e5b797e67aedc3581d6455523490e23cd88d01e7af62436dd7
 DIST cfn_lint-1.29.1.tar.gz 2829516 BLAKE2B 
a624ed18ffe214dafccf807cd71de3ca5285224d090ba1becbca76e541261061843153142487f48000530b8ab5818b434f8ffb8e131d8ad8d345d3590e5f9767
 SHA512 
bbf4cac928bd419b75b93e9d049d14bc36dd46a599fd497296aa47c8818462b74897716009689b7512454172257499142b18dc4af65e9f0bf011a2af45116ade
+DIST cfn_lint-1.30.0.tar.gz 2832092 BLAKE2B 
0d69bc3702447828c5a03662d00f62e1ee421a554354dc3e754ed509108d0f5ef031e4e256de51476bb4904bba34089ac263203bd688d3c27fff050655b5a35a
 SHA512 
0a8819b5ca691a308622a1a394d19c633c06253f3b8a480a95c12dfcebb94220f0464f11e51ee9719f2d00d097520226d9c2ab6b8944ff0b00e117de21d458d9

diff --git a/dev-python/cfn-lint/cfn-lint-1.30.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.30.0.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.30.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-11 Thread Michał Górny
commit: f16a1d9fbdb022c40b5f1e55778805cbb77882ef
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 11 05:39:03 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 11 08:47:20 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f16a1d9f

dev-python/cfn-lint: Bump to 1.29.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.29.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 375493d32d28..8a4d3b6a23de 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -3,3 +3,4 @@ DIST cfn_lint-1.25.1.tar.gz 2837233 BLAKE2B 
0779afe85f8cc1190f24fb9531c576b61a29
 DIST cfn_lint-1.26.1.tar.gz 2943127 BLAKE2B 
ca87cf05d0b5ed3774c6c216f856c057bc04b9353f41feb4b1090c7d809685dc65057dab9b1b121fda78488c55bc8da2b3303a25a5047340843723a2e5d3849a
 SHA512 
a8c14275188d64e7ff53d5dd798805a69cf3fc4b13ca9cce19775cd4033b0a0a5815efb9f6900ed8d4116c8877ce62117738098d500373ae6ba3984fe4170ff1
 DIST cfn_lint-1.27.0.tar.gz 3023073 BLAKE2B 
5540d44e40810b17ff6cbf699f14f0a80b70376e8ddf2b66e2623a6a29dbbbd76ef55645fb03f167639119ff6fd0584128b808bce210e9b06f9b7cf8e33b6f15
 SHA512 
be1b4ec9848d927d478130df3cfd1853be694e65999050d524eab90e08cff25f6751c3b83ecdb4e1da5c4ab69d96c57694d857ce39ece0b6b60c628776a7cc6b
 DIST cfn_lint-1.28.0.tar.gz 3162534 BLAKE2B 
120831c39c09419744c048d8c5d4ba8978ae50fe873841e3ab4bea82a83965bd5d7b9c2ccf1895e7fc981d4acc982827cd4a8af352ccdc6ecdab8dbf62396783
 SHA512 
69325f028beb6ddb05db144f2409575bdf4cc17efe9ee5c4a221aa82e09cafd6e97521398fbd52e5b797e67aedc3581d6455523490e23cd88d01e7af62436dd7
+DIST cfn_lint-1.29.1.tar.gz 2829516 BLAKE2B 
a624ed18ffe214dafccf807cd71de3ca5285224d090ba1becbca76e541261061843153142487f48000530b8ab5818b434f8ffb8e131d8ad8d345d3590e5f9767
 SHA512 
bbf4cac928bd419b75b93e9d049d14bc36dd46a599fd497296aa47c8818462b74897716009689b7512454172257499142b18dc4af65e9f0bf011a2af45116ade

diff --git a/dev-python/cfn-lint/cfn-lint-1.29.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.29.1.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.29.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-03-05 Thread Michał Górny
commit: de1b892391f6b85120abff7c2b0cc22c36b55858
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar  6 02:41:03 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar  6 02:41:03 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de1b8923

dev-python/cfn-lint: Bump to 1.28.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.28.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 67b23631751e..375493d32d28 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.24.0.tar.gz 2803280 BLAKE2B 
b859d41231c915c1a06939c75af91da619cc
 DIST cfn_lint-1.25.1.tar.gz 2837233 BLAKE2B 
0779afe85f8cc1190f24fb9531c576b61a2921be1e725289c164c5113cfffeca6ad984832c0efa10cb6e7dbb78515b24fea3dbb5da3ef4b63765ed80eb1294af
 SHA512 
f623dc24d3a6e3425e9c764498c874afcbc9406a31d8aa4f2c1a0a14e3dd4446584a0524d5a6d016bdcc95810907418b7dda9883d80d9ff2f3ae9385453d428a
 DIST cfn_lint-1.26.1.tar.gz 2943127 BLAKE2B 
ca87cf05d0b5ed3774c6c216f856c057bc04b9353f41feb4b1090c7d809685dc65057dab9b1b121fda78488c55bc8da2b3303a25a5047340843723a2e5d3849a
 SHA512 
a8c14275188d64e7ff53d5dd798805a69cf3fc4b13ca9cce19775cd4033b0a0a5815efb9f6900ed8d4116c8877ce62117738098d500373ae6ba3984fe4170ff1
 DIST cfn_lint-1.27.0.tar.gz 3023073 BLAKE2B 
5540d44e40810b17ff6cbf699f14f0a80b70376e8ddf2b66e2623a6a29dbbbd76ef55645fb03f167639119ff6fd0584128b808bce210e9b06f9b7cf8e33b6f15
 SHA512 
be1b4ec9848d927d478130df3cfd1853be694e65999050d524eab90e08cff25f6751c3b83ecdb4e1da5c4ab69d96c57694d857ce39ece0b6b60c628776a7cc6b
+DIST cfn_lint-1.28.0.tar.gz 3162534 BLAKE2B 
120831c39c09419744c048d8c5d4ba8978ae50fe873841e3ab4bea82a83965bd5d7b9c2ccf1895e7fc981d4acc982827cd4a8af352ccdc6ecdab8dbf62396783
 SHA512 
69325f028beb6ddb05db144f2409575bdf4cc17efe9ee5c4a221aa82e09cafd6e97521398fbd52e5b797e67aedc3581d6455523490e23cd88d01e7af62436dd7

diff --git a/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.28.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-28 Thread Michał Górny
commit: fb70b4b60f0772fb032950d483d4c50cab70a25b
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 28 18:18:06 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 28 18:52:42 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb70b4b6

dev-python/cfn-lint: Bump to 1.27.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.27.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index f8a60fcf7523..67b23631751e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.24.0.tar.gz 2803280 BLAKE2B 
b859d41231c915c1a06939c75af91da619cc7c3ed7cd95196e0dc708a460e320eaa312197007e54037601db861b5332bdb27d5bae9a5d603171adf492d89968a
 SHA512 
c9d1984671fbcadc659211d74cdc797924d7a0cffe3baaa284438831fca61b53adfcc615b93e23e946058a9ffc278cc5c088e5c24f2745035f32e9f6cdae24be
 DIST cfn_lint-1.25.1.tar.gz 2837233 BLAKE2B 
0779afe85f8cc1190f24fb9531c576b61a2921be1e725289c164c5113cfffeca6ad984832c0efa10cb6e7dbb78515b24fea3dbb5da3ef4b63765ed80eb1294af
 SHA512 
f623dc24d3a6e3425e9c764498c874afcbc9406a31d8aa4f2c1a0a14e3dd4446584a0524d5a6d016bdcc95810907418b7dda9883d80d9ff2f3ae9385453d428a
 DIST cfn_lint-1.26.1.tar.gz 2943127 BLAKE2B 
ca87cf05d0b5ed3774c6c216f856c057bc04b9353f41feb4b1090c7d809685dc65057dab9b1b121fda78488c55bc8da2b3303a25a5047340843723a2e5d3849a
 SHA512 
a8c14275188d64e7ff53d5dd798805a69cf3fc4b13ca9cce19775cd4033b0a0a5815efb9f6900ed8d4116c8877ce62117738098d500373ae6ba3984fe4170ff1
+DIST cfn_lint-1.27.0.tar.gz 3023073 BLAKE2B 
5540d44e40810b17ff6cbf699f14f0a80b70376e8ddf2b66e2623a6a29dbbbd76ef55645fb03f167639119ff6fd0584128b808bce210e9b06f9b7cf8e33b6f15
 SHA512 
be1b4ec9848d927d478130df3cfd1853be694e65999050d524eab90e08cff25f6751c3b83ecdb4e1da5c4ab69d96c57694d857ce39ece0b6b60c628776a7cc6b

diff --git a/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.27.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-25 Thread Michał Górny
commit: 0963414a2562233ffadc79a36f5112c37ac8f644
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb 26 05:16:46 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb 26 06:03:07 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0963414a

dev-python/cfn-lint: Bump to 1.26.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.26.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 0200c05158cf..f8a60fcf7523 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.24.0.tar.gz 2803280 BLAKE2B 
b859d41231c915c1a06939c75af91da619cc7c3ed7cd95196e0dc708a460e320eaa312197007e54037601db861b5332bdb27d5bae9a5d603171adf492d89968a
 SHA512 
c9d1984671fbcadc659211d74cdc797924d7a0cffe3baaa284438831fca61b53adfcc615b93e23e946058a9ffc278cc5c088e5c24f2745035f32e9f6cdae24be
 DIST cfn_lint-1.25.1.tar.gz 2837233 BLAKE2B 
0779afe85f8cc1190f24fb9531c576b61a2921be1e725289c164c5113cfffeca6ad984832c0efa10cb6e7dbb78515b24fea3dbb5da3ef4b63765ed80eb1294af
 SHA512 
f623dc24d3a6e3425e9c764498c874afcbc9406a31d8aa4f2c1a0a14e3dd4446584a0524d5a6d016bdcc95810907418b7dda9883d80d9ff2f3ae9385453d428a
+DIST cfn_lint-1.26.1.tar.gz 2943127 BLAKE2B 
ca87cf05d0b5ed3774c6c216f856c057bc04b9353f41feb4b1090c7d809685dc65057dab9b1b121fda78488c55bc8da2b3303a25a5047340843723a2e5d3849a
 SHA512 
a8c14275188d64e7ff53d5dd798805a69cf3fc4b13ca9cce19775cd4033b0a0a5815efb9f6900ed8d4116c8877ce62117738098d500373ae6ba3984fe4170ff1

diff --git a/dev-python/cfn-lint/cfn-lint-1.26.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.26.1.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.26.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-22 Thread Michał Górny
commit: 61be6e750accbca26207fe070df1498f2a589165
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb 22 09:16:24 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb 22 09:16:24 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61be6e75

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 -
 dev-python/cfn-lint/cfn-lint-1.23.1.ebuild | 70 --
 2 files changed, 71 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 707a6810e651..0200c05158cf 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,2 @@
-DIST cfn_lint-1.23.1.tar.gz 2789263 BLAKE2B 
7b437de438c7da771f43b656307f30b23ef6c3981f459cc4bdd08f558533deb64d534cd32010212d8841f187ea81cfcaaa08e86c85e21dfb4af976145c16bcc8
 SHA512 
dd0a6ef52f2fec5169c384c82ca6fcd3a60ebfb12331e60e6fe06e9887b99057f849921bb3d38cf10f1b2590e0362f4b94b0d873bac9a9d4f13a3d868cb2e47c
 DIST cfn_lint-1.24.0.tar.gz 2803280 BLAKE2B 
b859d41231c915c1a06939c75af91da619cc7c3ed7cd95196e0dc708a460e320eaa312197007e54037601db861b5332bdb27d5bae9a5d603171adf492d89968a
 SHA512 
c9d1984671fbcadc659211d74cdc797924d7a0cffe3baaa284438831fca61b53adfcc615b93e23e946058a9ffc278cc5c088e5c24f2745035f32e9f6cdae24be
 DIST cfn_lint-1.25.1.tar.gz 2837233 BLAKE2B 
0779afe85f8cc1190f24fb9531c576b61a2921be1e725289c164c5113cfffeca6ad984832c0efa10cb6e7dbb78515b24fea3dbb5da3ef4b63765ed80eb1294af
 SHA512 
f623dc24d3a6e3425e9c764498c874afcbc9406a31d8aa4f2c1a0a14e3dd4446584a0524d5a6d016bdcc95810907418b7dda9883d80d9ff2f3ae9385453d428a

diff --git a/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild
deleted file mode 100644
index 7eae4ea2a82b..
--- a/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
-   # different graphviz version?
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-22 Thread Arthur Zamarin
commit: db93115f782c7ea5d8ec7ded04ed93b6a9369a1f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Feb 22 08:53:48 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Feb 22 08:53:48 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db93115f

dev-python/cfn-lint: Stabilize 1.24.0 ALLARCHES, #950086

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.24.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild
index 11b35b918d51..7eae4ea2a82b 100644
--- a/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-15 Thread Arthur Zamarin
commit: 22150026400df280a24490ef960e5b624b8a0d46
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Feb 15 08:54:42 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Feb 15 08:54:42 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22150026

dev-python/cfn-lint: Stabilize 1.23.1 ALLARCHES, #949755

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.23.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild
index 11b35b918d51..7eae4ea2a82b 100644
--- a/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-13 Thread Michał Górny
commit: 25fbc6400597f33cf5875a0dd7a6ed7aaf0556ce
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 14 04:19:30 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 14 05:19:30 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25fbc640

dev-python/cfn-lint: Bump to 1.25.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.25.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index ed662bc4f70b..098f8471553d 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.22.7.tar.gz 2735518 BLAKE2B 
4357981083d1a32c6be9194552ddb6d2064d8da59b869d617f0047833386232e7fbfede778ad5949a1a10708a1ea166c6bcdfecbaac0e4684e209c812fbde564
 SHA512 
c079f0b3f7947545ad79d8700833fca1ddc74bc9a224604ced3ab09981e6c363f73a6b214981fbdc16264611213d9a8a41e960de077943a4c407c79af458c551
 DIST cfn_lint-1.23.1.tar.gz 2789263 BLAKE2B 
7b437de438c7da771f43b656307f30b23ef6c3981f459cc4bdd08f558533deb64d534cd32010212d8841f187ea81cfcaaa08e86c85e21dfb4af976145c16bcc8
 SHA512 
dd0a6ef52f2fec5169c384c82ca6fcd3a60ebfb12331e60e6fe06e9887b99057f849921bb3d38cf10f1b2590e0362f4b94b0d873bac9a9d4f13a3d868cb2e47c
 DIST cfn_lint-1.24.0.tar.gz 2803280 BLAKE2B 
b859d41231c915c1a06939c75af91da619cc7c3ed7cd95196e0dc708a460e320eaa312197007e54037601db861b5332bdb27d5bae9a5d603171adf492d89968a
 SHA512 
c9d1984671fbcadc659211d74cdc797924d7a0cffe3baaa284438831fca61b53adfcc615b93e23e946058a9ffc278cc5c088e5c24f2745035f32e9f6cdae24be
+DIST cfn_lint-1.25.1.tar.gz 2837233 BLAKE2B 
0779afe85f8cc1190f24fb9531c576b61a2921be1e725289c164c5113cfffeca6ad984832c0efa10cb6e7dbb78515b24fea3dbb5da3ef4b63765ed80eb1294af
 SHA512 
f623dc24d3a6e3425e9c764498c874afcbc9406a31d8aa4f2c1a0a14e3dd4446584a0524d5a6d016bdcc95810907418b7dda9883d80d9ff2f3ae9385453d428a

diff --git a/dev-python/cfn-lint/cfn-lint-1.25.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.25.1.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.25.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-08 Thread Michał Górny
commit: da593bd4e66d8b0673fc4af3b61c63b9412fa8d3
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  8 15:38:47 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  8 18:34:56 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da593bd4

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 -
 dev-python/cfn-lint/cfn-lint-1.22.3.ebuild | 70 --
 2 files changed, 71 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 48b5256c63c2..ed662bc4f70b 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,4 +1,3 @@
-DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c7fd50b1a387e94eff404f9b8175135f0f39455bc45b69c8112e2f2c57eb055d7b2c879415bdc4abfdad74b7bb34f
 SHA512 
45502d913488784ff8e355a24317cce42fc7df39b3afd80b8fc170c9c5b7e6191f3ff41a460e8bb0277d1c21483aef8addb41d60fe2e8e5d13058aa85fefcc84
 DIST cfn_lint-1.22.7.tar.gz 2735518 BLAKE2B 
4357981083d1a32c6be9194552ddb6d2064d8da59b869d617f0047833386232e7fbfede778ad5949a1a10708a1ea166c6bcdfecbaac0e4684e209c812fbde564
 SHA512 
c079f0b3f7947545ad79d8700833fca1ddc74bc9a224604ced3ab09981e6c363f73a6b214981fbdc16264611213d9a8a41e960de077943a4c407c79af458c551
 DIST cfn_lint-1.23.1.tar.gz 2789263 BLAKE2B 
7b437de438c7da771f43b656307f30b23ef6c3981f459cc4bdd08f558533deb64d534cd32010212d8841f187ea81cfcaaa08e86c85e21dfb4af976145c16bcc8
 SHA512 
dd0a6ef52f2fec5169c384c82ca6fcd3a60ebfb12331e60e6fe06e9887b99057f849921bb3d38cf10f1b2590e0362f4b94b0d873bac9a9d4f13a3d868cb2e47c
 DIST cfn_lint-1.24.0.tar.gz 2803280 BLAKE2B 
b859d41231c915c1a06939c75af91da619cc7c3ed7cd95196e0dc708a460e320eaa312197007e54037601db861b5332bdb27d5bae9a5d603171adf492d89968a
 SHA512 
c9d1984671fbcadc659211d74cdc797924d7a0cffe3baaa284438831fca61b53adfcc615b93e23e946058a9ffc278cc5c088e5c24f2745035f32e9f6cdae24be

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild
deleted file mode 100644
index 7eae4ea2a82b..
--- a/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
-   # different graphviz version?
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-08 Thread Arthur Zamarin
commit: 93c871e2d9523eb32fe95673591569f0b34bf3f2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Feb  8 13:55:28 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Feb  8 13:55:28 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93c871e2

dev-python/cfn-lint: Stabilize 1.22.7 ALLARCHES, #949459

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.22.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.7.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.7.ebuild
index 11b35b918d51..7eae4ea2a82b 100644
--- a/dev-python/cfn-lint/cfn-lint-1.22.7.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.22.7.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-05 Thread Michał Górny
commit: 36e259400409ae3caa3b11b66d9049e8365f9e46
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  5 06:11:41 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  5 08:05:42 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e25940

dev-python/cfn-lint: Bump to 1.24.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.24.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 4126f9e9955f..48b5256c63c2 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c7fd50b1a387e94eff404f9b8175135f0f39455bc45b69c8112e2f2c57eb055d7b2c879415bdc4abfdad74b7bb34f
 SHA512 
45502d913488784ff8e355a24317cce42fc7df39b3afd80b8fc170c9c5b7e6191f3ff41a460e8bb0277d1c21483aef8addb41d60fe2e8e5d13058aa85fefcc84
 DIST cfn_lint-1.22.7.tar.gz 2735518 BLAKE2B 
4357981083d1a32c6be9194552ddb6d2064d8da59b869d617f0047833386232e7fbfede778ad5949a1a10708a1ea166c6bcdfecbaac0e4684e209c812fbde564
 SHA512 
c079f0b3f7947545ad79d8700833fca1ddc74bc9a224604ced3ab09981e6c363f73a6b214981fbdc16264611213d9a8a41e960de077943a4c407c79af458c551
 DIST cfn_lint-1.23.1.tar.gz 2789263 BLAKE2B 
7b437de438c7da771f43b656307f30b23ef6c3981f459cc4bdd08f558533deb64d534cd32010212d8841f187ea81cfcaaa08e86c85e21dfb4af976145c16bcc8
 SHA512 
dd0a6ef52f2fec5169c384c82ca6fcd3a60ebfb12331e60e6fe06e9887b99057f849921bb3d38cf10f1b2590e0362f4b94b0d873bac9a9d4f13a3d868cb2e47c
+DIST cfn_lint-1.24.0.tar.gz 2803280 BLAKE2B 
b859d41231c915c1a06939c75af91da619cc7c3ed7cd95196e0dc708a460e320eaa312197007e54037601db861b5332bdb27d5bae9a5d603171adf492d89968a
 SHA512 
c9d1984671fbcadc659211d74cdc797924d7a0cffe3baaa284438831fca61b53adfcc615b93e23e946058a9ffc278cc5c088e5c24f2745035f32e9f6cdae24be

diff --git a/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.24.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-02-01 Thread Michał Górny
commit: b917d61f5ba79374364b157153d49012260146e6
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Feb  1 09:19:16 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb  1 10:03:51 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b917d61f

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.22.5.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.22.6.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.23.0.ebuild | 70 --
 4 files changed, 213 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 869d71374198..4126f9e9955f 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,6 +1,3 @@
 DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c7fd50b1a387e94eff404f9b8175135f0f39455bc45b69c8112e2f2c57eb055d7b2c879415bdc4abfdad74b7bb34f
 SHA512 
45502d913488784ff8e355a24317cce42fc7df39b3afd80b8fc170c9c5b7e6191f3ff41a460e8bb0277d1c21483aef8addb41d60fe2e8e5d13058aa85fefcc84
-DIST cfn_lint-1.22.5.tar.gz 2722622 BLAKE2B 
147f1ec4543a2e54c6b6652b439ca4dd870aad44532a71bc75564bcb71e1aed0258b0387e3be57ef2c8059343cefaf2fef1af02b9442c37347987c018c9411ef
 SHA512 
772430a958e53b90c529311a6f90602de7c2ced9d86840907a9c1e612f18db456c6678d2de43b3bee2e3498cc71b238e2ab8564238aef4467cc285c52ad3a6dd
-DIST cfn_lint-1.22.6.tar.gz 2734354 BLAKE2B 
cda53c8500de713af87c2ad9a1306869c8305cc26389a3e01403d6df0e1a0d4c4014811135712bfa2af54f6333a25c5687c8d5b9c163f4798b394e29a4644622
 SHA512 
7fddd9ddde5eca7b68e838535ce8a0a0b4d50807467cecb3c51e78736a0c49f85a81608481b7f89b97b08530b4f29ae8023bf5cdbd70bc79ec27782e9b11
 DIST cfn_lint-1.22.7.tar.gz 2735518 BLAKE2B 
4357981083d1a32c6be9194552ddb6d2064d8da59b869d617f0047833386232e7fbfede778ad5949a1a10708a1ea166c6bcdfecbaac0e4684e209c812fbde564
 SHA512 
c079f0b3f7947545ad79d8700833fca1ddc74bc9a224604ced3ab09981e6c363f73a6b214981fbdc16264611213d9a8a41e960de077943a4c407c79af458c551
-DIST cfn_lint-1.23.0.tar.gz 2670666 BLAKE2B 
20fe7436223400c390a94448c6bbcf7f6dccaad31f0e91ba362d0b149a8d3837458625e10e1bd4d3e78f9b00b888edd27ed91357f488556aac5497f2942a9dd9
 SHA512 
914c504934268a7ae13ffdfcb36a461aa9697df95f8409a76008a499b1bb201ca58bc0a0256dc327392f5aac9eb5039511faaf65461521c29a1be081151d589b
 DIST cfn_lint-1.23.1.tar.gz 2789263 BLAKE2B 
7b437de438c7da771f43b656307f30b23ef6c3981f459cc4bdd08f558533deb64d534cd32010212d8841f187ea81cfcaaa08e86c85e21dfb4af976145c16bcc8
 SHA512 
dd0a6ef52f2fec5169c384c82ca6fcd3a60ebfb12331e60e6fe06e9887b99057f849921bb3d38cf10f1b2590e0362f4b94b0d873bac9a9d4f13a3d868cb2e47c

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.5.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.5.ebuild
deleted file mode 100644
index 11b35b918d51..
--- a/dev-python/cfn-lint/cfn-lint-1.22.5.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::Test

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-01-30 Thread Michał Górny
commit: 2a6ca2313305672b8f0bbc20c7d47b02838f42ca
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 31 04:25:59 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 31 04:25:59 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a6ca231

dev-python/cfn-lint: Bump to 1.23.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.23.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index b9a0fca33fa9..869d71374198 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -3,3 +3,4 @@ DIST cfn_lint-1.22.5.tar.gz 2722622 BLAKE2B 
147f1ec4543a2e54c6b6652b439ca4dd870a
 DIST cfn_lint-1.22.6.tar.gz 2734354 BLAKE2B 
cda53c8500de713af87c2ad9a1306869c8305cc26389a3e01403d6df0e1a0d4c4014811135712bfa2af54f6333a25c5687c8d5b9c163f4798b394e29a4644622
 SHA512 
7fddd9ddde5eca7b68e838535ce8a0a0b4d50807467cecb3c51e78736a0c49f85a81608481b7f89b97b08530b4f29ae8023bf5cdbd70bc79ec27782e9b11
 DIST cfn_lint-1.22.7.tar.gz 2735518 BLAKE2B 
4357981083d1a32c6be9194552ddb6d2064d8da59b869d617f0047833386232e7fbfede778ad5949a1a10708a1ea166c6bcdfecbaac0e4684e209c812fbde564
 SHA512 
c079f0b3f7947545ad79d8700833fca1ddc74bc9a224604ced3ab09981e6c363f73a6b214981fbdc16264611213d9a8a41e960de077943a4c407c79af458c551
 DIST cfn_lint-1.23.0.tar.gz 2670666 BLAKE2B 
20fe7436223400c390a94448c6bbcf7f6dccaad31f0e91ba362d0b149a8d3837458625e10e1bd4d3e78f9b00b888edd27ed91357f488556aac5497f2942a9dd9
 SHA512 
914c504934268a7ae13ffdfcb36a461aa9697df95f8409a76008a499b1bb201ca58bc0a0256dc327392f5aac9eb5039511faaf65461521c29a1be081151d589b
+DIST cfn_lint-1.23.1.tar.gz 2789263 BLAKE2B 
7b437de438c7da771f43b656307f30b23ef6c3981f459cc4bdd08f558533deb64d534cd32010212d8841f187ea81cfcaaa08e86c85e21dfb4af976145c16bcc8
 SHA512 
dd0a6ef52f2fec5169c384c82ca6fcd3a60ebfb12331e60e6fe06e9887b99057f849921bb3d38cf10f1b2590e0362f4b94b0d873bac9a9d4f13a3d868cb2e47c

diff --git a/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.23.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-01-29 Thread Michał Górny
commit: 4d85b1631e59ca64d08c37ba0aab6feba4cc679a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 30 03:28:25 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 30 04:10:32 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d85b163

dev-python/cfn-lint: Bump to 1.23.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.23.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index d25faae6c0bb..b9a0fca33fa9 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c
 DIST cfn_lint-1.22.5.tar.gz 2722622 BLAKE2B 
147f1ec4543a2e54c6b6652b439ca4dd870aad44532a71bc75564bcb71e1aed0258b0387e3be57ef2c8059343cefaf2fef1af02b9442c37347987c018c9411ef
 SHA512 
772430a958e53b90c529311a6f90602de7c2ced9d86840907a9c1e612f18db456c6678d2de43b3bee2e3498cc71b238e2ab8564238aef4467cc285c52ad3a6dd
 DIST cfn_lint-1.22.6.tar.gz 2734354 BLAKE2B 
cda53c8500de713af87c2ad9a1306869c8305cc26389a3e01403d6df0e1a0d4c4014811135712bfa2af54f6333a25c5687c8d5b9c163f4798b394e29a4644622
 SHA512 
7fddd9ddde5eca7b68e838535ce8a0a0b4d50807467cecb3c51e78736a0c49f85a81608481b7f89b97b08530b4f29ae8023bf5cdbd70bc79ec27782e9b11
 DIST cfn_lint-1.22.7.tar.gz 2735518 BLAKE2B 
4357981083d1a32c6be9194552ddb6d2064d8da59b869d617f0047833386232e7fbfede778ad5949a1a10708a1ea166c6bcdfecbaac0e4684e209c812fbde564
 SHA512 
c079f0b3f7947545ad79d8700833fca1ddc74bc9a224604ced3ab09981e6c363f73a6b214981fbdc16264611213d9a8a41e960de077943a4c407c79af458c551
+DIST cfn_lint-1.23.0.tar.gz 2670666 BLAKE2B 
20fe7436223400c390a94448c6bbcf7f6dccaad31f0e91ba362d0b149a8d3837458625e10e1bd4d3e78f9b00b888edd27ed91357f488556aac5497f2942a9dd9
 SHA512 
914c504934268a7ae13ffdfcb36a461aa9697df95f8409a76008a499b1bb201ca58bc0a0256dc327392f5aac9eb5039511faaf65461521c29a1be081151d589b

diff --git a/dev-python/cfn-lint/cfn-lint-1.23.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.23.0.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.23.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-01-23 Thread Michał Górny
commit: 1ef9b70d89f813cdf4e728e35d336a9a2d390719
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 24 06:08:42 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 24 07:16:33 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ef9b70d

dev-python/cfn-lint: Bump to 1.22.7

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.22.7.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 478af9769d31..d25faae6c0bb 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c7fd50b1a387e94eff404f9b8175135f0f39455bc45b69c8112e2f2c57eb055d7b2c879415bdc4abfdad74b7bb34f
 SHA512 
45502d913488784ff8e355a24317cce42fc7df39b3afd80b8fc170c9c5b7e6191f3ff41a460e8bb0277d1c21483aef8addb41d60fe2e8e5d13058aa85fefcc84
 DIST cfn_lint-1.22.5.tar.gz 2722622 BLAKE2B 
147f1ec4543a2e54c6b6652b439ca4dd870aad44532a71bc75564bcb71e1aed0258b0387e3be57ef2c8059343cefaf2fef1af02b9442c37347987c018c9411ef
 SHA512 
772430a958e53b90c529311a6f90602de7c2ced9d86840907a9c1e612f18db456c6678d2de43b3bee2e3498cc71b238e2ab8564238aef4467cc285c52ad3a6dd
 DIST cfn_lint-1.22.6.tar.gz 2734354 BLAKE2B 
cda53c8500de713af87c2ad9a1306869c8305cc26389a3e01403d6df0e1a0d4c4014811135712bfa2af54f6333a25c5687c8d5b9c163f4798b394e29a4644622
 SHA512 
7fddd9ddde5eca7b68e838535ce8a0a0b4d50807467cecb3c51e78736a0c49f85a81608481b7f89b97b08530b4f29ae8023bf5cdbd70bc79ec27782e9b11
+DIST cfn_lint-1.22.7.tar.gz 2735518 BLAKE2B 
4357981083d1a32c6be9194552ddb6d2064d8da59b869d617f0047833386232e7fbfede778ad5949a1a10708a1ea166c6bcdfecbaac0e4684e209c812fbde564
 SHA512 
c079f0b3f7947545ad79d8700833fca1ddc74bc9a224604ced3ab09981e6c363f73a6b214981fbdc16264611213d9a8a41e960de077943a4c407c79af458c551

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.7.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.7.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.22.7.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-01-22 Thread Michał Górny
commit: f5156078bd44860334ac0c1a319fd212e1ba00ba
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 23 04:42:37 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 23 04:42:37 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5156078

dev-python/cfn-lint: Bump to 1.22.6

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.22.6.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index d9a94d18d03e..478af9769d31 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c7fd50b1a387e94eff404f9b8175135f0f39455bc45b69c8112e2f2c57eb055d7b2c879415bdc4abfdad74b7bb34f
 SHA512 
45502d913488784ff8e355a24317cce42fc7df39b3afd80b8fc170c9c5b7e6191f3ff41a460e8bb0277d1c21483aef8addb41d60fe2e8e5d13058aa85fefcc84
 DIST cfn_lint-1.22.5.tar.gz 2722622 BLAKE2B 
147f1ec4543a2e54c6b6652b439ca4dd870aad44532a71bc75564bcb71e1aed0258b0387e3be57ef2c8059343cefaf2fef1af02b9442c37347987c018c9411ef
 SHA512 
772430a958e53b90c529311a6f90602de7c2ced9d86840907a9c1e612f18db456c6678d2de43b3bee2e3498cc71b238e2ab8564238aef4467cc285c52ad3a6dd
+DIST cfn_lint-1.22.6.tar.gz 2734354 BLAKE2B 
cda53c8500de713af87c2ad9a1306869c8305cc26389a3e01403d6df0e1a0d4c4014811135712bfa2af54f6333a25c5687c8d5b9c163f4798b394e29a4644622
 SHA512 
7fddd9ddde5eca7b68e838535ce8a0a0b4d50807467cecb3c51e78736a0c49f85a81608481b7f89b97b08530b4f29ae8023bf5cdbd70bc79ec27782e9b11

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.6.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.6.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.22.6.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-01-18 Thread Michał Górny
commit: 5426026489959a590a7ae045503bd70e09e15515
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan 18 09:59:24 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 18 10:03:05 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54260264

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.21.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.22.2.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.22.4.ebuild | 70 --
 4 files changed, 213 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 7f17b877907f..d9a94d18d03e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,5 +1,2 @@
-DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a463514112cabe0e34b6f53344991819f81b8246adb9fe3ee8fe59ee5db9000befead7a21ce85694bac248589a72a
 SHA512 
2091f02a30ee22313db52094e9f54e5978eca69aa0c0cc96e1e39cae720f04165b4ff2aa0f01419c5327f149d5bd5ab16c4ba9b2af0a8f42b1a1872991a6e4da
-DIST cfn_lint-1.22.2.tar.gz 2848845 BLAKE2B 
4f9194e019c1dae1d373b8432693be9463a668e5db522c7a23adcfaf04c591e49d0d1dc4853323f32fdb0d2c8db1c9e7a0bf6cddf652541bb057cfc3525ed53e
 SHA512 
8e80892692e4458591f9863ad43af8bd8c5fbe2e554c75dda3029ac73a5a04987238221d50a3d2597dc0195dd049f36f9fcdc2b917c68b9a4d6807b4e8bf411c
 DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c7fd50b1a387e94eff404f9b8175135f0f39455bc45b69c8112e2f2c57eb055d7b2c879415bdc4abfdad74b7bb34f
 SHA512 
45502d913488784ff8e355a24317cce42fc7df39b3afd80b8fc170c9c5b7e6191f3ff41a460e8bb0277d1c21483aef8addb41d60fe2e8e5d13058aa85fefcc84
-DIST cfn_lint-1.22.4.tar.gz 2707627 BLAKE2B 
348dbbc46e1e7be9041ccd64e3f9a6409e7276533c275e2329b94c5dc63ba13a49955c1912447326cd79eba2ea1c4eb8941a4552de25d493b2594ef8d4910333
 SHA512 
01c2a581fd02ecc553dd1e95741eda174a7290aeabbe91a8f0da96bd77276aa134c627b78f60a7c18085252d16fa8a1fc0067faad78e59c623924a3bcaa0166a
 DIST cfn_lint-1.22.5.tar.gz 2722622 BLAKE2B 
147f1ec4543a2e54c6b6652b439ca4dd870aad44532a71bc75564bcb71e1aed0258b0387e3be57ef2c8059343cefaf2fef1af02b9442c37347987c018c9411ef
 SHA512 
772430a958e53b90c529311a6f90602de7c2ced9d86840907a9c1e612f18db456c6678d2de43b3bee2e3498cc71b238e2ab8564238aef4467cc285c52ad3a6dd

diff --git a/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild
deleted file mode 100644
index cf3dbb45dc5f..
--- a/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
-   # different graphviz version?
-   
test/unit/module/template/test_templ

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-01-18 Thread Arthur Zamarin
commit: 89b0667fd6b90fd79bc928c2552d8c60876617dd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 18 09:09:14 2025 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 18 09:09:14 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89b0667f

dev-python/cfn-lint: Stabilize 1.22.3 ALLARCHES, #948291

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.22.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild
index 55b02df4cc9d..7eae4ea2a82b 100644
--- a/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-01-14 Thread Michał Górny
commit: db48baccd68a46abd10231edab420c2e364b2279
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 15 04:31:53 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 15 04:31:53 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db48bacc

dev-python/cfn-lint: Bump to 1.22.5

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.22.5.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 889b545eed10..7f17b877907f 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a
 DIST cfn_lint-1.22.2.tar.gz 2848845 BLAKE2B 
4f9194e019c1dae1d373b8432693be9463a668e5db522c7a23adcfaf04c591e49d0d1dc4853323f32fdb0d2c8db1c9e7a0bf6cddf652541bb057cfc3525ed53e
 SHA512 
8e80892692e4458591f9863ad43af8bd8c5fbe2e554c75dda3029ac73a5a04987238221d50a3d2597dc0195dd049f36f9fcdc2b917c68b9a4d6807b4e8bf411c
 DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c7fd50b1a387e94eff404f9b8175135f0f39455bc45b69c8112e2f2c57eb055d7b2c879415bdc4abfdad74b7bb34f
 SHA512 
45502d913488784ff8e355a24317cce42fc7df39b3afd80b8fc170c9c5b7e6191f3ff41a460e8bb0277d1c21483aef8addb41d60fe2e8e5d13058aa85fefcc84
 DIST cfn_lint-1.22.4.tar.gz 2707627 BLAKE2B 
348dbbc46e1e7be9041ccd64e3f9a6409e7276533c275e2329b94c5dc63ba13a49955c1912447326cd79eba2ea1c4eb8941a4552de25d493b2594ef8d4910333
 SHA512 
01c2a581fd02ecc553dd1e95741eda174a7290aeabbe91a8f0da96bd77276aa134c627b78f60a7c18085252d16fa8a1fc0067faad78e59c623924a3bcaa0166a
+DIST cfn_lint-1.22.5.tar.gz 2722622 BLAKE2B 
147f1ec4543a2e54c6b6652b439ca4dd870aad44532a71bc75564bcb71e1aed0258b0387e3be57ef2c8059343cefaf2fef1af02b9442c37347987c018c9411ef
 SHA512 
772430a958e53b90c529311a6f90602de7c2ced9d86840907a9c1e612f18db456c6678d2de43b3bee2e3498cc71b238e2ab8564238aef4467cc285c52ad3a6dd

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.5.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.5.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.22.5.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2025-01-09 Thread Michał Górny
commit: 24872844397eebd2a7f69e90aa0471bee3f14185
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jan 10 04:36:52 2025 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jan 10 05:30:53 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24872844

dev-python/cfn-lint: Bump to 1.22.4

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.22.4.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 9d7f5369842c..889b545eed10 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a463514112cabe0e34b6f53344991819f81b8246adb9fe3ee8fe59ee5db9000befead7a21ce85694bac248589a72a
 SHA512 
2091f02a30ee22313db52094e9f54e5978eca69aa0c0cc96e1e39cae720f04165b4ff2aa0f01419c5327f149d5bd5ab16c4ba9b2af0a8f42b1a1872991a6e4da
 DIST cfn_lint-1.22.2.tar.gz 2848845 BLAKE2B 
4f9194e019c1dae1d373b8432693be9463a668e5db522c7a23adcfaf04c591e49d0d1dc4853323f32fdb0d2c8db1c9e7a0bf6cddf652541bb057cfc3525ed53e
 SHA512 
8e80892692e4458591f9863ad43af8bd8c5fbe2e554c75dda3029ac73a5a04987238221d50a3d2597dc0195dd049f36f9fcdc2b917c68b9a4d6807b4e8bf411c
 DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c7fd50b1a387e94eff404f9b8175135f0f39455bc45b69c8112e2f2c57eb055d7b2c879415bdc4abfdad74b7bb34f
 SHA512 
45502d913488784ff8e355a24317cce42fc7df39b3afd80b8fc170c9c5b7e6191f3ff41a460e8bb0277d1c21483aef8addb41d60fe2e8e5d13058aa85fefcc84
+DIST cfn_lint-1.22.4.tar.gz 2707627 BLAKE2B 
348dbbc46e1e7be9041ccd64e3f9a6409e7276533c275e2329b94c5dc63ba13a49955c1912447326cd79eba2ea1c4eb8941a4552de25d493b2594ef8d4910333
 SHA512 
01c2a581fd02ecc553dd1e95741eda174a7290aeabbe91a8f0da96bd77276aa134c627b78f60a7c18085252d16fa8a1fc0067faad78e59c623924a3bcaa0166a

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.4.ebuild
new file mode 100644
index ..11b35b918d51
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.22.4.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-30 Thread Michał Górny
commit: d33f4a25a81db6597256009bbeb0b7398c9bb34b
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 31 04:56:51 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 31 05:26:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d33f4a25

dev-python/cfn-lint: Bump to 1.22.3

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.22.3.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 626927f240ab..9d7f5369842c 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a463514112cabe0e34b6f53344991819f81b8246adb9fe3ee8fe59ee5db9000befead7a21ce85694bac248589a72a
 SHA512 
2091f02a30ee22313db52094e9f54e5978eca69aa0c0cc96e1e39cae720f04165b4ff2aa0f01419c5327f149d5bd5ab16c4ba9b2af0a8f42b1a1872991a6e4da
 DIST cfn_lint-1.22.2.tar.gz 2848845 BLAKE2B 
4f9194e019c1dae1d373b8432693be9463a668e5db522c7a23adcfaf04c591e49d0d1dc4853323f32fdb0d2c8db1c9e7a0bf6cddf652541bb057cfc3525ed53e
 SHA512 
8e80892692e4458591f9863ad43af8bd8c5fbe2e554c75dda3029ac73a5a04987238221d50a3d2597dc0195dd049f36f9fcdc2b917c68b9a4d6807b4e8bf411c
+DIST cfn_lint-1.22.3.tar.gz 2700564 BLAKE2B 
d1bfed3fda2d5133919396a54257ad484c3c7fd50b1a387e94eff404f9b8175135f0f39455bc45b69c8112e2f2c57eb055d7b2c879415bdc4abfdad74b7bb34f
 SHA512 
45502d913488784ff8e355a24317cce42fc7df39b3afd80b8fc170c9c5b7e6191f3ff41a460e8bb0277d1c21483aef8addb41d60fe2e8e5d13058aa85fefcc84

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild
new file mode 100644
index ..55b02df4cc9d
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.22.3.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-28 Thread Michał Górny
commit: 558aef8131f7220af48f6d7bb1753e4d19a90cd3
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec 28 10:42:15 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec 28 10:46:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=558aef81

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 -
 dev-python/cfn-lint/cfn-lint-1.20.2.ebuild | 70 --
 2 files changed, 71 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index aa3b10d6f81e..626927f240ab 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,2 @@
-DIST cfn_lint-1.20.2.tar.gz 2734631 BLAKE2B 
1935793ad1438f5fc4f217390541b476192ab68a6d1614d7322eca1981b7d3712d85c090394eec2e8d2f2c15bb3798a148987613a3fe71fdc4355a57bf31a836
 SHA512 
e327e703cd96cd1d4d9342525cdccde3f11373ad5624a6a6b9ba16f76fa1b12be83b8f6a5118c0ceb947dada7a5bd30f8bf6434f4e61cbfc8bfa0dd8cf49ece9
 DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a463514112cabe0e34b6f53344991819f81b8246adb9fe3ee8fe59ee5db9000befead7a21ce85694bac248589a72a
 SHA512 
2091f02a30ee22313db52094e9f54e5978eca69aa0c0cc96e1e39cae720f04165b4ff2aa0f01419c5327f149d5bd5ab16c4ba9b2af0a8f42b1a1872991a6e4da
 DIST cfn_lint-1.22.2.tar.gz 2848845 BLAKE2B 
4f9194e019c1dae1d373b8432693be9463a668e5db522c7a23adcfaf04c591e49d0d1dc4853323f32fdb0d2c8db1c9e7a0bf6cddf652541bb057cfc3525ed53e
 SHA512 
8e80892692e4458591f9863ad43af8bd8c5fbe2e554c75dda3029ac73a5a04987238221d50a3d2597dc0195dd049f36f9fcdc2b917c68b9a4d6807b4e8bf411c

diff --git a/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild
deleted file mode 100644
index cf3dbb45dc5f..
--- a/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
-   # different graphviz version?
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-28 Thread Sam James
commit: 5cd18a360542c260268aad395fe3655001058f58
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 28 09:44:48 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 28 09:44:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cd18a36

dev-python/cfn-lint: Stabilize 1.21.0 ALLARCHES, #947087

Signed-off-by: Sam James  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.21.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild
index 55b02df4cc9d..cf3dbb45dc5f 100644
--- a/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-21 Thread Zac Medico
commit: 830262c700aae01c16ccd8a8600bbc863d0254a8
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Dec 21 23:05:00 2024 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Dec 21 23:06:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=830262c7

dev-python/cfn-lint: drop myself as a maintainer

Signed-off-by: Zac Medico  gentoo.org>

 dev-python/cfn-lint/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-python/cfn-lint/metadata.xml b/dev-python/cfn-lint/metadata.xml
index b6a9a14ccad9..64c0f2eadaa7 100644
--- a/dev-python/cfn-lint/metadata.xml
+++ b/dev-python/cfn-lint/metadata.xml
@@ -1,10 +1,6 @@
 
 https://www.gentoo.org/dtd/metadata.dtd";>
 
-   
-   zmed...@gentoo.org
-   Zac Medico
-   

pyt...@gentoo.org
Python



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-21 Thread Michał Górny
commit: e3dd029db2564e160e47c969fef51f95b93d307f
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec 21 11:18:16 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec 21 11:18:16 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3dd029d

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.18.4.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.22.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.22.1.ebuild | 70 --
 4 files changed, 213 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 87e7019ae879..aa3b10d6f81e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,6 +1,3 @@
-DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b
 DIST cfn_lint-1.20.2.tar.gz 2734631 BLAKE2B 
1935793ad1438f5fc4f217390541b476192ab68a6d1614d7322eca1981b7d3712d85c090394eec2e8d2f2c15bb3798a148987613a3fe71fdc4355a57bf31a836
 SHA512 
e327e703cd96cd1d4d9342525cdccde3f11373ad5624a6a6b9ba16f76fa1b12be83b8f6a5118c0ceb947dada7a5bd30f8bf6434f4e61cbfc8bfa0dd8cf49ece9
 DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a463514112cabe0e34b6f53344991819f81b8246adb9fe3ee8fe59ee5db9000befead7a21ce85694bac248589a72a
 SHA512 
2091f02a30ee22313db52094e9f54e5978eca69aa0c0cc96e1e39cae720f04165b4ff2aa0f01419c5327f149d5bd5ab16c4ba9b2af0a8f42b1a1872991a6e4da
-DIST cfn_lint-1.22.0.tar.gz 2744603 BLAKE2B 
f4ae73ce051e8bb25fcacc4f258bb687266696622bf9f6cf80246cab7618ae289d9b2bd8da565c9696195c383fc0fc78419fa5e9018675cb81afe77ae9855c94
 SHA512 
54ae5143a94a5afcd38620568b16d899dd7784c99581202a54650bdfde86fe7564bbf320d9b47875df5b5fd94aa9e6fa2a01f847651c45e1396a203cbd8b4d10
-DIST cfn_lint-1.22.1.tar.gz 2878378 BLAKE2B 
e6af99e633574dac718604ead301cb1728273b6c5a29dc8ab8d75b759696181f826d9e17fb53e0779d990952411a3549df0d94e1fcf3c452a116d484bcb4f5b9
 SHA512 
0b339bd68b6033c60c289fd2456650e9a87d4b574ddaa52aaa40d48e0bd82862b05bd8656ecb4dbd647a0ca2c2181e3d8704e12deeda7a69c6488fda9e801652
 DIST cfn_lint-1.22.2.tar.gz 2848845 BLAKE2B 
4f9194e019c1dae1d373b8432693be9463a668e5db522c7a23adcfaf04c591e49d0d1dc4853323f32fdb0d2c8db1c9e7a0bf6cddf652541bb057cfc3525ed53e
 SHA512 
8e80892692e4458591f9863ad43af8bd8c5fbe2e554c75dda3029ac73a5a04987238221d50a3d2597dc0195dd049f36f9fcdc2b917c68b9a4d6807b4e8bf411c

diff --git a/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild
deleted file mode 100644
index b020827d82b1..
--- a/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-21 Thread Michał Górny
commit: aaa3e78478ba0bcb01acc71a7af24d4d6e8f5d51
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec 21 11:17:27 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec 21 11:17:27 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaa3e784

dev-python/cfn-lint: Stabilize 1.20.2 ALLARCHES, #946740

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.20.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild
index 55b02df4cc9d..cf3dbb45dc5f 100644
--- a/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-16 Thread Michał Górny
commit: 16fef7d920acb3902ed06340ab4d1783227adc07
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 17 03:26:11 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 17 03:57:27 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16fef7d9

dev-python/cfn-lint: Bump to 1.22.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.22.2.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 47d4d09acb6e..87e7019ae879 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -3,3 +3,4 @@ DIST cfn_lint-1.20.2.tar.gz 2734631 BLAKE2B 
1935793ad1438f5fc4f217390541b476192a
 DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a463514112cabe0e34b6f53344991819f81b8246adb9fe3ee8fe59ee5db9000befead7a21ce85694bac248589a72a
 SHA512 
2091f02a30ee22313db52094e9f54e5978eca69aa0c0cc96e1e39cae720f04165b4ff2aa0f01419c5327f149d5bd5ab16c4ba9b2af0a8f42b1a1872991a6e4da
 DIST cfn_lint-1.22.0.tar.gz 2744603 BLAKE2B 
f4ae73ce051e8bb25fcacc4f258bb687266696622bf9f6cf80246cab7618ae289d9b2bd8da565c9696195c383fc0fc78419fa5e9018675cb81afe77ae9855c94
 SHA512 
54ae5143a94a5afcd38620568b16d899dd7784c99581202a54650bdfde86fe7564bbf320d9b47875df5b5fd94aa9e6fa2a01f847651c45e1396a203cbd8b4d10
 DIST cfn_lint-1.22.1.tar.gz 2878378 BLAKE2B 
e6af99e633574dac718604ead301cb1728273b6c5a29dc8ab8d75b759696181f826d9e17fb53e0779d990952411a3549df0d94e1fcf3c452a116d484bcb4f5b9
 SHA512 
0b339bd68b6033c60c289fd2456650e9a87d4b574ddaa52aaa40d48e0bd82862b05bd8656ecb4dbd647a0ca2c2181e3d8704e12deeda7a69c6488fda9e801652
+DIST cfn_lint-1.22.2.tar.gz 2848845 BLAKE2B 
4f9194e019c1dae1d373b8432693be9463a668e5db522c7a23adcfaf04c591e49d0d1dc4853323f32fdb0d2c8db1c9e7a0bf6cddf652541bb057cfc3525ed53e
 SHA512 
8e80892692e4458591f9863ad43af8bd8c5fbe2e554c75dda3029ac73a5a04987238221d50a3d2597dc0195dd049f36f9fcdc2b917c68b9a4d6807b4e8bf411c

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.2.ebuild
new file mode 100644
index ..55b02df4cc9d
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.22.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-12 Thread Michał Górny
commit: daf2bb41ddab7b2063dd22e47be998cfcca5084e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 13 04:48:50 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 13 06:15:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf2bb41

dev-python/cfn-lint: Bump to 1.22.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.22.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 216a91c708bd..47d4d09acb6e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2d
 DIST cfn_lint-1.20.2.tar.gz 2734631 BLAKE2B 
1935793ad1438f5fc4f217390541b476192ab68a6d1614d7322eca1981b7d3712d85c090394eec2e8d2f2c15bb3798a148987613a3fe71fdc4355a57bf31a836
 SHA512 
e327e703cd96cd1d4d9342525cdccde3f11373ad5624a6a6b9ba16f76fa1b12be83b8f6a5118c0ceb947dada7a5bd30f8bf6434f4e61cbfc8bfa0dd8cf49ece9
 DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a463514112cabe0e34b6f53344991819f81b8246adb9fe3ee8fe59ee5db9000befead7a21ce85694bac248589a72a
 SHA512 
2091f02a30ee22313db52094e9f54e5978eca69aa0c0cc96e1e39cae720f04165b4ff2aa0f01419c5327f149d5bd5ab16c4ba9b2af0a8f42b1a1872991a6e4da
 DIST cfn_lint-1.22.0.tar.gz 2744603 BLAKE2B 
f4ae73ce051e8bb25fcacc4f258bb687266696622bf9f6cf80246cab7618ae289d9b2bd8da565c9696195c383fc0fc78419fa5e9018675cb81afe77ae9855c94
 SHA512 
54ae5143a94a5afcd38620568b16d899dd7784c99581202a54650bdfde86fe7564bbf320d9b47875df5b5fd94aa9e6fa2a01f847651c45e1396a203cbd8b4d10
+DIST cfn_lint-1.22.1.tar.gz 2878378 BLAKE2B 
e6af99e633574dac718604ead301cb1728273b6c5a29dc8ab8d75b759696181f826d9e17fb53e0779d990952411a3549df0d94e1fcf3c452a116d484bcb4f5b9
 SHA512 
0b339bd68b6033c60c289fd2456650e9a87d4b574ddaa52aaa40d48e0bd82862b05bd8656ecb4dbd647a0ca2c2181e3d8704e12deeda7a69c6488fda9e801652

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.1.ebuild
new file mode 100644
index ..55b02df4cc9d
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.22.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-10 Thread Michał Górny
commit: 7428751baa4f8e29923c7b8461b20701837b09b7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Dec 11 06:50:43 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Dec 11 07:54:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7428751b

dev-python/cfn-lint: Bump to 1.22.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.22.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 617f8b8697f2..216a91c708bd 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b
 DIST cfn_lint-1.20.2.tar.gz 2734631 BLAKE2B 
1935793ad1438f5fc4f217390541b476192ab68a6d1614d7322eca1981b7d3712d85c090394eec2e8d2f2c15bb3798a148987613a3fe71fdc4355a57bf31a836
 SHA512 
e327e703cd96cd1d4d9342525cdccde3f11373ad5624a6a6b9ba16f76fa1b12be83b8f6a5118c0ceb947dada7a5bd30f8bf6434f4e61cbfc8bfa0dd8cf49ece9
 DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a463514112cabe0e34b6f53344991819f81b8246adb9fe3ee8fe59ee5db9000befead7a21ce85694bac248589a72a
 SHA512 
2091f02a30ee22313db52094e9f54e5978eca69aa0c0cc96e1e39cae720f04165b4ff2aa0f01419c5327f149d5bd5ab16c4ba9b2af0a8f42b1a1872991a6e4da
+DIST cfn_lint-1.22.0.tar.gz 2744603 BLAKE2B 
f4ae73ce051e8bb25fcacc4f258bb687266696622bf9f6cf80246cab7618ae289d9b2bd8da565c9696195c383fc0fc78419fa5e9018675cb81afe77ae9855c94
 SHA512 
54ae5143a94a5afcd38620568b16d899dd7784c99581202a54650bdfde86fe7564bbf320d9b47875df5b5fd94aa9e6fa2a01f847651c45e1396a203cbd8b4d10

diff --git a/dev-python/cfn-lint/cfn-lint-1.22.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.22.0.ebuild
new file mode 100644
index ..55b02df4cc9d
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.22.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-09 Thread Michał Górny
commit: 97e642bae01f25bc5d748e7e5282fc2d7a16b86e
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 10 03:39:13 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 10 04:34:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e642ba

dev-python/cfn-lint: Bump to 1.21.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.21.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index a9c868dc478c..617f8b8697f2 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b
 DIST cfn_lint-1.20.2.tar.gz 2734631 BLAKE2B 
1935793ad1438f5fc4f217390541b476192ab68a6d1614d7322eca1981b7d3712d85c090394eec2e8d2f2c15bb3798a148987613a3fe71fdc4355a57bf31a836
 SHA512 
e327e703cd96cd1d4d9342525cdccde3f11373ad5624a6a6b9ba16f76fa1b12be83b8f6a5118c0ceb947dada7a5bd30f8bf6434f4e61cbfc8bfa0dd8cf49ece9
+DIST cfn_lint-1.21.0.tar.gz 2747268 BLAKE2B 
580fffc95d5829374f1dda111e2cc805639a463514112cabe0e34b6f53344991819f81b8246adb9fe3ee8fe59ee5db9000befead7a21ce85694bac248589a72a
 SHA512 
2091f02a30ee22313db52094e9f54e5978eca69aa0c0cc96e1e39cae720f04165b4ff2aa0f01419c5327f149d5bd5ab16c4ba9b2af0a8f42b1a1872991a6e4da

diff --git a/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild
new file mode 100644
index ..55b02df4cc9d
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.21.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-07 Thread Michał Górny
commit: 46170df86b85fba80f97798356fd3fbca423099c
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec  7 09:59:43 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec  7 11:35:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46170df8

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  2 -
 dev-python/cfn-lint/cfn-lint-1.20.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.20.1.ebuild | 70 --
 3 files changed, 142 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 12f037bf4174..a9c868dc478c 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,4 +1,2 @@
 DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b
-DIST cfn_lint-1.20.0.tar.gz 2879582 BLAKE2B 
da387ad8c8f7425c37106976a9dafe205206559971d847b897e245e283b3cd13179e7033b3e32e0b764b75b1b3d10d23764f84700d4e857fe727a3681b1ff1b2
 SHA512 
724d1f6ac67d9c1f975f8716d1df1a5ee9f8674a1f3851dad3ad0f5bead8226212012aa3d258ce1cb477904fea6c91c59f6b28291fd846de80fa1c7b3ea1d90f
-DIST cfn_lint-1.20.1.tar.gz 2799223 BLAKE2B 
3accc016e5ce688e5e9200247b8d8361c6e367a60c3e8d3de38db079cc6516b50ce6acd773185f89b68b9302ace88eaaf380dbe564b12b43e7b5721509c4e70a
 SHA512 
75d19d65b562737121a4bdca430f177e80a10f685f4cda78c0189ac26fd8bba3c5eee090e8ebd2146f08dbc47d9c24783dce6d89de1ae2712cb2f831e235599e
 DIST cfn_lint-1.20.2.tar.gz 2734631 BLAKE2B 
1935793ad1438f5fc4f217390541b476192ab68a6d1614d7322eca1981b7d3712d85c090394eec2e8d2f2c15bb3798a148987613a3fe71fdc4355a57bf31a836
 SHA512 
e327e703cd96cd1d4d9342525cdccde3f11373ad5624a6a6b9ba16f76fa1b12be83b8f6a5118c0ceb947dada7a5bd30f8bf6434f4e61cbfc8bfa0dd8cf49ece9

diff --git a/dev-python/cfn-lint/cfn-lint-1.20.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.20.0.ebuild
deleted file mode 100644
index 7b09c2f1dc91..
--- a/dev-python/cfn-lint/cfn-lint-1.20.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.92.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
-   # different graphviz version?
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}

diff --git a/dev-python/cfn-lint/cfn-lint-1.20.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.20.1.ebuild
deleted file mode 100644
index 55b02df4cc9d..
--- a/dev-python/cfn-lint/cfn-lint-1.20.1

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-12-02 Thread Michał Górny
commit: 42710c4ae50bdc7692f4a4742cb3d6eae659fd99
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec  3 04:01:13 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec  3 04:26:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42710c4a

dev-python/cfn-lint: Bump to 1.20.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.20.2.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 1fdb79d2396e..12f037bf4174 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b
 DIST cfn_lint-1.20.0.tar.gz 2879582 BLAKE2B 
da387ad8c8f7425c37106976a9dafe205206559971d847b897e245e283b3cd13179e7033b3e32e0b764b75b1b3d10d23764f84700d4e857fe727a3681b1ff1b2
 SHA512 
724d1f6ac67d9c1f975f8716d1df1a5ee9f8674a1f3851dad3ad0f5bead8226212012aa3d258ce1cb477904fea6c91c59f6b28291fd846de80fa1c7b3ea1d90f
 DIST cfn_lint-1.20.1.tar.gz 2799223 BLAKE2B 
3accc016e5ce688e5e9200247b8d8361c6e367a60c3e8d3de38db079cc6516b50ce6acd773185f89b68b9302ace88eaaf380dbe564b12b43e7b5721509c4e70a
 SHA512 
75d19d65b562737121a4bdca430f177e80a10f685f4cda78c0189ac26fd8bba3c5eee090e8ebd2146f08dbc47d9c24783dce6d89de1ae2712cb2f831e235599e
+DIST cfn_lint-1.20.2.tar.gz 2734631 BLAKE2B 
1935793ad1438f5fc4f217390541b476192ab68a6d1614d7322eca1981b7d3712d85c090394eec2e8d2f2c15bb3798a148987613a3fe71fdc4355a57bf31a836
 SHA512 
e327e703cd96cd1d4d9342525cdccde3f11373ad5624a6a6b9ba16f76fa1b12be83b8f6a5118c0ceb947dada7a5bd30f8bf6434f4e61cbfc8bfa0dd8cf49ece9

diff --git a/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild
new file mode 100644
index ..55b02df4cc9d
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.20.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-11-26 Thread Michał Górny
commit: 9fba03a74b778758b754512eda6f2ed00a9cd84b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 27 04:27:58 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 27 05:47:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fba03a7

dev-python/cfn-lint: Bump to 1.20.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.20.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 9f94e257665a..1fdb79d2396e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b
 DIST cfn_lint-1.20.0.tar.gz 2879582 BLAKE2B 
da387ad8c8f7425c37106976a9dafe205206559971d847b897e245e283b3cd13179e7033b3e32e0b764b75b1b3d10d23764f84700d4e857fe727a3681b1ff1b2
 SHA512 
724d1f6ac67d9c1f975f8716d1df1a5ee9f8674a1f3851dad3ad0f5bead8226212012aa3d258ce1cb477904fea6c91c59f6b28291fd846de80fa1c7b3ea1d90f
+DIST cfn_lint-1.20.1.tar.gz 2799223 BLAKE2B 
3accc016e5ce688e5e9200247b8d8361c6e367a60c3e8d3de38db079cc6516b50ce6acd773185f89b68b9302ace88eaaf380dbe564b12b43e7b5721509c4e70a
 SHA512 
75d19d65b562737121a4bdca430f177e80a10f685f4cda78c0189ac26fd8bba3c5eee090e8ebd2146f08dbc47d9c24783dce6d89de1ae2712cb2f831e235599e

diff --git a/dev-python/cfn-lint/cfn-lint-1.20.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.20.1.ebuild
new file mode 100644
index ..55b02df4cc9d
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.20.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.94.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-11-23 Thread Michał Górny
commit: 2ee99a05953e8ab1650df6cda3baa30fd89e457e
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 23 10:05:02 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 23 10:08:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ee99a05

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.17.2.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.18.3.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.19.0.ebuild | 70 --
 4 files changed, 213 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index a6c32d75333e..9f94e257665a 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,5 +1,2 @@
-DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475cf25bd843e7de30b1d05d797e55d4189d9deba087f569f94f2f8fc40b11c3ecddcab1593432abf0da1bd26db6da9
 SHA512 
79fa133244cfe1239648209da9e8bbb2e50435bc5c18b6f998c90eb09536a760dfae62507123c22295098bf0866b1ef0ed05853debb00e651b75651921401530
-DIST cfn_lint-1.18.3.tar.gz 2768521 BLAKE2B 
277d52b6005e175bf87094dc6a0c71e660217db2665a03f1408ed03d67c2b72aefd0d2ed377869932aabeb351449eb6f7e05db3d8abebe94eed18b60d4c9c283
 SHA512 
27803f683f8f0440b71925a511fd9cd81c8a81c35a04b267a6f67833d40e2d1dca94f9c81bad507ede02c049ef5143372d5e9aa148ea5242b946d1cd3ac55a77
 DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b
-DIST cfn_lint-1.19.0.tar.gz 3074770 BLAKE2B 
955ad65135242dc0cc64de3495db59da204ab102817e1da2d2d654c0df0a5d5834b8e2aab91fe15dd08daecef00d46297dc76129ac4ed670fc291e7e69fd6908
 SHA512 
84115aa5131219e01d038b4a7dd12c1ea2ffce8fbc7e4af22bd8e031f980d342db20ceb4c9f27e96602df19cca10eba84dfd066742606e156357bdac97eefb19
 DIST cfn_lint-1.20.0.tar.gz 2879582 BLAKE2B 
da387ad8c8f7425c37106976a9dafe205206559971d847b897e245e283b3cd13179e7033b3e32e0b764b75b1b3d10d23764f84700d4e857fe727a3681b1ff1b2
 SHA512 
724d1f6ac67d9c1f975f8716d1df1a5ee9f8674a1f3851dad3ad0f5bead8226212012aa3d258ce1cb477904fea6c91c59f6b28291fd846de80fa1c7b3ea1d90f

diff --git a/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild
deleted file mode 100644
index b020827d82b1..
--- a/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
-   # different graphviz version?
-   
test/unit/module/template/test_templ

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-11-23 Thread Sam James
commit: a1dadc4d97f4b5841d89aa0a991123fe5ffdd41c
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 23 09:51:48 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 23 09:51:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1dadc4d

dev-python/cfn-lint: Stabilize 1.18.4 ALLARCHES, #944539

Signed-off-by: Sam James  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.18.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild
index 086f03ea08df..b020827d82b1 100644
--- a/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-11-18 Thread Michał Górny
commit: d74eaa79ab51d64339da13f15c9351dc593ce846
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov 19 04:11:51 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov 19 04:26:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d74eaa79

dev-python/cfn-lint: Bump to 1.20.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.20.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 33d11c788926..a6c32d75333e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475
 DIST cfn_lint-1.18.3.tar.gz 2768521 BLAKE2B 
277d52b6005e175bf87094dc6a0c71e660217db2665a03f1408ed03d67c2b72aefd0d2ed377869932aabeb351449eb6f7e05db3d8abebe94eed18b60d4c9c283
 SHA512 
27803f683f8f0440b71925a511fd9cd81c8a81c35a04b267a6f67833d40e2d1dca94f9c81bad507ede02c049ef5143372d5e9aa148ea5242b946d1cd3ac55a77
 DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b
 DIST cfn_lint-1.19.0.tar.gz 3074770 BLAKE2B 
955ad65135242dc0cc64de3495db59da204ab102817e1da2d2d654c0df0a5d5834b8e2aab91fe15dd08daecef00d46297dc76129ac4ed670fc291e7e69fd6908
 SHA512 
84115aa5131219e01d038b4a7dd12c1ea2ffce8fbc7e4af22bd8e031f980d342db20ceb4c9f27e96602df19cca10eba84dfd066742606e156357bdac97eefb19
+DIST cfn_lint-1.20.0.tar.gz 2879582 BLAKE2B 
da387ad8c8f7425c37106976a9dafe205206559971d847b897e245e283b3cd13179e7033b3e32e0b764b75b1b3d10d23764f84700d4e857fe727a3681b1ff1b2
 SHA512 
724d1f6ac67d9c1f975f8716d1df1a5ee9f8674a1f3851dad3ad0f5bead8226212012aa3d258ce1cb477904fea6c91c59f6b28291fd846de80fa1c7b3ea1d90f

diff --git a/dev-python/cfn-lint/cfn-lint-1.20.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.20.0.ebuild
new file mode 100644
index ..7b09c2f1dc91
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.20.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.92.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-11-13 Thread Michał Górny
commit: 7b38bd8057b2ddc0174a73c6ba9c22420edf699c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 13 06:00:48 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 13 06:55:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b38bd80

dev-python/cfn-lint: Bump to 1.19.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.19.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 4d5760ed3403..33d11c788926 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475cf25bd843e7de30b1d05d797e55d4189d9deba087f569f94f2f8fc40b11c3ecddcab1593432abf0da1bd26db6da9
 SHA512 
79fa133244cfe1239648209da9e8bbb2e50435bc5c18b6f998c90eb09536a760dfae62507123c22295098bf0866b1ef0ed05853debb00e651b75651921401530
 DIST cfn_lint-1.18.3.tar.gz 2768521 BLAKE2B 
277d52b6005e175bf87094dc6a0c71e660217db2665a03f1408ed03d67c2b72aefd0d2ed377869932aabeb351449eb6f7e05db3d8abebe94eed18b60d4c9c283
 SHA512 
27803f683f8f0440b71925a511fd9cd81c8a81c35a04b267a6f67833d40e2d1dca94f9c81bad507ede02c049ef5143372d5e9aa148ea5242b946d1cd3ac55a77
 DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b
+DIST cfn_lint-1.19.0.tar.gz 3074770 BLAKE2B 
955ad65135242dc0cc64de3495db59da204ab102817e1da2d2d654c0df0a5d5834b8e2aab91fe15dd08daecef00d46297dc76129ac4ed670fc291e7e69fd6908
 SHA512 
84115aa5131219e01d038b4a7dd12c1ea2ffce8fbc7e4af22bd8e031f980d342db20ceb4c9f27e96602df19cca10eba84dfd066742606e156357bdac97eefb19

diff --git a/dev-python/cfn-lint/cfn-lint-1.19.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.19.0.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.19.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-11-04 Thread Michał Górny
commit: 822c1152739d25b2f1b4f193b1565986eace71b4
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov  5 05:37:52 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov  5 05:53:28 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=822c1152

dev-python/cfn-lint: Bump to 1.18.4

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.18.4.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index f295fc04a7a0..4d5760ed3403 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,2 +1,3 @@
 DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475cf25bd843e7de30b1d05d797e55d4189d9deba087f569f94f2f8fc40b11c3ecddcab1593432abf0da1bd26db6da9
 SHA512 
79fa133244cfe1239648209da9e8bbb2e50435bc5c18b6f998c90eb09536a760dfae62507123c22295098bf0866b1ef0ed05853debb00e651b75651921401530
 DIST cfn_lint-1.18.3.tar.gz 2768521 BLAKE2B 
277d52b6005e175bf87094dc6a0c71e660217db2665a03f1408ed03d67c2b72aefd0d2ed377869932aabeb351449eb6f7e05db3d8abebe94eed18b60d4c9c283
 SHA512 
27803f683f8f0440b71925a511fd9cd81c8a81c35a04b267a6f67833d40e2d1dca94f9c81bad507ede02c049ef5143372d5e9aa148ea5242b946d1cd3ac55a77
+DIST cfn_lint-1.18.4.tar.gz 2788919 BLAKE2B 
c9815d61450d6afa6f054a305b90ceb14a2dd72206834fb64c8e51017cbcf02843dc83e909d1db0dfb183d7f059909a9b794e886745bbe48cac42dcf2c109150
 SHA512 
fc8ed928fa83d262000c141805734c788559f2ed7ad7b1b989771069cd8972c04dba67a8c4823cceb35ad70db19e28c5f36093cf42f86b232f35eeba8585c89b

diff --git a/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.18.4.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-11-02 Thread Michał Górny
commit: 5a204f4d6228cabebdf06fbbd4f89b95cc8e82dd
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  2 09:24:46 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  2 09:29:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a204f4d

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  5 ---
 dev-python/cfn-lint/cfn-lint-1.14.2.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.15.2.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.16.1.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.18.1.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.18.2.ebuild | 70 --
 6 files changed, 355 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 0471a8233edd..f295fc04a7a0 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,7 +1,2 @@
-DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
-DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae
-DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0cf81b8187f03de48e968872b0c993d40a56b7a6b5c751e252461ebe29b750cdc6405ebc4733020bcc28f8c6887be
 SHA512 
4348ef8b9cc125c71b62ced41ecc16d6aaba7c194a95e28bc99a1cc49e4a931f1e6726286a9f31fd7f0a4692861e62efb9cde4482762f230aea963866aa8081a
 DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475cf25bd843e7de30b1d05d797e55d4189d9deba087f569f94f2f8fc40b11c3ecddcab1593432abf0da1bd26db6da9
 SHA512 
79fa133244cfe1239648209da9e8bbb2e50435bc5c18b6f998c90eb09536a760dfae62507123c22295098bf0866b1ef0ed05853debb00e651b75651921401530
-DIST cfn_lint-1.18.1.tar.gz 2553280 BLAKE2B 
9dbe580c17a542e21f3d262dc531dff048d9c67bd1d5c04a5545aa0ea9d5169b5b9ed29622a07d15418c706bef39883418762a5e45beee35e19270bfc385e8e7
 SHA512 
31a800114c8e8f7e469bbc64a43000f63de092532171a419bf4a0c1ceaf6eb76c1c58d741b86d7a762320de2a89bb6796cf52c4d5edb83dcdf88d6a8ef0abbfe
-DIST cfn_lint-1.18.2.tar.gz 2742664 BLAKE2B 
e83933f8b9af6fefef84d9905be35772d7a62eebe86e75e4fae680b39588ec0e11dac418ddd41a7ac9d716a0e62c8e16671240d5d7971520e9d552d6dd1dce41
 SHA512 
c6eeaa7a7ce847233adcd6edde5166d304870ca01dc5b84bb5b9c5c1730fe820c7c33195ef34a3db581a66a0976b359f8f15a8c4677a8a37b5f11c2d2feea526
 DIST cfn_lint-1.18.3.tar.gz 2768521 BLAKE2B 
277d52b6005e175bf87094dc6a0c71e660217db2665a03f1408ed03d67c2b72aefd0d2ed377869932aabeb351449eb6f7e05db3d8abebe94eed18b60d4c9c283
 SHA512 
27803f683f8f0440b71925a511fd9cd81c8a81c35a04b267a6f67833d40e2d1dca94f9c81bad507ede02c049ef5143372d5e9aa148ea5242b946d1cd3ac55a77

diff --git a/dev-python/cfn-lint/cfn-lint-1.14.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.14.2.ebuild
deleted file mode 100644
index b020827d82b1..
--- a/dev-python/cfn-lint/cfn-lint-1.14.2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
- 

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-11-02 Thread Michał Górny
commit: 5bf201baed6ca38d1da0a3826a092d7e7b15bc56
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  2 09:22:25 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  2 09:22:40 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf201ba

dev-python/cfn-lint: Stabilize 1.17.2 ALLARCHES, #942699

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.17.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild
index 086f03ea08df..b020827d82b1 100644
--- a/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-30 Thread Michał Górny
commit: 280ddb9088bf34692841b899f47328f2e27f3ea7
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 31 05:05:14 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 31 05:17:55 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=280ddb90

dev-python/cfn-lint: Bump to 1.18.3

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.18.3.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index e4431f1cd23b..0471a8233edd 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -4,3 +4,4 @@ DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0
 DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475cf25bd843e7de30b1d05d797e55d4189d9deba087f569f94f2f8fc40b11c3ecddcab1593432abf0da1bd26db6da9
 SHA512 
79fa133244cfe1239648209da9e8bbb2e50435bc5c18b6f998c90eb09536a760dfae62507123c22295098bf0866b1ef0ed05853debb00e651b75651921401530
 DIST cfn_lint-1.18.1.tar.gz 2553280 BLAKE2B 
9dbe580c17a542e21f3d262dc531dff048d9c67bd1d5c04a5545aa0ea9d5169b5b9ed29622a07d15418c706bef39883418762a5e45beee35e19270bfc385e8e7
 SHA512 
31a800114c8e8f7e469bbc64a43000f63de092532171a419bf4a0c1ceaf6eb76c1c58d741b86d7a762320de2a89bb6796cf52c4d5edb83dcdf88d6a8ef0abbfe
 DIST cfn_lint-1.18.2.tar.gz 2742664 BLAKE2B 
e83933f8b9af6fefef84d9905be35772d7a62eebe86e75e4fae680b39588ec0e11dac418ddd41a7ac9d716a0e62c8e16671240d5d7971520e9d552d6dd1dce41
 SHA512 
c6eeaa7a7ce847233adcd6edde5166d304870ca01dc5b84bb5b9c5c1730fe820c7c33195ef34a3db581a66a0976b359f8f15a8c4677a8a37b5f11c2d2feea526
+DIST cfn_lint-1.18.3.tar.gz 2768521 BLAKE2B 
277d52b6005e175bf87094dc6a0c71e660217db2665a03f1408ed03d67c2b72aefd0d2ed377869932aabeb351449eb6f7e05db3d8abebe94eed18b60d4c9c283
 SHA512 
27803f683f8f0440b71925a511fd9cd81c8a81c35a04b267a6f67833d40e2d1dca94f9c81bad507ede02c049ef5143372d5e9aa148ea5242b946d1cd3ac55a77

diff --git a/dev-python/cfn-lint/cfn-lint-1.18.3.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.18.3.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.18.3.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-28 Thread Michał Górny
commit: 18f5fd0b7c35a602c027497f0c79051520f4554b
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Oct 29 05:22:23 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct 29 06:51:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f5fd0b

dev-python/cfn-lint: Bump to 1.18.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.18.2.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 66a418114a25..e4431f1cd23b 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -3,3 +3,4 @@ DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db
 DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0cf81b8187f03de48e968872b0c993d40a56b7a6b5c751e252461ebe29b750cdc6405ebc4733020bcc28f8c6887be
 SHA512 
4348ef8b9cc125c71b62ced41ecc16d6aaba7c194a95e28bc99a1cc49e4a931f1e6726286a9f31fd7f0a4692861e62efb9cde4482762f230aea963866aa8081a
 DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475cf25bd843e7de30b1d05d797e55d4189d9deba087f569f94f2f8fc40b11c3ecddcab1593432abf0da1bd26db6da9
 SHA512 
79fa133244cfe1239648209da9e8bbb2e50435bc5c18b6f998c90eb09536a760dfae62507123c22295098bf0866b1ef0ed05853debb00e651b75651921401530
 DIST cfn_lint-1.18.1.tar.gz 2553280 BLAKE2B 
9dbe580c17a542e21f3d262dc531dff048d9c67bd1d5c04a5545aa0ea9d5169b5b9ed29622a07d15418c706bef39883418762a5e45beee35e19270bfc385e8e7
 SHA512 
31a800114c8e8f7e469bbc64a43000f63de092532171a419bf4a0c1ceaf6eb76c1c58d741b86d7a762320de2a89bb6796cf52c4d5edb83dcdf88d6a8ef0abbfe
+DIST cfn_lint-1.18.2.tar.gz 2742664 BLAKE2B 
e83933f8b9af6fefef84d9905be35772d7a62eebe86e75e4fae680b39588ec0e11dac418ddd41a7ac9d716a0e62c8e16671240d5d7971520e9d552d6dd1dce41
 SHA512 
c6eeaa7a7ce847233adcd6edde5166d304870ca01dc5b84bb5b9c5c1730fe820c7c33195ef34a3db581a66a0976b359f8f15a8c4677a8a37b5f11c2d2feea526

diff --git a/dev-python/cfn-lint/cfn-lint-1.18.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.18.2.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.18.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-21 Thread Michał Górny
commit: 72f0b3add03d70274e451d8a9dc9d43f64466fb2
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Oct 22 03:06:38 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct 22 03:06:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f0b3ad

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  2 -
 dev-python/cfn-lint/cfn-lint-1.17.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.17.1.ebuild | 70 --
 3 files changed, 142 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index f6fa4ce00fe7..7c4cd13751aa 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,6 +1,4 @@
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
 DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae
 DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0cf81b8187f03de48e968872b0c993d40a56b7a6b5c751e252461ebe29b750cdc6405ebc4733020bcc28f8c6887be
 SHA512 
4348ef8b9cc125c71b62ced41ecc16d6aaba7c194a95e28bc99a1cc49e4a931f1e6726286a9f31fd7f0a4692861e62efb9cde4482762f230aea963866aa8081a
-DIST cfn_lint-1.17.0.tar.gz 2526551 BLAKE2B 
d1e57328317625cd31594662071c6a2c065ef74a8d836b4be1560f1023c9efb758add82f07ddfa60fc4be508a0efc7eef3850433ae05116bfa5d1efd6e9a0076
 SHA512 
cb3bc0f2ef38a7ea652c9cd94fae9ccf940924131fe03c49e5a58d28174ea4b900b90d342ef1c7f8287b9ce1c1889086b6c5ffbed12a40b4fb01861193ba6862
-DIST cfn_lint-1.17.1.tar.gz 2526513 BLAKE2B 
fd59bd81e51e000c5360298b1e865b90dd7b517c349fab660078d13b84bca3cc688bcea021463a257a4fd81d9abebe51d08b863a5d915c4e16e7b457dfb0ca44
 SHA512 
745034c521f064fc2ec53bc6ccc8f992847987721d2b3f52f0c646e8ee9369563d27f331d9fcc10f8427b515b5277cde1c6917641df2c610190ede296cfa3a28
 DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475cf25bd843e7de30b1d05d797e55d4189d9deba087f569f94f2f8fc40b11c3ecddcab1593432abf0da1bd26db6da9
 SHA512 
79fa133244cfe1239648209da9e8bbb2e50435bc5c18b6f998c90eb09536a760dfae62507123c22295098bf0866b1ef0ed05853debb00e651b75651921401530

diff --git a/dev-python/cfn-lint/cfn-lint-1.17.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.17.0.ebuild
deleted file mode 100644
index 086f03ea08df..
--- a/dev-python/cfn-lint/cfn-lint-1.17.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-21 Thread Michał Górny
commit: 73d2da69b0deaac87431f9184e518e2580f8f688
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Oct 22 03:07:10 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct 22 03:07:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73d2da69

dev-python/cfn-lint: Bump to 1.18.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.18.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 7c4cd13751aa..66a418114a25 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330
 DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae
 DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0cf81b8187f03de48e968872b0c993d40a56b7a6b5c751e252461ebe29b750cdc6405ebc4733020bcc28f8c6887be
 SHA512 
4348ef8b9cc125c71b62ced41ecc16d6aaba7c194a95e28bc99a1cc49e4a931f1e6726286a9f31fd7f0a4692861e62efb9cde4482762f230aea963866aa8081a
 DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475cf25bd843e7de30b1d05d797e55d4189d9deba087f569f94f2f8fc40b11c3ecddcab1593432abf0da1bd26db6da9
 SHA512 
79fa133244cfe1239648209da9e8bbb2e50435bc5c18b6f998c90eb09536a760dfae62507123c22295098bf0866b1ef0ed05853debb00e651b75651921401530
+DIST cfn_lint-1.18.1.tar.gz 2553280 BLAKE2B 
9dbe580c17a542e21f3d262dc531dff048d9c67bd1d5c04a5545aa0ea9d5169b5b9ed29622a07d15418c706bef39883418762a5e45beee35e19270bfc385e8e7
 SHA512 
31a800114c8e8f7e469bbc64a43000f63de092532171a419bf4a0c1ceaf6eb76c1c58d741b86d7a762320de2a89bb6796cf52c4d5edb83dcdf88d6a8ef0abbfe

diff --git a/dev-python/cfn-lint/cfn-lint-1.18.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.18.1.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.18.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-18 Thread Michał Górny
commit: 3400117565275519a2a8bd5e72b26f2ef411b971
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Oct 19 05:36:42 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Oct 19 06:03:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34001175

dev-python/cfn-lint: Bump to 1.17.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.17.2.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index e2e736681d78..f6fa4ce00fe7 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -3,3 +3,4 @@ DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db
 DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0cf81b8187f03de48e968872b0c993d40a56b7a6b5c751e252461ebe29b750cdc6405ebc4733020bcc28f8c6887be
 SHA512 
4348ef8b9cc125c71b62ced41ecc16d6aaba7c194a95e28bc99a1cc49e4a931f1e6726286a9f31fd7f0a4692861e62efb9cde4482762f230aea963866aa8081a
 DIST cfn_lint-1.17.0.tar.gz 2526551 BLAKE2B 
d1e57328317625cd31594662071c6a2c065ef74a8d836b4be1560f1023c9efb758add82f07ddfa60fc4be508a0efc7eef3850433ae05116bfa5d1efd6e9a0076
 SHA512 
cb3bc0f2ef38a7ea652c9cd94fae9ccf940924131fe03c49e5a58d28174ea4b900b90d342ef1c7f8287b9ce1c1889086b6c5ffbed12a40b4fb01861193ba6862
 DIST cfn_lint-1.17.1.tar.gz 2526513 BLAKE2B 
fd59bd81e51e000c5360298b1e865b90dd7b517c349fab660078d13b84bca3cc688bcea021463a257a4fd81d9abebe51d08b863a5d915c4e16e7b457dfb0ca44
 SHA512 
745034c521f064fc2ec53bc6ccc8f992847987721d2b3f52f0c646e8ee9369563d27f331d9fcc10f8427b515b5277cde1c6917641df2c610190ede296cfa3a28
+DIST cfn_lint-1.17.2.tar.gz 2526962 BLAKE2B 
76feefa1bcce6a0957ce028d6041ac49b475cf25bd843e7de30b1d05d797e55d4189d9deba087f569f94f2f8fc40b11c3ecddcab1593432abf0da1bd26db6da9
 SHA512 
79fa133244cfe1239648209da9e8bbb2e50435bc5c18b6f998c90eb09536a760dfae62507123c22295098bf0866b1ef0ed05853debb00e651b75651921401530

diff --git a/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.17.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-17 Thread Michał Górny
commit: bc7db4d6da9784f71b55e7febcd7c6ea0dca63c2
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 18 04:16:01 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 18 04:16:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc7db4d6

dev-python/cfn-lint: Bump to 1.17.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.17.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index f03ac15ead86..e2e736681d78 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330
 DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae
 DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0cf81b8187f03de48e968872b0c993d40a56b7a6b5c751e252461ebe29b750cdc6405ebc4733020bcc28f8c6887be
 SHA512 
4348ef8b9cc125c71b62ced41ecc16d6aaba7c194a95e28bc99a1cc49e4a931f1e6726286a9f31fd7f0a4692861e62efb9cde4482762f230aea963866aa8081a
 DIST cfn_lint-1.17.0.tar.gz 2526551 BLAKE2B 
d1e57328317625cd31594662071c6a2c065ef74a8d836b4be1560f1023c9efb758add82f07ddfa60fc4be508a0efc7eef3850433ae05116bfa5d1efd6e9a0076
 SHA512 
cb3bc0f2ef38a7ea652c9cd94fae9ccf940924131fe03c49e5a58d28174ea4b900b90d342ef1c7f8287b9ce1c1889086b6c5ffbed12a40b4fb01861193ba6862
+DIST cfn_lint-1.17.1.tar.gz 2526513 BLAKE2B 
fd59bd81e51e000c5360298b1e865b90dd7b517c349fab660078d13b84bca3cc688bcea021463a257a4fd81d9abebe51d08b863a5d915c4e16e7b457dfb0ca44
 SHA512 
745034c521f064fc2ec53bc6ccc8f992847987721d2b3f52f0c646e8ee9369563d27f331d9fcc10f8427b515b5277cde1c6917641df2c610190ede296cfa3a28

diff --git a/dev-python/cfn-lint/cfn-lint-1.17.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.17.1.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.17.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-17 Thread Michał Górny
commit: 6d1d021c80e0f41678e8958023f15616d51c41c9
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 17 16:18:23 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 17 17:03:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d1d021c

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 -
 dev-python/cfn-lint/cfn-lint-1.16.0.ebuild | 70 --
 2 files changed, 71 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 656225399d2e..509d9950a194 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,4 +1,3 @@
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
 DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae
-DIST cfn_lint-1.16.0.tar.gz 2428959 BLAKE2B 
3bfd381d0f39fbbb33e37ad59dd8714d706ecb552d90011483b2e61135168d7f3faca46a34a612522159a7615843fb75a6fbcc416049e137be2057a80285ae13
 SHA512 
6b35110bdbbc86509ec455e950d5cb941daa4a4c5fbf9d50f472cf8e263632cf0af7456125017bbf0639983daa4e8d21ac56c2d849e90ba49bd152c21f4fdff1
 DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0cf81b8187f03de48e968872b0c993d40a56b7a6b5c751e252461ebe29b750cdc6405ebc4733020bcc28f8c6887be
 SHA512 
4348ef8b9cc125c71b62ced41ecc16d6aaba7c194a95e28bc99a1cc49e4a931f1e6726286a9f31fd7f0a4692861e62efb9cde4482762f230aea963866aa8081a

diff --git a/dev-python/cfn-lint/cfn-lint-1.16.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.16.0.ebuild
deleted file mode 100644
index 086f03ea08df..
--- a/dev-python/cfn-lint/cfn-lint-1.16.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
-   # different graphviz version?
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   )
-
-   # from tox.ini
-   local -x AWS_DEFAULT_REGION=us-east-1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-17 Thread Michał Górny
commit: 0f4296601541436768a6b779e8ffb0766a72bdde
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 17 16:18:53 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 17 17:03:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f429660

dev-python/cfn-lint: Bump to 1.17.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.17.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 509d9950a194..f03ac15ead86 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
 DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae
 DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0cf81b8187f03de48e968872b0c993d40a56b7a6b5c751e252461ebe29b750cdc6405ebc4733020bcc28f8c6887be
 SHA512 
4348ef8b9cc125c71b62ced41ecc16d6aaba7c194a95e28bc99a1cc49e4a931f1e6726286a9f31fd7f0a4692861e62efb9cde4482762f230aea963866aa8081a
+DIST cfn_lint-1.17.0.tar.gz 2526551 BLAKE2B 
d1e57328317625cd31594662071c6a2c065ef74a8d836b4be1560f1023c9efb758add82f07ddfa60fc4be508a0efc7eef3850433ae05116bfa5d1efd6e9a0076
 SHA512 
cb3bc0f2ef38a7ea652c9cd94fae9ccf940924131fe03c49e5a58d28174ea4b900b90d342ef1c7f8287b9ce1c1889086b6c5ffbed12a40b4fb01861193ba6862

diff --git a/dev-python/cfn-lint/cfn-lint-1.17.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.17.0.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.17.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-10 Thread Michał Górny
commit: 509acb5b91ef05913bdff00c9532965b6814d451
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 11 02:56:39 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 11 03:05:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=509acb5b

dev-python/cfn-lint: Bump to 1.16.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.16.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index d2c5964ab10e..656225399d2e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
 DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae
 DIST cfn_lint-1.16.0.tar.gz 2428959 BLAKE2B 
3bfd381d0f39fbbb33e37ad59dd8714d706ecb552d90011483b2e61135168d7f3faca46a34a612522159a7615843fb75a6fbcc416049e137be2057a80285ae13
 SHA512 
6b35110bdbbc86509ec455e950d5cb941daa4a4c5fbf9d50f472cf8e263632cf0af7456125017bbf0639983daa4e8d21ac56c2d849e90ba49bd152c21f4fdff1
+DIST cfn_lint-1.16.1.tar.gz 2328621 BLAKE2B 
034738d924ac720a1e85569d65afd47c4cf0cf81b8187f03de48e968872b0c993d40a56b7a6b5c751e252461ebe29b750cdc6405ebc4733020bcc28f8c6887be
 SHA512 
4348ef8b9cc125c71b62ced41ecc16d6aaba7c194a95e28bc99a1cc49e4a931f1e6726286a9f31fd7f0a4692861e62efb9cde4482762f230aea963866aa8081a

diff --git a/dev-python/cfn-lint/cfn-lint-1.16.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.16.1.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.16.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-05 Thread Michał Górny
commit: 865dd278745ddbeaf493fac55ae5a069d8f5cd22
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Oct  5 08:01:10 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Oct  5 08:01:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=865dd278

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  2 -
 dev-python/cfn-lint/cfn-lint-1.13.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.15.1.ebuild | 70 --
 3 files changed, 142 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index b7e018dfbbe8..d2c5964ab10e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,5 +1,3 @@
-DIST cfn_lint-1.13.0.tar.gz 2378100 BLAKE2B 
a1fa12fe13df1f3f8c5e533c138036df7e2eae325641e7fd66a050a3bb81718caf353d867bf7bbc765942a93bb9025a97bd9691a5759f59118296c23daf7466e
 SHA512 
eeec69657907cc145e533c390987f25374e9019a4c493d3a8ad98123f8db9445bac4890cbaef59b15af752d5a3437f75ea1687bc167198aec81ebb0a3c1ab097
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
-DIST cfn_lint-1.15.1.tar.gz 2341705 BLAKE2B 
b294be688b45c1c3b8bba3d0c1e706330b9f29a55f8c1f5b146c0c7a964c10d01af1082bace390115298dd327a33e23d1e859ab8dcbb95479496073102efcc14
 SHA512 
76b6a5a2e5d7088ad55a67e13915b7f3deb7ebd9594c9fe3489368f8c0bad7d86bfc05e7eb76942669d8839f8b3bb2b45bb83d8e6c466f184509d8409c12f4aa
 DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae
 DIST cfn_lint-1.16.0.tar.gz 2428959 BLAKE2B 
3bfd381d0f39fbbb33e37ad59dd8714d706ecb552d90011483b2e61135168d7f3faca46a34a612522159a7615843fb75a6fbcc416049e137be2057a80285ae13
 SHA512 
6b35110bdbbc86509ec455e950d5cb941daa4a4c5fbf9d50f472cf8e263632cf0af7456125017bbf0639983daa4e8d21ac56c2d849e90ba49bd152c21f4fdff1

diff --git a/dev-python/cfn-lint/cfn-lint-1.13.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.13.0.ebuild
deleted file mode 100644
index b020827d82b1..
--- a/dev-python/cfn-lint/cfn-lint-1.13.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
-   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
-   # different graphviz version?
-   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
-   )
-
-   # from tox.ini
-  

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-05 Thread Arthur Zamarin
commit: c6c620444e835744b36a66a1353aec3fc3e42520
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Oct  5 07:58:24 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Oct  5 07:58:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6c62044

dev-python/cfn-lint: Stabilize 1.14.2 ALLARCHES, #940814

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.14.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.14.2.ebuild
index 086f03ea08df..b020827d82b1 100644
--- a/dev-python/cfn-lint/cfn-lint-1.14.2.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.14.2.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-10-03 Thread Michał Górny
commit: 3499786ae5616679812d0ca4622cd4813a9200e5
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct  4 02:43:59 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct  4 03:12:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3499786a

dev-python/cfn-lint: Bump to 1.16.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.16.0.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 050ef4ec231c..b7e018dfbbe8 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn_lint-1.13.0.tar.gz 2378100 BLAKE2B 
a1fa12fe13df1f3f8c5e533c138036df7e2e
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
 DIST cfn_lint-1.15.1.tar.gz 2341705 BLAKE2B 
b294be688b45c1c3b8bba3d0c1e706330b9f29a55f8c1f5b146c0c7a964c10d01af1082bace390115298dd327a33e23d1e859ab8dcbb95479496073102efcc14
 SHA512 
76b6a5a2e5d7088ad55a67e13915b7f3deb7ebd9594c9fe3489368f8c0bad7d86bfc05e7eb76942669d8839f8b3bb2b45bb83d8e6c466f184509d8409c12f4aa
 DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae
+DIST cfn_lint-1.16.0.tar.gz 2428959 BLAKE2B 
3bfd381d0f39fbbb33e37ad59dd8714d706ecb552d90011483b2e61135168d7f3faca46a34a612522159a7615843fb75a6fbcc416049e137be2057a80285ae13
 SHA512 
6b35110bdbbc86509ec455e950d5cb941daa4a4c5fbf9d50f472cf8e263632cf0af7456125017bbf0639983daa4e8d21ac56c2d849e90ba49bd152c21f4fdff1

diff --git a/dev-python/cfn-lint/cfn-lint-1.16.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.16.0.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.16.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-09-30 Thread Michał Górny
commit: 6b105f720b5b4f5750012856ccd969faccc7529a
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Oct  1 03:57:38 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Oct  1 04:15:39 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b105f72

dev-python/cfn-lint: Bump to 1.15.2

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.15.2.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 4ad40aaf1b1e..050ef4ec231c 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,3 +1,4 @@
 DIST cfn_lint-1.13.0.tar.gz 2378100 BLAKE2B 
a1fa12fe13df1f3f8c5e533c138036df7e2eae325641e7fd66a050a3bb81718caf353d867bf7bbc765942a93bb9025a97bd9691a5759f59118296c23daf7466e
 SHA512 
eeec69657907cc145e533c390987f25374e9019a4c493d3a8ad98123f8db9445bac4890cbaef59b15af752d5a3437f75ea1687bc167198aec81ebb0a3c1ab097
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
 DIST cfn_lint-1.15.1.tar.gz 2341705 BLAKE2B 
b294be688b45c1c3b8bba3d0c1e706330b9f29a55f8c1f5b146c0c7a964c10d01af1082bace390115298dd327a33e23d1e859ab8dcbb95479496073102efcc14
 SHA512 
76b6a5a2e5d7088ad55a67e13915b7f3deb7ebd9594c9fe3489368f8c0bad7d86bfc05e7eb76942669d8839f8b3bb2b45bb83d8e6c466f184509d8409c12f4aa
+DIST cfn_lint-1.15.2.tar.gz 2444882 BLAKE2B 
bb1e47da23087a667cfc3a1a36af962ad0db35332209651a0cf3d235630995ba35d46ababa1aba66587827cf913dfc347418b14c47f797ccf895143ffa8aea80
 SHA512 
077c1384a49d59bb0379c6ee8e09b8c0fdbb78a3c2c0e47d8b72e078ee4d40715b6ea4bbf7fdd053a6bb0d822a099a190554399d73eb0a31490f475af2ac1dae

diff --git a/dev-python/cfn-lint/cfn-lint-1.15.2.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.15.2.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.15.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-09-28 Thread Michał Górny
commit: d143749e846e7daea1b25c160f6b0090ce4c55a1
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep 28 12:44:03 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep 28 12:59:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d143749e

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  3 --
 dev-python/cfn-lint/cfn-lint-1.11.1.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.12.4.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.15.0.ebuild | 70 --
 4 files changed, 213 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 0bf21914b8b6..4ad40aaf1b1e 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,6 +1,3 @@
-DIST cfn_lint-1.11.1.tar.gz 2415408 BLAKE2B 
c164f6cd520e4106ff9cfaaffdcb66860c3e66060aad484a488f22a304c56c5a365389e63f948d647e37e10ead5f6c8e5bb435c842377e4db122805d7bab218c
 SHA512 
c8295874345b2a561e521b732031558ff4d1de11fcd912940955301f0c4d1923d11d7d8f2cf5a90c3c540d3b28dbcd9f18fb01778fa9678e3fe6722d732d4014
-DIST cfn_lint-1.12.4.tar.gz 2870663 BLAKE2B 
90b1c2682a143108f077b1239171cb410657a33f1970e1f9fbc06774d1301ad0c28e364d7cf60163cb1d62a3c24221595e722db1fda5b79aebfd4fb321008396
 SHA512 
04092142a5de5da4cf2e94fe425c696cee3fd438fb569faa16bd390f3f3b8bfee63397a2aeedca99950eb656916b04456d59f2069c8479ce4c8acdffae01018a
 DIST cfn_lint-1.13.0.tar.gz 2378100 BLAKE2B 
a1fa12fe13df1f3f8c5e533c138036df7e2eae325641e7fd66a050a3bb81718caf353d867bf7bbc765942a93bb9025a97bd9691a5759f59118296c23daf7466e
 SHA512 
eeec69657907cc145e533c390987f25374e9019a4c493d3a8ad98123f8db9445bac4890cbaef59b15af752d5a3437f75ea1687bc167198aec81ebb0a3c1ab097
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
-DIST cfn_lint-1.15.0.tar.gz 2340540 BLAKE2B 
4cf6e93e97442691d97107144d560ece21281321cc1e694c386a4f012fcdf7b563707812f4130933bd23262c88bb045f8fb3bb7b9be2ebdc012b111f3d7df8b0
 SHA512 
80305de541924c7a46dfbb5f3a5a84422071726584e7e43b5be76151d6b2e012ffbaba2b448b476a5dca41f55ab5f95b8e45554158f820755495686ae1a55d3f
 DIST cfn_lint-1.15.1.tar.gz 2341705 BLAKE2B 
b294be688b45c1c3b8bba3d0c1e706330b9f29a55f8c1f5b146c0c7a964c10d01af1082bace390115298dd327a33e23d1e859ab8dcbb95479496073102efcc14
 SHA512 
76b6a5a2e5d7088ad55a67e13915b7f3deb7ebd9594c9fe3489368f8c0bad7d86bfc05e7eb76942669d8839f8b3bb2b45bb83d8e6c466f184509d8409c12f4aa

diff --git a/dev-python/cfn-lint/cfn-lint-1.11.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.11.1.ebuild
deleted file mode 100644
index b020827d82b1..
--- a/dev-python/cfn-lint/cfn-lint-1.11.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
-   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
-   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
-   
test/unit/module/core/test_run_cli.py::TestCli

[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-09-28 Thread Arthur Zamarin
commit: df877508338812eb3d6b214d8d47f3d525182aeb
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Sep 28 12:32:28 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Sep 28 12:32:28 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df877508

dev-python/cfn-lint: Stabilize 1.13.0 ALLARCHES, #940401

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/cfn-lint/cfn-lint-1.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cfn-lint/cfn-lint-1.13.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.13.0.ebuild
index 086f03ea08df..b020827d82b1 100644
--- a/dev-python/cfn-lint/cfn-lint-1.13.0.ebuild
+++ b/dev-python/cfn-lint/cfn-lint-1.13.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-09-24 Thread Michał Górny
commit: 03668a180f8dbfd1e963dbeece81bed19547b057
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Sep 25 04:01:03 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Sep 25 04:39:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03668a18

dev-python/cfn-lint: Bump to 1.15.1

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-1.15.1.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 0c15eda84c5f..0bf21914b8b6 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -3,3 +3,4 @@ DIST cfn_lint-1.12.4.tar.gz 2870663 BLAKE2B 
90b1c2682a143108f077b1239171cb410657
 DIST cfn_lint-1.13.0.tar.gz 2378100 BLAKE2B 
a1fa12fe13df1f3f8c5e533c138036df7e2eae325641e7fd66a050a3bb81718caf353d867bf7bbc765942a93bb9025a97bd9691a5759f59118296c23daf7466e
 SHA512 
eeec69657907cc145e533c390987f25374e9019a4c493d3a8ad98123f8db9445bac4890cbaef59b15af752d5a3437f75ea1687bc167198aec81ebb0a3c1ab097
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
 DIST cfn_lint-1.15.0.tar.gz 2340540 BLAKE2B 
4cf6e93e97442691d97107144d560ece21281321cc1e694c386a4f012fcdf7b563707812f4130933bd23262c88bb045f8fb3bb7b9be2ebdc012b111f3d7df8b0
 SHA512 
80305de541924c7a46dfbb5f3a5a84422071726584e7e43b5be76151d6b2e012ffbaba2b448b476a5dca41f55ab5f95b8e45554158f820755495686ae1a55d3f
+DIST cfn_lint-1.15.1.tar.gz 2341705 BLAKE2B 
b294be688b45c1c3b8bba3d0c1e706330b9f29a55f8c1f5b146c0c7a964c10d01af1082bace390115298dd327a33e23d1e859ab8dcbb95479496073102efcc14
 SHA512 
76b6a5a2e5d7088ad55a67e13915b7f3deb7ebd9594c9fe3489368f8c0bad7d86bfc05e7eb76942669d8839f8b3bb2b45bb83d8e6c466f184509d8409c12f4aa

diff --git a/dev-python/cfn-lint/cfn-lint-1.15.1.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.15.1.ebuild
new file mode 100644
index ..086f03ea08df
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-1.15.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
+   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
+   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   # different graphviz version?
+   
test/unit/module/template/test_template.py::TestTemplate::test_build_graph
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/cfn-lint/

2024-09-24 Thread Michał Górny
commit: 4d384d8204539c99c1e385b6aefe94ef616417b7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Sep 25 04:00:30 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Sep 25 04:39:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d384d82

dev-python/cfn-lint: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/cfn-lint/Manifest   |  2 -
 dev-python/cfn-lint/cfn-lint-1.14.0.ebuild | 70 --
 dev-python/cfn-lint/cfn-lint-1.14.1.ebuild | 70 --
 3 files changed, 142 deletions(-)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 03535b280e16..0c15eda84c5f 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -1,7 +1,5 @@
 DIST cfn_lint-1.11.1.tar.gz 2415408 BLAKE2B 
c164f6cd520e4106ff9cfaaffdcb66860c3e66060aad484a488f22a304c56c5a365389e63f948d647e37e10ead5f6c8e5bb435c842377e4db122805d7bab218c
 SHA512 
c8295874345b2a561e521b732031558ff4d1de11fcd912940955301f0c4d1923d11d7d8f2cf5a90c3c540d3b28dbcd9f18fb01778fa9678e3fe6722d732d4014
 DIST cfn_lint-1.12.4.tar.gz 2870663 BLAKE2B 
90b1c2682a143108f077b1239171cb410657a33f1970e1f9fbc06774d1301ad0c28e364d7cf60163cb1d62a3c24221595e722db1fda5b79aebfd4fb321008396
 SHA512 
04092142a5de5da4cf2e94fe425c696cee3fd438fb569faa16bd390f3f3b8bfee63397a2aeedca99950eb656916b04456d59f2069c8479ce4c8acdffae01018a
 DIST cfn_lint-1.13.0.tar.gz 2378100 BLAKE2B 
a1fa12fe13df1f3f8c5e533c138036df7e2eae325641e7fd66a050a3bb81718caf353d867bf7bbc765942a93bb9025a97bd9691a5759f59118296c23daf7466e
 SHA512 
eeec69657907cc145e533c390987f25374e9019a4c493d3a8ad98123f8db9445bac4890cbaef59b15af752d5a3437f75ea1687bc167198aec81ebb0a3c1ab097
-DIST cfn_lint-1.14.0.tar.gz 2380297 BLAKE2B 
27c72256f5ca353e40adb22c90754e37624962529a07e5f7b2af06a3c270d9a6b6e9721b1906de8992363dd42b66cba1b11f9e3c0f09e02cbd8c6f202f24eda8
 SHA512 
708d7776bc45bd5da722fda30b028f9ce403384ff584b0ea0aca47e1a002ddbb53845dc33db23ddb91e1b2984aee2a3c992c47357622c80a2954a9327c17ebae
-DIST cfn_lint-1.14.1.tar.gz 2432006 BLAKE2B 
c59b5767dec67dd16a31878e2d9684b2aed77e20a7b6218c4fe4905667c2f031bfdd37e9a4e91090831bcf52891508d7b19bccc65cfdb3979e556f1a6b126408
 SHA512 
6277700dd6e7855bb555d920ce99085463495a8dae4d23d2310033ac3261edc7f134ef09ea170cbae7d6a1c321ab90e4fd397bdff3fadc5eef0ec3da065ad787
 DIST cfn_lint-1.14.2.tar.gz 2426350 BLAKE2B 
65000d9201e66159d66e374a48cee6bfb330503ecdd72ecf325a3254a31f7fd9d78714b75b69b2e3a763eb4a2cf7eabad1e459dbb2ed4a46a3a21ba8551830b6
 SHA512 
ea7e558b4cd6ff844f25c88cfa46daefaee34ab10a209f4adc8ccc079bc4c361d917227aa60f747e9e821336ad21a9cdde114a0ce900fdf4f4c49eb7b83635c8
 DIST cfn_lint-1.15.0.tar.gz 2340540 BLAKE2B 
4cf6e93e97442691d97107144d560ece21281321cc1e694c386a4f012fcdf7b563707812f4130933bd23262c88bb045f8fb3bb7b9be2ebdc012b111f3d7df8b0
 SHA512 
80305de541924c7a46dfbb5f3a5a84422071726584e7e43b5be76151d6b2e012ffbaba2b448b476a5dca41f55ab5f95b8e45554158f820755495686ae1a55d3f

diff --git a/dev-python/cfn-lint/cfn-lint-1.14.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-1.14.0.ebuild
deleted file mode 100644
index 086f03ea08df..
--- a/dev-python/cfn-lint/cfn-lint-1.14.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="CloudFormation Linter"
-HOMEPAGE="
-   https://github.com/aws-cloudformation/cfn-lint/
-   https://pypi.org/project/cfn-lint/
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-
-RDEPEND="
-   >=dev-python/aws-sam-translator-1.91.0[${PYTHON_USEDEP}]
-   dev-python/jsonpatch[${PYTHON_USEDEP}]
-   >=dev-python/jschema-to-python-1.2.3[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
-   dev-python/junit-xml[${PYTHON_USEDEP}]
-   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
-   >=dev-python/regex-2021.7.1[${PYTHON_USEDEP}]
-   >=dev-python/sarif-om-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # unpin the deps
-   sed -e 's:~=[0-9.]*::' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # TODO
-   
test/unit/module/test_template.py::TestTemplate::test_build_graph
-   # requires git repo
-   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
-   # Internet
-   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
-   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_re

  1   2   3   4   >