commit:     354b7a808db12fde378591f536aacc9fcee3e1c5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 18 22:39:30 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jan 18 22:44:33 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354b7a80

dev-python/lark-parser: Switch to PEP517 build

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../lark-parser/lark-parser-0.11.3-r1.ebuild       | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild 
b/dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild
new file mode 100644
index 000000000000..d4982e33bc45
--- /dev/null
+++ b/dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild
@@ -0,0 +1,28 @@
+# 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..10} pypy3 )
+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 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+       test? (
+               dev-python/atomicwrites[${PYTHON_USEDEP}]
+               dev-python/regex[${PYTHON_USEDEP}]
+       )"
+
+python_test() {
+       "${EPYTHON}" -m tests -v || die "Tests fail with ${EPYTHON}"
+}

Reply via email to