diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-10-11 13:08:22 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-10-11 14:24:00 +0200 |
commit | b29ab8eb4ff7b9dfa193165f6672168a0185a456 (patch) | |
tree | 8ced869af53f6902faca49c2445c2cb0505b6d18 /dev-python/lark | |
parent | dev-python/jaraco-*: remove myself as maintainer (diff) | |
download | gentoo-b29ab8eb4ff7b9dfa193165f6672168a0185a456.tar.gz gentoo-b29ab8eb4ff7b9dfa193165f6672168a0185a456.tar.bz2 gentoo-b29ab8eb4ff7b9dfa193165f6672168a0185a456.zip |
dev-python/lark: Bump to 1.1.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/lark')
-rw-r--r-- | dev-python/lark/Manifest | 1 | ||||
-rw-r--r-- | dev-python/lark/lark-1.1.3.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/lark/Manifest b/dev-python/lark/Manifest index c12c316c0cb9..79fe7deabe7e 100644 --- a/dev-python/lark/Manifest +++ b/dev-python/lark/Manifest @@ -1 +1,2 @@ DIST lark-1.1.2.tar.gz 243201 BLAKE2B 0f1b51b0276ad893f29d0afa6c3e18211b0b92832c8c6f5cba6bbe9e03486b5598f55fa7c6f4d77798ed070decd902d01faa4df62039031fe21d392d29122125 SHA512 fc797c263410f461e1ef28fbbba526472b9c4d8dbb296b309e59daa5945fdcc0c2f9347b3b4bf78e189c6a3d8f1333c74a5f3d80b82ee54867181b84ba263c00 +DIST lark-1.1.3.tar.gz 245913 BLAKE2B 4c7b53d123aa7cdffcb16027921fced2f94dc0e5b9b816825f297629a9ff446758d9a700dc0f243f3d4c478fc992bbf5bfb38c51c2be3c8379df06b41044c624 SHA512 5359a29852554049ecee77a4151a2c64c5af72eccf5c2bb07926b0c131caac15cc51777c2df1d2c736e9e2b45d59543aa8a6d16ef2cb92ea7f8564c7ac06edb2 diff --git a/dev-python/lark/lark-1.1.3.ebuild b/dev-python/lark/lark-1.1.3.ebuild new file mode 100644 index 000000000000..5308a11fb889 --- /dev/null +++ b/dev-python/lark/lark-1.1.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python module to propose a modern general-purpose parsing library for Python" +HOMEPAGE=" + https://github.com/lark-parser/lark/ + https://pypi.org/project/lark/ +" +SRC_URI="mirror://pypi/${PN:0:1}/lark/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +BDEPEND=" + test? ( + dev-python/atomicwrites[${PYTHON_USEDEP}] + dev-python/regex[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +EPYTEST_IGNORE=( + # require dev-python/js2py which is a really bad quality package + tests/test_nearley/test_nearley.py +) |