From 354b7a808db12fde378591f536aacc9fcee3e1c5 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Tue, 18 Jan 2022 23:39:30 +0100 Subject: dev-python/lark-parser: Switch to PEP517 build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- .../lark-parser/lark-parser-0.11.3-r1.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dev-python/lark-parser/lark-parser-0.11.3-r1.ebuild (limited to 'dev-python') 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}" +} -- cgit v1.2.3-65-gdbad