Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ijson/
Date: Thu, 03 Sep 2020 00:09:17
Message-Id: 1599091747.4b55db493e92fe3a256cfc5049707d91d1b7b4e8.chutzpah@gentoo
1 commit: 4b55db493e92fe3a256cfc5049707d91d1b7b4e8
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Thu Sep 3 00:08:35 2020 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 3 00:09:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b55db49
7
8 dev-python/ijson-3.1.1: Version bump, add pypy3
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-3.0.5, Repoman-3.0.1
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 dev-python/ijson/Manifest | 1 +
15 dev-python/ijson/ijson-3.1.1.ebuild | 27 +++++++++++++++++++++++++++
16 2 files changed, 28 insertions(+)
17
18 diff --git a/dev-python/ijson/Manifest b/dev-python/ijson/Manifest
19 index 9aa023fca83..3caeed890ec 100644
20 --- a/dev-python/ijson/Manifest
21 +++ b/dev-python/ijson/Manifest
22 @@ -1 +1,2 @@
23 +DIST ijson-3.1.1.tar.gz 124875 BLAKE2B 6f20efa076cf9e9a9f22eec65c7658440cc2ddffc2bf88054025f76f2df48e395d1c11a52501a45e7b5301448ce5874fb3e62d9111963f49f976ee68836c39d1 SHA512 c693444ac757c3b6e1f762d4a877a82b11ccaaecc922d34b868d236a78d9cf8f8648cb6d1188f0444caf61a0758f3080d3bfbd79c1ee51114bbd7c0a34bc633e
24 DIST ijson-3.1_p0.tar.gz 123536 BLAKE2B d8ed0da77e219aee8ca287a2ede4eccd8e965a5778ff95485376bcfdcca07b48ae5c0e22b271fad0a489342403b11716971663158f340c97b80031bb2cc8c060 SHA512 af2db5b3c9f2cc93aa2d15462b6476a970e5c394a8f5bd9740ebbe134e8a2fa973c95057447bd02d3c4262ddf22fc7d231840d3a91b919a1411bae07d38cfd93
25
26 diff --git a/dev-python/ijson/ijson-3.1.1.ebuild b/dev-python/ijson/ijson-3.1.1.ebuild
27 new file mode 100644
28 index 00000000000..8ea1c3bc00e
29 --- /dev/null
30 +++ b/dev-python/ijson/ijson-3.1.1.ebuild
31 @@ -0,0 +1,27 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python3_{6..9} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +MY_PV="${PV//_p/.post}"
41 +DESCRIPTION="Iterative JSON parser with a Pythonic interface"
42 +HOMEPAGE="
43 + https://github.com/ICRAR/ijson
44 + https://pypi.org/project/ijson/
45 +"
46 +SRC_URI="https://github.com/ICRAR/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
47 +S="${WORKDIR}/${PN}-${MY_PV}"
48 +
49 +LICENSE="BSD"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +
53 +RDEPEND="
54 + dev-libs/yajl
55 +"
56 +DEPEND="${RDEPEND}"
57 +
58 +distutils_enable_tests pytest