Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/json5/
Date: Tue, 02 Aug 2022 16:47:14
Message-Id: 1659457039.d9503d461972f23b605f9694889b128748212116.arthurzam@gentoo
1 commit: d9503d461972f23b605f9694889b128748212116
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 2 16:17:19 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 2 16:17:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9503d46
7
8 dev-python/json5: add 0.9.9
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/json5/Manifest | 1 +
13 dev-python/json5/json5-0.9.9.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/json5/Manifest b/dev-python/json5/Manifest
17 index 20f98e062bfb..b806c67b195c 100644
18 --- a/dev-python/json5/Manifest
19 +++ b/dev-python/json5/Manifest
20 @@ -1 +1,2 @@
21 DIST pyjson5-0.9.8.gh.tar.gz 110629 BLAKE2B 7a2acfbf1228e8f143a19775750e6d020376d63b2b036eac75be032b7baed1e6b93ea3ee842b0c200db6f44dc0f16f3c6c2f18cb165b24918334a48f237f2a9f SHA512 e1fb7a7457bdc68c33e2d73ddae8913aeec6f001e25a70234f7233d8d28b8eee8dd023c76e26dec0d0a2051e8e2cd731044dbe7dc15af9ec95f0ce806fabac72
22 +DIST pyjson5-0.9.9.gh.tar.gz 111214 BLAKE2B ccf329ea148e576655b1fb24124c813d31e117291cdfc53affa02542330b11c136cd28e74418351a30478249c8f4c109be6547d69e423c8c7b5f96f77ef5daac SHA512 cd28c64708738484376a03908ec75b30bee44a8834a1e9dbe81be98a6f46ba75600d6f958c6298998f373125589209907f5e8b63714ed6a83bb7a1d27adbccd5
23
24 diff --git a/dev-python/json5/json5-0.9.9.ebuild b/dev-python/json5/json5-0.9.9.ebuild
25 new file mode 100644
26 index 000000000000..0a10cb1d1bee
27 --- /dev/null
28 +++ b/dev-python/json5/json5-0.9.9.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_P=pyjson5-${PV}
41 +DESCRIPTION="A Python implementation of the JSON5 data format"
42 +HOMEPAGE="
43 + https://github.com/dpranke/pyjson5/
44 + https://pypi.org/project/json5/
45 +"
46 +SRC_URI="
47 + https://github.com/dpranke/pyjson5/archive/refs/tags/v${PV}.tar.gz
48 + -> ${MY_P}.gh.tar.gz
49 +"
50 +S=${WORKDIR}/${MY_P}
51 +
52 +LICENSE="Apache-2.0"
53 +SLOT="0"
54 +KEYWORDS="~amd64"
55 +
56 +distutils_enable_tests pytest