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/pycson/
Date: Sun, 05 Jun 2022 18:02:05
Message-Id: 1654451580.43b4da32de303b19f63b4ace55d0c0520ea0bc6e.arthurzam@gentoo
1 commit: 43b4da32de303b19f63b4ace55d0c0520ea0bc6e
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 17:34:02 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 17:53:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43b4da32
7
8 dev-python/pycson: Use PEP517
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/pycson/pycson-0.8-r3.ebuild | 20 ++++++++++++++++++++
13 1 file changed, 20 insertions(+)
14
15 diff --git a/dev-python/pycson/pycson-0.8-r3.ebuild b/dev-python/pycson/pycson-0.8-r3.ebuild
16 new file mode 100644
17 index 000000000000..4e9f1a65c4d1
18 --- /dev/null
19 +++ b/dev-python/pycson/pycson-0.8-r3.ebuild
20 @@ -0,0 +1,20 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="A python parser for the Coffeescript Object Notation (CSON)"
31 +HOMEPAGE="https://github.com/avakar/pycson/"
32 +SRC_URI="https://github.com/avakar/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +LICENSE="MIT"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~riscv ~x86"
37 +
38 +RDEPEND="dev-python/speg"
39 +
40 +distutils_enable_tests pytest