public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonschema/
Date: Sat,  6 Nov 2021 10:59:08 +0000 (UTC)	[thread overview]
Message-ID: <1636196339.f918fa062393aea9bc08731e36b4c06610c12114.mgorny@gentoo> (raw)

commit:     f918fa062393aea9bc08731e36b4c06610c12114
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov  6 08:25:20 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov  6 10:58:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f918fa06

dev-python/jsonschema: Bump to 4.2.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/jsonschema/Manifest                |  1 +
 dev-python/jsonschema/jsonschema-4.2.1.ebuild | 53 +++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/jsonschema/Manifest b/dev-python/jsonschema/Manifest
index 31b50ee5497..94eba716f4f 100644
--- a/dev-python/jsonschema/Manifest
+++ b/dev-python/jsonschema/Manifest
@@ -4,3 +4,4 @@ DIST jsonschema-4.1.0.tar.gz 306755 BLAKE2B a98f1050943543ac51a2e0a7242a8bab9098
 DIST jsonschema-4.1.1.tar.gz 310026 BLAKE2B c14bee88d20c53e4198e58b946c92a5c505a205daa09c30c474c2e95af45414b1c527298a2e0df647acd79ccbe9344c2aa03ee3e1b7daafda76153248e73f794 SHA512 7afa1bffd9631a503277479595cc9ed9a58ecd0f8f9035a2b65e4005f9f58ff4f6fa968b5ca783aa22c4530fc4acc5e2ea1ef2f67b7f4f09f245e9a6f2b2c3bd
 DIST jsonschema-4.1.2.tar.gz 310016 BLAKE2B 16ec4f73a16980ec69e4c8e0d937726a6fcbf7ba0ba24dc9d76b5bf107b924fb3917927748e3dafacc0305322e9cb405daa83800dcfd5f2fcc63dbb8fe10a25a SHA512 5ab43602cfc2dfe07a8c733f01915b4961ee88ebb37723a7a3a6ee4793ddae4b4638abe77ac9d192158ae7634aacee0c58fa2959288ea0f83e3403d5f8b9f185
 DIST jsonschema-4.2.0.tar.gz 310667 BLAKE2B 6210d1be3c4d72a9b5677fd06754df1b7d25ca6f0e7eb54089e0783e32408baf5f233a2a75eec686dddc7d112e397769ab58b0d1ac2d6246806375ed09427122 SHA512 75837145f542e8cf112b40e5fc5ec573bec8dfc6a27e9a7a4de6fbf127d845736509f89188700d68fe585ddf75f8e8a6e1d5c569e89bd8c03b36258adf36dab8
+DIST jsonschema-4.2.1.tar.gz 310668 BLAKE2B ba36be8abf0678fda773a9950f06e4d15f6a4c19fdd9f855310b80f45be1a25f44ce329c35667c4e107aab6ba381b02ff2caa305222932e2cbe733f293de82cc SHA512 349993c00e663f3efa2304e60c8b75e90c012d29faa498a01d5d2a5c47ddf0485f28894fd2ddf4766f9ab91e468f4b4f24a53390c72b7a31fae37d75c6f2b774

