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/ujson/
Date: Tue, 08 Sep 2020 19:11:24
Message-Id: 1599592258.1fb2f1292859322c3c6aec8b10c20751bb50cbf4.mgorny@gentoo
1 commit: 1fb2f1292859322c3c6aec8b10c20751bb50cbf4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 8 16:47:30 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 8 19:10:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fb2f129
7
8 dev-python/ujson: Bump to 3.2.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ujson/Manifest | 1 +
13 dev-python/ujson/ujson-3.2.0.ebuild | 24 ++++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/dev-python/ujson/Manifest b/dev-python/ujson/Manifest
17 index 97eef71a635..435bff18ae1 100644
18 --- a/dev-python/ujson/Manifest
19 +++ b/dev-python/ujson/Manifest
20 @@ -1,3 +1,4 @@
21 DIST ujson-1.35.tar.gz 192027 BLAKE2B 320058e7142f2264bee8b02a411bedb3b32d1c2fc86157eb47272f75cb401e6c75ce7d9e3dba5092cd1db99dbded8804347d4c7be11eaedb47bc8b4b8125fbd3 SHA512 931d8f574fc4920c9ded48369774666060e951f40982606ce9f1d9de3420004042af7d797075a54d92a2b25c4f313572a5e1a30f3bc8ce387ef8f3881193eee7
22 DIST ujson-3.0.0.tar.gz 7128523 BLAKE2B b19525edf1528e3b2a43cb08ecbf7b5d070f2455fb0bbffbe4b866bbaca91df09d7f4d46509dfb92d825095d4b922fc866fa36e051fa0e27af60fe558c69c854 SHA512 058675627c1275df1dbada02fca3750e544e25c0d0842b4a4268a664456cae1869423d832b7e4af40e56168b687ec711adf124e9ab34b7c06a244b61f7e2fdfc
23 DIST ujson-3.1.0.tar.gz 7128419 BLAKE2B 544afb68e23fe942a6bb241f6948998d61a42d61799dff257f139510e4e97e9bba5c4742e1ed1f0b0e78dfcde0589f0b255c92fc5f3059b6cdd86279aabfe141 SHA512 c40953a4b5b55e894e42fccded618a9f2ed771904e1d1e90a28f4691a53fbd8b2fab3dc98a36b6e0637d2ef40ac87ebf9f2d8fce33cd3bc4e68bf7c18c7a33c3
24 +DIST ujson-3.2.0.tar.gz 7128952 BLAKE2B 7e4c409eb8e87d542d37595439ded5c85e934e87a18987e18dce5ab0aebd5f9431b8a2c12ebaa467da928c3158d03325a40a9ae65230e39c93106d65b098c407 SHA512 8915e17acbd9650964dc9ae4f8a89021af921fac8f77f5456fdb8c0d6ceaa02767891d070c515c926deef76efb210a969c573e387ae62c15b2c8be761f6adb70
25
26 diff --git a/dev-python/ujson/ujson-3.2.0.ebuild b/dev-python/ujson/ujson-3.2.0.ebuild
27 new file mode 100644
28 index 00000000000..18e434f25cf
29 --- /dev/null
30 +++ b/dev-python/ujson/ujson-3.2.0.ebuild
31 @@ -0,0 +1,24 @@
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 +DESCRIPTION="Ultra fast JSON encoder and decoder for Python"
41 +HOMEPAGE="https://pypi.org/project/ujson/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +DEPEND="
51 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
52 + test? ( dev-python/pytz[${PYTHON_USEDEP}] )
53 +"
54 +
55 +distutils_enable_tests pytest