commit: e0af6e718bb2f9c6d4981daf826352dd85ab6b89 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri Feb 27 03:33:51 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Fri Feb 27 03:51:54 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0af6e71
dev-python/openapi-schema-validator: Bump to 0.8.0 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/openapi-schema-validator/Manifest | 2 ++ .../openapi-schema-validator-0.8.0.ebuild | 38 ++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/dev-python/openapi-schema-validator/Manifest b/dev-python/openapi-schema-validator/Manifest index 6fa16b2334ba..38c9f1184e46 100644 --- a/dev-python/openapi-schema-validator/Manifest +++ b/dev-python/openapi-schema-validator/Manifest @@ -7,3 +7,5 @@ DIST openapi_schema_validator-0.7.2.tar.gz 16983 BLAKE2B d3dfe018fbe3786bffc5924 DIST openapi_schema_validator-0.7.2.tar.gz.provenance 10055 BLAKE2B 4d17dcc3fb6785f25d2ea4fa8c2b03941e48b3b45a9144975a130ff99a01ea26a656589655aea997f2b7e3487c68e525668ab528d58016c4ae0bfc46e069cf8c SHA512 81ef4c66028511d96118a7543f85e04fe8868d92cbfe4a92f5d9beab373f203bc11a6c09286b4747d35992a640914ecfead1835cf150080652c022330d005a58 DIST openapi_schema_validator-0.7.3.tar.gz 20323 BLAKE2B cbbb7ed894a0ef88c619fbc50247b35a8ba8d91d67e3997721f2ff7a87b2a96fe9de1cb082788458d116345d06fc209453e4bcfa38b415cae7a8017a2a486c5f SHA512 c8d64a9f5957c4e45aa6d4b82efa68ee4fe04d0b75a0e43457d5aac73b81b88959b78f2d05a2abab5f82d56eebb1d7b334b577cff5bf6a2ec8023e5b8f77a9b3 DIST openapi_schema_validator-0.7.3.tar.gz.provenance 10012 BLAKE2B d89a0099a1e4b5b1b89caa6c925828a6a8fa7348627d4cdf16f8e90729aa8d559c57d4459a3fc4fdc5e0d8c03d0d47c7eb49782f1973d098a8b5734fcd0a6a90 SHA512 9a69e2766a2ce19a3f18972505b86e988ee960a7636345edfb019438e7904ce60e1e6054e3da834729fdc7a1195eab8465e5c0b811fef8b9bc764e41da886591 +DIST openapi_schema_validator-0.8.0.tar.gz 20744 BLAKE2B 2833ea5c972bcc398daacd8f7c189760b69b7576b1a7e733c7d9173eecf8a9f69cf42b26b9141de1f3763fe6bb49979d34e9b61d25026a29151411545983193b SHA512 a8faa6bffbc3c94458a7ad346803d7b872036e1fed30df14ee8423378f0fed35cee1fc5db0fda8768b16d1807d588fd1ff45584e5359e0fb7db652ca0bd0a783 +DIST openapi_schema_validator-0.8.0.tar.gz.provenance 10149 BLAKE2B c5c2779dfa3cad822b3a42d097db7590c1563499d825f3cce1f3dabb89a17cc431d7723e2a26c072a16ab38687a7e41ec714852ae327a893d73676aafe47b1d4 SHA512 148845ccabe0a8c89cc74ee6b80ffbd653b319552191caae9696db8cd44ead6b187efa338459b9c8542f8cc0c237ccb33f934f2d8f8e8a73101f29a7e7101b1a diff --git a/dev-python/openapi-schema-validator/openapi-schema-validator-0.8.0.ebuild b/dev-python/openapi-schema-validator/openapi-schema-validator-0.8.0.ebuild new file mode 100644 index 000000000000..732cfca8f241 --- /dev/null +++ b/dev-python/openapi-schema-validator/openapi-schema-validator-0.8.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 2022-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYPI_VERIFY_REPO=https://github.com/python-openapi/openapi-schema-validator +PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="OpenAPI schema validation for Python" +HOMEPAGE=" + https://github.com/python-openapi/openapi-schema-validator/ + https://pypi.org/project/openapi-schema-validator/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv" + +RDEPEND=" + <dev-python/jsonschema-5[${PYTHON_USEDEP}] + >=dev-python/jsonschema-4.19.1[${PYTHON_USEDEP}] + >=dev-python/jsonschema-specifications-2024.10.1[${PYTHON_USEDEP}] + >=dev-python/referencing-0.37.0[${PYTHON_USEDEP}] + dev-python/regress[${PYTHON_USEDEP}] + dev-python/rfc3339-validator[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + + sed -i -e '/--cov/d' -e 's:\^:>=:' pyproject.toml || die +}
