You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/tree-sitter/tree-sitter-0.19.0_p2021050...

52 lines
1.4 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
EGIT_COMMIT="b4db17e4d43f27a040b4bf087695cc200512e4ea"
MY_P=py-tree-sitter-${EGIT_COMMIT}
# TODO: unbundle
TS_PV=0.19.5
FIXTURE_PV=0.19.0
DESCRIPTION="Python bindings to the Tree-sitter parsing library"
HOMEPAGE="https://github.com/tree-sitter/py-tree-sitter/"
SRC_URI="
https://github.com/tree-sitter/py-tree-sitter/archive/${EGIT_COMMIT}.tar.gz
-> ${MY_P}.tar.gz
https://github.com/tree-sitter/tree-sitter/archive/v${TS_PV}.tar.gz
-> tree-sitter-${TS_PV}.gh.tar.gz
test? (
https://github.com/tree-sitter/tree-sitter-javascript/archive/v${FIXTURE_PV}.tar.gz
-> tree-sitter-javascript-${FIXTURE_PV}.tar.gz
https://github.com/tree-sitter/tree-sitter-python/archive/v${FIXTURE_PV}.tar.gz
-> tree-sitter-python-${FIXTURE_PV}.tar.gz
)"
S=${WORKDIR}/${MY_P}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
distutils_enable_tests setup.py
src_unpack() {
default
rmdir "${S}/tree_sitter/core" || die
mv "tree-sitter-${TS_PV}" "${S}/tree_sitter/core" || die
if use test; then
mkdir "${S}/tests/fixtures" || die
local f
for f in tree-sitter-{javascript,python}; do
mv "${f}-${FIXTURE_PV}" "${S}/tests/fixtures/${f}" || die
done
fi
}