commit: 1e2cb83e92a38296838264818e7159a19334c23a
Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 18 02:04:32 2025 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Thu Sep 18 02:04:32 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e2cb83e
app-misc/check-jsonschema: add 0.34.0
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
app-misc/check-jsonschema/Manifest | 1 +
.../check-jsonschema-0.34.0.ebuild | 46 ++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/app-misc/check-jsonschema/Manifest
b/app-misc/check-jsonschema/Manifest
index 6da98dfb89f6..97380aeb40c7 100644
--- a/app-misc/check-jsonschema/Manifest
+++ b/app-misc/check-jsonschema/Manifest
@@ -1,2 +1,3 @@
DIST check-jsonschema-0.23.3.gh.tar.gz 229537 BLAKE2B
a8a40ddc383f38096693a2079b73a8a8fe2ceed5d1e118e539957c205c500807518c0380aa18cae2524efdeda33987f057350ba73b7a699240706ff4e276eafc
SHA512
14f9eb6b203e3aec6ca35f75304bd24fd5a09c2b89bcbbf69c22e0c0f44c587972015677498fef1a378683c77f94d9319450daccadddf5fecbe7c738dd16c726
DIST check-jsonschema-0.28.4.gh.tar.gz 270302 BLAKE2B
a5355ed124d6e3bd076403448c3d7fa7c62524c6da49eb5a61d226485639812bdea28b53c570b084e976749b92c1ee586b0285111a543b1a3e8a734ea8d6cc67
SHA512
f4c693ea0951c246814775f26d5c3e5de8020484a92ae15e2a13e284ccb2c58f2bdf7dbdb66612661304f5ff9e6ba88eb3f89e7f0ad23a3f6fc8fcc61372ceea
+DIST check-jsonschema-0.34.0.gh.tar.gz 369778 BLAKE2B
20fa6b378051812b205d7b424c4a797085f41db1f576f1d745a21148f8ef1648db6179586e220b3c469b0f02f6d2c45ebb6bedd71b4cf94e9fb213a3896b1f17
SHA512
535d305c9cdce7ef2fdc1465b3f7153fffd0f864b3ad9a00d47b6a1d222589ae7900e4661ac734900ecf9e163ada31a45b4913df030f894e59552714afca6d26
diff --git a/app-misc/check-jsonschema/check-jsonschema-0.34.0.ebuild
b/app-misc/check-jsonschema/check-jsonschema-0.34.0.ebuild
new file mode 100644
index 000000000000..26f59847f724
--- /dev/null
+++ b/app-misc/check-jsonschema/check-jsonschema-0.34.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..14} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="A CLI and set of pre-commit hooks for jsonschema validation"
+HOMEPAGE="
+ https://pypi.org/project/check-jsonschema/
+ https://github.com/python-jsonschema/check-jsonschema
+"
+SRC_URI="https://github.com/python-jsonschema/${PN}/archive/refs/tags/${PV}.tar.gz
-> ${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv"
+
+RDEPEND="
+ >=dev-python/ruamel-yaml-0.18.10[${PYTHON_USEDEP}]
+ >=dev-python/jsonschema-4.18.0[${PYTHON_USEDEP}]
+ >=dev-python/regress-2024.11.1[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ >=dev-python/click-8[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ ${RDEPEND}
+ dev-python/pytest-xdist[${PYTHON_USEDEP}]
+ >=dev-python/responses-0.25.7[${PYTHON_USEDEP}]
+ >=dev-python/identify-2.6.9[${PYTHON_USEDEP}]
+ )
+"
+
+DOCS=(
+ README.md
+ CONTRIBUTING.md
+ CHANGELOG.rst
+)
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+ dev-python/sphinx-issues \
+ dev-python/furo