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: Tue, 02 Feb 2021 08:39:07
Message-Id: 1612254672.0c950d4e36b28a09e055c33f511345cbf6e1c091.mgorny@gentoo
1 commit: 0c950d4e36b28a09e055c33f511345cbf6e1c091
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 2 08:31:12 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 08:31:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c950d4e
7
8 dev-python/fastjsonschema: Bump to 2.15.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/fastjsonschema/Manifest | 1 +
13 .../fastjsonschema/fastjsonschema-2.15.0.ebuild | 26 ++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/fastjsonschema/Manifest b/dev-python/fastjsonschema/Manifest
17 index 8835172bcb4..8a68092dc88 100644
18 --- a/dev-python/fastjsonschema/Manifest
19 +++ b/dev-python/fastjsonschema/Manifest
20 @@ -1 +1,2 @@
21 DIST python-fastjsonschema-2.14.5.tar.gz 33488 BLAKE2B 4604ebd46851c8fe856909fa3943e053ac7359a9f360c189add2a46780fe045ca1952033174d008db7696bfc861a504c3aaa7389c33a2edbccd10cb14de8a097 SHA512 255db86d1d62845e512ca5669f3200360847d974710050ac53fe88536d6d9f943ccf41a8414702dad70fa1a38defe9859f2b608e13a54af11199c90d63cdf1d0
22 +DIST python-fastjsonschema-2.15.0.tar.gz 35225 BLAKE2B 43b5dce109b0b25db4906b13223ede61b9f9eee9acb05b207d3cd11e0cc1d3740674c4e29709ce55dca8b4964643942be0959267d0228a71ff8fb535ccc5de17 SHA512 3323c085e79e1a465e807ef972ecd3f09811e232a36abc16d6b2e3e2ac5cc343edf2610e18d18b64fdd555d640c0ef1dd3417e268b5c62738f82680a404a300a
23
24 diff --git a/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild b/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
25 new file mode 100644
26 index 00000000000..3669e189ca8
27 --- /dev/null
28 +++ b/dev-python/fastjsonschema/fastjsonschema-2.15.0.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 2020-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{7..9} )
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 ~arm64 ~x86"
49 +
50 +distutils_enable_tests pytest
51 +
52 +src_prepare() {
53 + distutils-r1_src_prepare
54 + rm -r tests/benchmarks || die
55 +}