Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonschema/
Date: Sat, 07 May 2022 09:35:12
Message-Id: 1651916049.c9f726bcfed5346acc4308d89955d5ff4d0c8d79.mgorny@gentoo
1 commit: c9f726bcfed5346acc4308d89955d5ff4d0c8d79
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 7 09:34:09 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat May 7 09:34:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9f726bc
7
8 dev-python/jsonschema: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jsonschema/jsonschema-4.4.0-r1.ebuild | 46 ------------------------
13 1 file changed, 46 deletions(-)
14
15 diff --git a/dev-python/jsonschema/jsonschema-4.4.0-r1.ebuild b/dev-python/jsonschema/jsonschema-4.4.0-r1.ebuild
16 deleted file mode 100644
17 index 265243662325..000000000000
18 --- a/dev-python/jsonschema/jsonschema-4.4.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,46 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -DISTUTILS_USE_PEP517=setuptools
27 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="An implementation of JSON-Schema validation for Python"
31 -HOMEPAGE="https://pypi.org/project/jsonschema/ https://github.com/Julian/jsonschema"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 -
34 -LICENSE="MIT"
35 -SLOT="0"
36 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
37 -
38 -RDEPEND="
39 - dev-python/attrs[${PYTHON_USEDEP}]
40 - >=dev-python/pyrsistent-0.18.0[${PYTHON_USEDEP}]
41 - $(python_gen_cond_dep '
42 - >=dev-python/importlib_resources-1.4.0[${PYTHON_USEDEP}]
43 - ' pypy3 python3_8)
44 -"
45 -
46 -# formatter deps
47 -RDEPEND+="
48 - dev-python/fqdn[${PYTHON_USEDEP}]
49 - dev-python/idna[${PYTHON_USEDEP}]
50 - dev-python/isoduration[${PYTHON_USEDEP}]
51 - >=dev-python/jsonpointer-1.13[${PYTHON_USEDEP}]
52 - dev-python/rfc3339-validator[${PYTHON_USEDEP}]
53 - dev-python/rfc3986-validator[${PYTHON_USEDEP}]
54 - dev-python/rfc3987[${PYTHON_USEDEP}]
55 - dev-python/uritemplate[${PYTHON_USEDEP}]
56 - >=dev-python/webcolors-1.11[${PYTHON_USEDEP}]
57 -"
58 -
59 -distutils_enable_tests pytest
60 -
61 -EPYTEST_DESELECT=(
62 - # requires pip, does not make much sense for the users
63 - jsonschema/tests/test_cli.py::TestCLIIntegration::test_license
64 - # wtf?
65 - jsonschema/tests/test_deprecations.py::TestDeprecations::test_version
66 -)