diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-05-04 13:41:43 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-05-04 14:41:21 +0200 |
commit | a62eb96ade63479a6a4a6488e0cee829ed492cd0 (patch) | |
tree | c710b9f29ced79f2caa200cf756c5e5a39636c2f | |
parent | dev-python/alembic: Bump to 1.6.0 (diff) | |
download | gentoo-a62eb96ade63479a6a4a6488e0cee829ed492cd0.tar.gz gentoo-a62eb96ade63479a6a4a6488e0cee829ed492cd0.tar.bz2 gentoo-a62eb96ade63479a6a4a6488e0cee829ed492cd0.zip |
dev-python/lark-parser: Bump to 0.11.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/lark-parser/Manifest | 1 | ||||
-rw-r--r-- | dev-python/lark-parser/lark-parser-0.11.3.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/lark-parser/Manifest b/dev-python/lark-parser/Manifest index 66ebacd3e69c..1401db78f78a 100644 --- a/dev-python/lark-parser/Manifest +++ b/dev-python/lark-parser/Manifest @@ -1,2 +1,3 @@ DIST lark-parser-0.11.2.tar.gz 225851 BLAKE2B b4fec8701287237442d8fd3b2519f75f70f153a0d9deba8b39ba3317df358fe1ddda738f320ff689a7a8965ab157fefea7eb121ea980c6a6d8ca1b42d63941c9 SHA512 277be4e6d56d8e2747df434518d6d7918c149a67c3f6af3f978858be86f3fae9248989823c2429dbdff4a1c1615753607f5487fd9d6705cfafec698cb9d47e4b +DIST lark-parser-0.11.3.tar.gz 229917 BLAKE2B 14bd76f1faaa4fa0aa3fea300d7a4969e0afd70cecd163304047b34a001c012932f37a170d6727a01c93f69ad4c29da70e0b26cee477d81880fa7f97ebd01598 SHA512 34cb6b53dc782a8de57f1f9a0946e7d1f383fad83aaf85102f7d8ca9e5ecd1f83a7666ee1ed8bf556a0d21e1ac5af23964377619882b81dd1033512f544d51c0 DIST lark-parser-0.7.8.tar.gz 276204 BLAKE2B c2d103f41b7b6ccb988c5935c53e422d495980c1d64cba125e9d27b9b7bf03c0864904e6c2c6b40ec56e8975a8051f1a18c9da126d02fe149dc3684ea7d41c30 SHA512 52eed1a5f26fa7ba79820298a8f6f7594b2351797abdaf8fd96f76e15a11711805955e055164ce287f7204edf3d19116562795cf56db464b4f2f15e40e1da561 diff --git a/dev-python/lark-parser/lark-parser-0.11.3.ebuild b/dev-python/lark-parser/lark-parser-0.11.3.ebuild new file mode 100644 index 000000000000..bb4ebbc6d5af --- /dev/null +++ b/dev-python/lark-parser/lark-parser-0.11.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Python module to propose a modern general-purpose parsing library for Python" +HOMEPAGE="https://github.com/lark-parser/lark" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=" + test? ( + dev-python/atomicwrites[${PYTHON_USEDEP}] + dev-python/regex[${PYTHON_USEDEP}] + dev-python/js2py[${PYTHON_USEDEP}] + )" + +python_test() { + "${EPYTHON}" -m tests || die "Tests fail with ${EPYTHON}" +} |