Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonschema/
Date: Mon, 04 Oct 2021 23:09:20
Message-Id: 1633388946.53654a4ea84432fcca684fe913723d87afd92041.sam@gentoo
1 commit: 53654a4ea84432fcca684fe913723d87afd92041
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 23:08:39 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 23:09:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53654a4e
7
8 dev-python/jsonschema: drop 4.0.0
9
10 Bug: https://bugs.gentoo.org/815415
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-python/jsonschema/Manifest | 1 -
14 dev-python/jsonschema/jsonschema-4.0.0.ebuild | 45 ---------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/dev-python/jsonschema/Manifest b/dev-python/jsonschema/Manifest
18 index a3df46c46c0..108ca968b34 100644
19 --- a/dev-python/jsonschema/Manifest
20 +++ b/dev-python/jsonschema/Manifest
21 @@ -1,3 +1,2 @@
22 DIST jsonschema-3.2.0.tar.gz 167226 BLAKE2B f89a8198f6b7b4dd56b0320ddecdd834423cbeaf49fbbd1563007da61004322b92e25856ecc17b4d02e2162b2359ec5d7601826fe42cfcb7683ae16cf2baeb39 SHA512 acbb4cec730a8cdab9f070593ed896064fbe082d464ec362adc952e4985e9eaa12ad0f2d55a04018ffdaf675e54037999a7219533dad6b84bf609f5dfe21bbab
23 -DIST jsonschema-4.0.0.tar.gz 290808 BLAKE2B 29b53fcdedd170d1ea8602dd706d671b78394b8d5e5f54ae3443269394bb7a4d8399a2d99a87dfbb4d27d6613b47e0d5a1c6caea9b679cfd1d21cb4ee0f4e45c SHA512 5decad39032a229f992bf25555473171a19ae076a0726b73fcc284cecf788bcd29e8662ad48405ee5a93df812b87e5846a640dafc32157c3742f2abf7f7a9c97
24 DIST jsonschema-4.0.1.tar.gz 290999 BLAKE2B d693a33ef705a401187bdf603aacfd0336eab16afc0e38c5133ff6a74e4f0b323172d5abac0959163e40f546eedb75fe2b71f2ca53e7bbe1bf4f00ad977873b9 SHA512 50a2dd6423e8aca76e0a33e33a63bb7d1500abac891076426112c4577277d1f0322d06ec0ba5a9f47c65e5981f0cce768801e55e2f03ab6b0b6d2f884249b5fb
25
26 diff --git a/dev-python/jsonschema/jsonschema-4.0.0.ebuild b/dev-python/jsonschema/jsonschema-4.0.0.ebuild
27 deleted file mode 100644
28 index 239d9f05882..00000000000
29 --- a/dev-python/jsonschema/jsonschema-4.0.0.ebuild
30 +++ /dev/null
31 @@ -1,45 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
38 -PYTHON_COMPAT=( python3_{8..10} )
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="An implementation of JSON-Schema validation for Python"
42 -HOMEPAGE="https://pypi.org/project/jsonschema/ https://github.com/Julian/jsonschema"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~sparc ~x86"
48 -
49 -RDEPEND="
50 - dev-python/attrs[${PYTHON_USEDEP}]
51 - >=dev-python/pyrsistent-0.18.0[${PYTHON_USEDEP}]
52 - $(python_gen_cond_dep '
53 - dev-python/importlib_metadata[${PYTHON_USEDEP}]
54 - ' pypy3)
55 -"
56 -
57 -# formatter deps
58 -RDEPEND+="
59 - dev-python/fqdn[${PYTHON_USEDEP}]
60 - dev-python/idna[${PYTHON_USEDEP}]
61 - dev-python/isoduration[${PYTHON_USEDEP}]
62 - >=dev-python/jsonpointer-1.13[${PYTHON_USEDEP}]
63 - dev-python/rfc3339-validator[${PYTHON_USEDEP}]
64 - dev-python/rfc3986-validator[${PYTHON_USEDEP}]
65 - dev-python/rfc3987[${PYTHON_USEDEP}]
66 - dev-python/uritemplate[${PYTHON_USEDEP}]
67 - >=dev-python/webcolors-1.11[${PYTHON_USEDEP}]
68 -"
69 -
70 -BDEPEND="
71 - test? (
72 - dev-python/twisted[${PYTHON_USEDEP}]
73 - )
74 -"
75 -
76 -distutils_enable_tests unittest