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: Wed, 20 Oct 2021 21:44:11
Message-Id: 1634766210.ea9da8ee6a223d2f818de31f6db5877a95a34462.mgorny@gentoo
1 commit: ea9da8ee6a223d2f818de31f6db5877a95a34462
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 20 20:53:35 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 20 21:43:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea9da8ee
7
8 dev-python/jsonschema: Bump to 4.1.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jsonschema/Manifest | 1 +
13 dev-python/jsonschema/jsonschema-4.1.2.ebuild | 45 +++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-python/jsonschema/Manifest b/dev-python/jsonschema/Manifest
17 index 0ac076a0806..dcc3340564f 100644
18 --- a/dev-python/jsonschema/Manifest
19 +++ b/dev-python/jsonschema/Manifest
20 @@ -2,3 +2,4 @@ DIST jsonschema-3.2.0.tar.gz 167226 BLAKE2B f89a8198f6b7b4dd56b0320ddecdd834423c
21 DIST jsonschema-4.0.1.tar.gz 290999 BLAKE2B d693a33ef705a401187bdf603aacfd0336eab16afc0e38c5133ff6a74e4f0b323172d5abac0959163e40f546eedb75fe2b71f2ca53e7bbe1bf4f00ad977873b9 SHA512 50a2dd6423e8aca76e0a33e33a63bb7d1500abac891076426112c4577277d1f0322d06ec0ba5a9f47c65e5981f0cce768801e55e2f03ab6b0b6d2f884249b5fb
22 DIST jsonschema-4.1.0.tar.gz 306755 BLAKE2B a98f1050943543ac51a2e0a7242a8bab909805d660a21e13909748e847493fd7c1f513beb3dac1126e57ffd23bf6702bae52902a5ac6aa7ab94b39833fc40b0c SHA512 288c28d80dc3540386db8774783bbba67455cacd81232aa41e065a9b22fed85dc1bdddb955f8438735bef0f1eb2b2947ab07c66344adb486ef77b31b345f1182
23 DIST jsonschema-4.1.1.tar.gz 310026 BLAKE2B c14bee88d20c53e4198e58b946c92a5c505a205daa09c30c474c2e95af45414b1c527298a2e0df647acd79ccbe9344c2aa03ee3e1b7daafda76153248e73f794 SHA512 7afa1bffd9631a503277479595cc9ed9a58ecd0f8f9035a2b65e4005f9f58ff4f6fa968b5ca783aa22c4530fc4acc5e2ea1ef2f67b7f4f09f245e9a6f2b2c3bd
24 +DIST jsonschema-4.1.2.tar.gz 310016 BLAKE2B 16ec4f73a16980ec69e4c8e0d937726a6fcbf7ba0ba24dc9d76b5bf107b924fb3917927748e3dafacc0305322e9cb405daa83800dcfd5f2fcc63dbb8fe10a25a SHA512 5ab43602cfc2dfe07a8c733f01915b4961ee88ebb37723a7a3a6ee4793ddae4b4638abe77ac9d192158ae7634aacee0c58fa2959288ea0f83e3403d5f8b9f185
25
26 diff --git a/dev-python/jsonschema/jsonschema-4.1.2.ebuild b/dev-python/jsonschema/jsonschema-4.1.2.ebuild
27 new file mode 100644
28 index 00000000000..904fc6ee1ce
29 --- /dev/null
30 +++ b/dev-python/jsonschema/jsonschema-4.1.2.ebuild
31 @@ -0,0 +1,45 @@
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 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~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