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/speg/
Date: Sun, 05 Jun 2022 18:02:04
Message-Id: 1654452102.5f62ead71909e4de536268ee451b45e5e33b19d6.arthurzam@gentoo
1 commit: 5f62ead71909e4de536268ee451b45e5e33b19d6
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 17:39:46 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 18:01:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f62ead7
7
8 dev-python/speg: add 0.3_p20180819, enable tests
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/speg/Manifest | 1 +
13 dev-python/speg/speg-0.3_p20180819.ebuild | 21 +++++++++++++++++++++
14 2 files changed, 22 insertions(+)
15
16 diff --git a/dev-python/speg/Manifest b/dev-python/speg/Manifest
17 index 5e3a9b8b9284..312390832012 100644
18 --- a/dev-python/speg/Manifest
19 +++ b/dev-python/speg/Manifest
20 @@ -1 +1,2 @@
21 DIST speg-0.3.tar.gz 2592 BLAKE2B 1b82d6e122783fbc58f2c711a67e9b8b721d69c08de5ac2815d1ae459ce337552d10bb747cd1e31363f48f4a50bbc967b650d7e6048668d28d4133b5875aed14 SHA512 9faed6af0eb1a6ff0a7dc2e2f5b885a58a5430938b463420ad52277fe2900ae98531057ebbcc21d8cd259d4779bfb0c919125043503635721afe574b4f1f99ce
22 +DIST speg-0.3_p20180819.gh.tar.gz 5771 BLAKE2B 1d0a97d65190cd26776509627cc2ada948390af3457d3967fa0a6a3cbe1bc0c566db8188a9bab3a28d5bd8cb85ce0853c903d2c7a7d6faf79766b9f48c229f4d SHA512 01f0913a59b0a3b32c72c937f948508e303121bd35a8d057f1c043ab77a8b5c3a63b696f5aa8a6bf300901131ae56f50d187e7259dcc7bbaf4d1368e6bdd8bb1
23
24 diff --git a/dev-python/speg/speg-0.3_p20180819.ebuild b/dev-python/speg/speg-0.3_p20180819.ebuild
25 new file mode 100644
26 index 000000000000..dae8224ed586
27 --- /dev/null
28 +++ b/dev-python/speg/speg-0.3_p20180819.ebuild
29 @@ -0,0 +1,21 @@
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..10} )
37 +inherit distutils-r1
38 +
39 +MY_COMMIT="877acddfd5ac5ae8b4a4592d045e74e108477643"
40 +
41 +DESCRIPTION="A PEG-based parser interpreter with memoization"
42 +HOMEPAGE="https://github.com/avakar/speg/"
43 +SRC_URI="https://github.com/avakar/speg/archive/${MY_COMMIT}.tar.gz -> ${P}.gh.tar.gz"
44 +S=${WORKDIR}/${PN}-${MY_COMMIT}
45 +
46 +SLOT="0"
47 +LICENSE="MIT"
48 +KEYWORDS="~amd64 ~ppc ~riscv ~x86"
49 +
50 +distutils_enable_tests pytest