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/lark-parser/
Date: Tue, 04 May 2021 12:41:38
Message-Id: 1620132081.a62eb96ade63479a6a4a6488e0cee829ed492cd0.mgorny@gentoo
1 commit: a62eb96ade63479a6a4a6488e0cee829ed492cd0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 4 11:41:43 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 4 12:41:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a62eb96a
7
8 dev-python/lark-parser: Bump to 0.11.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/lark-parser/Manifest | 1 +
13 dev-python/lark-parser/lark-parser-0.11.3.ebuild | 29 ++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/dev-python/lark-parser/Manifest b/dev-python/lark-parser/Manifest
17 index 66ebacd3e69..1401db78f78 100644
18 --- a/dev-python/lark-parser/Manifest
19 +++ b/dev-python/lark-parser/Manifest
20 @@ -1,2 +1,3 @@
21 DIST lark-parser-0.11.2.tar.gz 225851 BLAKE2B b4fec8701287237442d8fd3b2519f75f70f153a0d9deba8b39ba3317df358fe1ddda738f320ff689a7a8965ab157fefea7eb121ea980c6a6d8ca1b42d63941c9 SHA512 277be4e6d56d8e2747df434518d6d7918c149a67c3f6af3f978858be86f3fae9248989823c2429dbdff4a1c1615753607f5487fd9d6705cfafec698cb9d47e4b
22 +DIST lark-parser-0.11.3.tar.gz 229917 BLAKE2B 14bd76f1faaa4fa0aa3fea300d7a4969e0afd70cecd163304047b34a001c012932f37a170d6727a01c93f69ad4c29da70e0b26cee477d81880fa7f97ebd01598 SHA512 34cb6b53dc782a8de57f1f9a0946e7d1f383fad83aaf85102f7d8ca9e5ecd1f83a7666ee1ed8bf556a0d21e1ac5af23964377619882b81dd1033512f544d51c0
23 DIST lark-parser-0.7.8.tar.gz 276204 BLAKE2B c2d103f41b7b6ccb988c5935c53e422d495980c1d64cba125e9d27b9b7bf03c0864904e6c2c6b40ec56e8975a8051f1a18c9da126d02fe149dc3684ea7d41c30 SHA512 52eed1a5f26fa7ba79820298a8f6f7594b2351797abdaf8fd96f76e15a11711805955e055164ce287f7204edf3d19116562795cf56db464b4f2f15e40e1da561
24
25 diff --git a/dev-python/lark-parser/lark-parser-0.11.3.ebuild b/dev-python/lark-parser/lark-parser-0.11.3.ebuild
26 new file mode 100644
27 index 00000000000..bb4ebbc6d5a
28 --- /dev/null
29 +++ b/dev-python/lark-parser/lark-parser-0.11.3.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7..9} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python module to propose a modern general-purpose parsing library for Python"
41 +HOMEPAGE="https://github.com/lark-parser/lark"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +BDEPEND="
51 + test? (
52 + dev-python/atomicwrites[${PYTHON_USEDEP}]
53 + dev-python/regex[${PYTHON_USEDEP}]
54 + dev-python/js2py[${PYTHON_USEDEP}]
55 + )"
56 +
57 +python_test() {
58 + "${EPYTHON}" -m tests || die "Tests fail with ${EPYTHON}"
59 +}