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/fastjsonschema/
Date: Mon, 10 Jan 2022 04:58:17
Message-Id: 1641790683.465062177c66cc8fd629caa557fbaa5cd46ea5fd.mgorny@gentoo
1 commit: 465062177c66cc8fd629caa557fbaa5cd46ea5fd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 10 04:52:34 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 10 04:58:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46506217
7
8 dev-python/fastjsonschema: Bump to 2.15.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/fastjsonschema/Manifest | 1 +
13 .../fastjsonschema/fastjsonschema-2.15.3.ebuild | 26 ++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/fastjsonschema/Manifest b/dev-python/fastjsonschema/Manifest
17 index 9cb5a91bd84a..d0d649f8e7a2 100644
18 --- a/dev-python/fastjsonschema/Manifest
19 +++ b/dev-python/fastjsonschema/Manifest
20 @@ -1 +1,2 @@
21 DIST python-fastjsonschema-2.15.1.tar.gz 35384 BLAKE2B 89b9be7a9dcb8b22634dcfb54abec7b5709805b7087558af93b4cbca3c71a0b876956060aac0d0e7f4467db1bb38e6a587025c1c219613a661fb0d9e656b81e0 SHA512 7eb4d512eac03e258d670f6d448c5aeb74e20f892a08fa84a0412fd9c99cdc6412d4daa74bc09f9fe933a973a81227dae36125766e64f3c5b01106435ca5d70f
22 +DIST python-fastjsonschema-2.15.3.tar.gz 389350 BLAKE2B f9ab32666fce1ba44a11cb981f4f301d7d55260767ec71aefa54ad6bcdd5b8c3d246656908dcd50e909257b35bb9ee24eb34d5ce7fe0f91501127cad412a7e1d SHA512 59dfc513de46e9df790edaa1abc994decdf98d65bec8eb8a6ac7211d2277f4e15d521a308e45c6532a232321d8a4655f87b7a01f2d57b9de20246a4d6deeeb9b
23
24 diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild b/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
25 new file mode 100644
26 index 000000000000..5a3028e4da43
27 --- /dev/null
28 +++ b/dev-python/fastjsonschema/fastjsonschema-2.15.3.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 2020-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{7..10} )
36 +inherit distutils-r1
37 +
38 +MY_P=python-${P}
39 +DESCRIPTION="Fast JSON schema validator for Python"
40 +HOMEPAGE="https://github.com/horejsek/python-fastjsonschema/"
41 +SRC_URI="
42 + https://github.com/horejsek/python-fastjsonschema/archive/v${PV}.tar.gz
43 + -> ${MY_P}.tar.gz"
44 +S=${WORKDIR}/${MY_P}
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
49 +
50 +distutils_enable_tests pytest
51 +
52 +src_prepare() {
53 + distutils-r1_src_prepare
54 + rm -r tests/benchmarks || die
55 +}