diff --git a/dev-python/jsonschema/jsonschema-4.2.1.ebuild b/dev-python/jsonschema/jsonschema-4.2.1.ebuild
new file mode 100644
index 00000000000..ff7d016261d
--- /dev/null
+++ b/dev-python/jsonschema/jsonschema-4.2.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="An implementation of JSON-Schema validation for Python"
+HOMEPAGE="https://pypi.org/project/jsonschema/ https://github.com/Julian/jsonschema"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+	dev-python/attrs[${PYTHON_USEDEP}]
+	>=dev-python/pyrsistent-0.18.0[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep '
+		dev-python/importlib_metadata[${PYTHON_USEDEP}]
+	' pypy3)
+	$(python_gen_cond_dep '
+		>=dev-python/importlib_resources-1.4.0[${PYTHON_USEDEP}]
+	' pypy3 python3_8)
+"
+
+# formatter deps
+RDEPEND+="
+		dev-python/fqdn[${PYTHON_USEDEP}]
+		dev-python/idna[${PYTHON_USEDEP}]
+		dev-python/isoduration[${PYTHON_USEDEP}]
+		>=dev-python/jsonpointer-1.13[${PYTHON_USEDEP}]
+		dev-python/rfc3339-validator[${PYTHON_USEDEP}]
+		dev-python/rfc3986-validator[${PYTHON_USEDEP}]
+		dev-python/rfc3987[${PYTHON_USEDEP}]
+		dev-python/uritemplate[${PYTHON_USEDEP}]
+		>=dev-python/webcolors-1.11[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+	test? (
+		dev-python/twisted[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	# requires pip, does not make much sense for the users
+	jsonschema/tests/test_cli.py::TestCLIIntegration::test_license
+)


             reply	other threads:[~2021-11-06 10:59 UTC|newest]

Thread overview: 250+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-06 10:59 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-27  7:19 [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonschema/ Michał Górny
2024-07-27  7:05 Arthur Zamarin
2024-07-09  2:10 Michał Górny
2024-05-28 12:10 Michał Górny
2024-05-12 16:30 Michał Górny
2024-05-01  4:34 Michał Górny
2024-02-03 10:41 Michał Górny
2024-02-03  9:17 Michał Górny
2024-02-03  8:22 Arthur Zamarin
2024-01-20  7:09 Michał Górny
2024-01-16 17:30 Michał Górny
2023-11-30  2:08 Sam James
2023-11-17  7:57 Michał Górny
2023-10-30 18:10 Michał Górny
2023-10-05  4:47 Arthur Zamarin
2023-10-04 19:50 Sam James
2023-10-04 19:50 Sam James
2023-10-04 19:40 Sam James
2023-10-03 21:44 Sam James
2023-10-03  1:59 Sam James
2023-10-03  1:51 Sam James
2023-09-30  5:34 Michał Górny
2023-09-21  5:28 Michał Górny
2023-08-08  2:25 Patrick McLean
2023-08-05 19:38 Arthur Zamarin
2023-08-05 19:38 Arthur Zamarin
2023-08-05 19:38 Arthur Zamarin
2023-08-05 19:35 Arthur Zamarin
2023-08-03  6:09 Michał Górny
2023-07-24 20:12 WANG Xuerui
2023-07-19  6:57 Michał Górny
2023-07-14  5:33 Michał Górny
2023-07-13  5:28 Michał Górny
2023-07-09 18:00 Arthur Zamarin
2023-07-08 10:47 Benda XU
2023-07-07  3:36 Sam James
2023-07-07  3:15 Michał Górny
2023-06-18 17:07 Michał Górny
2023-05-27 13:21 Michał Górny
2023-03-16  3:56 Michał Górny
2022-12-10  8:54 Michał Górny
2022-12-10  8:50 Arthur Zamarin
2022-12-01  7:09 Michał Górny
2022-11-23  8:41 Michał Górny
2022-11-02  7:37 Michał Górny
2022-10-22 15:58 Michał Górny
2022-10-22 15:52 Arthur Zamarin
2022-10-03 16:53 Michał Górny
2022-10-03 16:46 Arthur Zamarin
2022-10-03  8:31 Agostino Sarubbo
2022-10-03  8:30 Agostino Sarubbo
2022-10-03  8:29 Agostino Sarubbo
2022-10-03  8:28 Agostino Sarubbo
2022-10-03  8:26 Agostino Sarubbo
2022-10-03  8:24 Agostino Sarubbo
2022-10-03  0:44 Sam James
2022-09-26  4:14 Arthur Zamarin
2022-09-20  5:57 Michał Górny
2022-09-19 20:12 Arthur Zamarin
2022-09-18  6:22 Michał Górny
2022-09-16 20:32 Michał Górny
2022-09-16 18:41 Arthur Zamarin
2022-09-16 18:41 Arthur Zamarin
2022-09-16 18:41 Arthur Zamarin
2022-09-16 18:41 Arthur Zamarin
2022-09-16 18:41 Arthur Zamarin
2022-09-10  5:38 Arthur Zamarin
2022-09-06 21:52 Sam James
2022-09-06 21:37 Sam James
2022-09-06 21:15 Sam James
2022-08-31 18:25 Arthur Zamarin
2022-08-31 18:07 Arthur Zamarin
2022-08-30 17:03 Arthur Zamarin
2022-08-30 16:59 Arthur Zamarin
2022-08-28  9:48 James Le Cuirot
2022-08-27 18:04 Arthur Zamarin
2022-08-22 17:39 WANG Xuerui
2022-08-22 17:33 WANG Xuerui
2022-08-22 14:30 Jakov Smolić
2022-08-21 17:41 Arthur Zamarin
2022-08-19 14:18 Arthur Zamarin
2022-08-19  7:00 Arthur Zamarin
2022-08-19  5:54 Arthur Zamarin
2022-08-19  5:27 Arthur Zamarin
2022-08-19  5:27 Arthur Zamarin
2022-08-19  5:24 Arthur Zamarin
2022-08-19  5:24 Arthur Zamarin
2022-08-18 18:11 Arthur Zamarin
2022-08-17 18:28 Arthur Zamarin
2022-08-16 18:51 Arthur Zamarin
2022-08-13 10:57 Arthur Zamarin
2022-08-13 10:43 Arthur Zamarin
2022-08-07  4:55 WANG Xuerui
2022-08-06  8:47 James Le Cuirot
2022-08-03 17:30 Arthur Zamarin
2022-08-02  3:05 Yixun Lan
2022-08-01 19:21 Arthur Zamarin
2022-08-01 19:21 Arthur Zamarin
2022-08-01 19:19 Arthur Zamarin
2022-08-01 19:19 Arthur Zamarin
2022-08-01 19:19 Arthur Zamarin
2022-08-01 19:19 Arthur Zamarin
2022-08-01 19:19 Arthur Zamarin
2022-08-01 19:19 Arthur Zamarin
2022-08-01 18:38 Arthur Zamarin
2022-08-01 15:56 Michał Górny
2022-07-29 12:49 Michał Górny
2022-07-29 11:46 Arthur Zamarin
2022-07-29 10:12 Arthur Zamarin
2022-07-12  9:05 Michał Górny
2022-07-11 20:00 Arthur Zamarin
2022-07-07 19:11 Arthur Zamarin
2022-07-04  7:14 Michał Górny
2022-07-04  6:51 Agostino Sarubbo
2022-06-28 18:49 Arthur Zamarin
2022-06-12 14:25 Michał Górny
2022-06-12 12:46 Sam James
2022-06-02 11:54 Michał Górny
2022-06-02  6:42 Michał Górny
2022-05-11 14:32 Michał Górny
2022-05-07  9:35 Michał Górny
2022-05-07  9:27 Arthur Zamarin
2022-05-05 23:03 Patrick McLean
2022-04-26 19:17 Arthur Zamarin
2022-04-26 19:17 Arthur Zamarin
2022-04-26 19:17 Arthur Zamarin
2022-04-26 19:16 Arthur Zamarin
2022-04-26 19:14 Arthur Zamarin
2022-04-26 17:22 Arthur Zamarin
2022-04-26 17:18 Arthur Zamarin
2022-04-10  2:35 Matt Turner
2022-04-09 19:42 Arthur Zamarin
2022-04-09 19:40 Arthur Zamarin
2022-04-09 19:26 Arthur Zamarin
2022-03-27 20:20 James Le Cuirot
2022-03-26 17:07 Arthur Zamarin
2022-03-26 16:50 Arthur Zamarin
2022-03-26 16:50 Arthur Zamarin
2022-03-26 16:49 Arthur Zamarin
2022-03-26 16:43 Arthur Zamarin
2022-03-26 16:43 Arthur Zamarin
2022-03-25 19:42 Jakov Smolić
2022-03-25 14:39 Michał Górny
2022-02-27 18:35 Michał Górny
2022-01-26 21:53 Michał Górny
2022-01-26 21:53 Michał Górny
2022-01-26 21:53 Michał Górny
2022-01-20 14:20 Michał Górny
2022-01-20  8:44 Arthur Zamarin
2022-01-19 22:45 James Le Cuirot
2022-01-12 21:12 Michał Górny
2022-01-10  5:13 Joshua Kinard
2022-01-02 10:59 Michał Górny
2021-12-31 16:53 Matt Turner
2021-12-20 23:10 Michał Górny
2021-12-17  7:59 Michał Górny
2021-12-16  8:46 Michał Górny
2021-12-10 17:39 Michał Górny
2021-12-10 11:27 Arthur Zamarin
2021-11-18  5:36 Sam James
2021-11-09 14:01 Michał Górny
2021-11-08 21:04 Michał Górny
2021-11-08 19:32 Sam James
2021-11-08 19:32 Sam James
2021-11-06 19:56 Sam James
2021-11-06  0:48 Sam James
2021-11-05 17:33 Sam James
2021-11-05 14:57 Jakov Smolić
2021-11-05  2:20 Sam James
2021-11-04  8:16 Michał Górny
2021-10-26 11:12 Michał Górny
2021-10-26  6:38 Sam James
2021-10-20 21:43 Michał Górny
2021-10-20  9:40 Michał Górny
2021-10-11  1:20 Sam James
2021-10-10 21:21 Sam James
2021-10-10 20:43 Sam James
2021-10-10  6:45 Michał Górny
2021-10-10  0:09 Sam James
2021-10-06 13:07 Yixun Lan
2021-10-05  5:00 Sam James
2021-10-04 23:10 Sam James
2021-10-04 23:09 Sam James
2021-10-04 23:09 Sam James
2021-10-04 17:44 Sam James
2021-09-30  6:26 Michał Górny
2021-06-04 15:24 Michał Górny
2021-05-24 21:58 Joshua Kinard
2020-08-01 21:00 Michał Górny
2020-07-26  3:57 Michał Górny
2020-07-11 22:28 Sam James
2020-06-09 19:46 Michał Górny
2020-06-06 19:31 Mart Raudsepp
2020-06-05 16:10 Sergei Trofimovich
2020-06-04  6:35 Agostino Sarubbo
2020-06-04  6:23 Agostino Sarubbo
2020-06-03 18:43 Agostino Sarubbo
2020-06-03 15:12 Agostino Sarubbo
2020-06-01 20:51 Sergei Trofimovich
2020-06-01 17:02 Sergei Trofimovich
2020-05-17  7:44 Michał Górny
2020-05-04 11:21 Michał Górny
2020-04-30  7:16 Sergei Trofimovich
2020-04-28 19:23 Mart Raudsepp
2020-04-28 15:41 Mikle Kolyada
2020-04-04 10:33 Sergei Trofimovich
2020-03-29 11:27 Sergei Trofimovich
2020-03-29 10:48 Sergei Trofimovich
2020-03-29 10:40 Mikle Kolyada
2020-03-29  9:40 Sergei Trofimovich
2020-03-29  9:34 Sergei Trofimovich
2020-03-28 23:40 Sergei Trofimovich
2020-03-27 20:22 Michał Górny
2020-03-27 20:22 Michał Górny
2020-01-22 23:40 Thomas Deutschmann
2019-12-10 19:25 Sergei Trofimovich
2019-12-04 19:44 Sergei Trofimovich
2019-11-25  8:16 Patrick McLean
2019-11-23 23:25 Patrick McLean
2019-07-18 13:35 Agostino Sarubbo
2019-07-18 13:33 Agostino Sarubbo
2019-03-13  8:35 Alexey Shvetsov
2019-03-13  8:28 Alexey Shvetsov
2019-03-09 11:17 Alexey Shvetsov
2018-06-08 11:12 Mikle Kolyada
2018-02-21 17:20 Michał Górny
2017-09-30  0:00 Matt Thode
2017-07-01 10:58 Sergei Trofimovich
2017-05-13  6:29 Markus Meier
2017-05-11 19:31 Markus Meier
2017-05-09  7:49 Tobias Klausmann
2017-05-06 11:22 Jeroen Roovers
2017-05-03 20:41 Zac Medico
2017-05-03 19:47 Zac Medico
2017-03-16  8:36 Michael Weber
2016-11-06 21:39 Matt Thode
2016-10-09  8:42 Jeroen Roovers
2016-09-25 18:50 Jeroen Roovers
2016-06-06  8:35 Tobias Klausmann
2016-06-06  8:30 Tobias Klausmann
2016-02-10  0:49 Patrick McLean
2016-02-10  0:49 Patrick McLean
2016-02-05 19:45 Justin Lecher
2016-02-05 19:45 Justin Lecher
2015-10-10  8:53 Markus Meier
2015-09-29 20:59 Markus Meier
2015-09-09  1:18 Patrick McLean
2015-09-05 19:52 Patrice Clement
2015-09-02 11:05 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1636196339.f918fa062393aea9bc08731e36b4c06610c12114.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox