mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 05:30:50 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
66 lines
1.6 KiB
Bash
66 lines
1.6 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_EXT=1
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{11..14} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Python bindings to the Tree-sitter parsing library"
|
|
HOMEPAGE="
|
|
https://github.com/tree-sitter/py-tree-sitter/
|
|
https://pypi.org/project/tree-sitter/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/tree-sitter/py-tree-sitter/archive/v${PV}.tar.gz
|
|
-> ${P}.gh.tar.gz
|
|
"
|
|
S=${WORKDIR}/py-${P}
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
|
|
# setuptools is needed for distutils import
|
|
DEPEND=">=dev-libs/tree-sitter-0.25.0:="
|
|
RDEPEND="${DEPEND}
|
|
$(python_gen_cond_dep '
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
' 3.12 3.13)
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
>=dev-libs/tree-sitter-html-0.23.2[python,${PYTHON_USEDEP}]
|
|
>=dev-libs/tree-sitter-javascript-0.23.1[python,${PYTHON_USEDEP}]
|
|
>=dev-libs/tree-sitter-json-0.24.8[python,${PYTHON_USEDEP}]
|
|
>=dev-libs/tree-sitter-python-0.23.6[python,${PYTHON_USEDEP}]
|
|
>=dev-libs/tree-sitter-rust-0.23.2[python,${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.22.2-unbundle.patch
|
|
)
|
|
|
|
src_unpack() {
|
|
default
|
|
rmdir "${S}/tree_sitter/core" || die
|
|
}
|
|
|
|
src_prepare() {
|
|
sed -e 's/ts_node_child_containing_descendant/ts_node_child_with_descendant/' \
|
|
-i tree_sitter/binding/node.c || die
|
|
sed -e 's/TSInputEncodingUTF16/TSInputEncodingUTF16LE/' \
|
|
-i tree_sitter/binding/parser.c || die
|
|
distutils-r1_src_prepare
|
|
}
|
|
|
|
src_test() {
|
|
rm -r tree_sitter || die
|
|
distutils-r1_src_test
|
|
}
|