commit: 4772c7fbbbd4e589929366669b72ff73445d059c
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Wed Jun 26 03:29:44 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 26 09:03:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4772c7fb
app-misc/check-jsonschema: drop old
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-misc/check-jsonschema/Manifest | 1 -
.../check-jsonschema-0.21.0-r1.ebuild | 51 ----------------------
2 files changed, 52 deletions(-)
diff --git a/app-misc/check-jsonschema/Manifest
b/app-misc/check-jsonschema/Manifest
index d5f1c7620cba..6da98dfb89f6 100644
--- a/app-misc/check-jsonschema/Manifest
+++ b/app-misc/check-jsonschema/Manifest
@@ -1,3 +1,2 @@
-DIST check-jsonschema-0.21.0.gh.tar.gz 214872 BLAKE2B
0ee013e379523e5a957e745d550c2014872eab9fc3281aad575f92abfada30b7e0853177bd06147b69a81100bf6b987b485342a087830845c32648efc1c7a9a0
SHA512
dd839a9bb104e1fc68e4a7507077dc991dfc9e840f785c4b7024f2838488eb8b8c6a8f7718f0f821981f5b6b23b1d67745948f48db55a0c589395cf43bfdd2a7
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
diff --git a/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
b/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
deleted file mode 100644
index 76210a0e1221..000000000000
--- a/app-misc/check-jsonschema/check-jsonschema-0.21.0-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-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 ~riscv"
-
-RDEPEND="
- dev-python/ruamel-yaml[${PYTHON_USEDEP}]
- dev-python/jsonschema[${PYTHON_USEDEP}]
- dev-python/requests[${PYTHON_USEDEP}]
- dev-python/click[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- ${RDEPEND}
- dev-python/responses[${PYTHON_USEDEP}]
- dev-python/pytest-xdist[${PYTHON_USEDEP}]
- )
-"
-
-DOCS=(
- README.md
- CONTRIBUTING.md
- CHANGELOG.rst
-)
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs \
- dev-python/sphinx-issues \
- dev-python/furo
-
-python_prepare_all() {
- # relax deps in setup.cfg
- sed -r -e 's:([a-zA-Z.-]+)([<>]|==|[<>]=)+.+:\1: ;
/importlib-resources/ d' -i setup.cfg || die
-
- distutils-r1_python_prepare_all
-}