Diff tree-sitter-0.25.2-r1 with a tree-sitter-0.26.0

/usr/portage/dev-python/tree-sitter/tree-sitter-0.26.0.ebuild 2026-07-11 20:03:06.017008363 +0300
5 5

  
6 6
DISTUTILS_EXT=1
7 7
DISTUTILS_USE_PEP517=setuptools
8
PYTHON_COMPAT=( python3_{11..14} )
8
PYTHON_COMPAT=( python3_{12..15} )
9 9

  
10 10
inherit distutils-r1
11 11

  
......
22 22

  
23 23
LICENSE="MIT"
24 24
SLOT="0"
25
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
25
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
26 26

  
27 27
# setuptools is needed for distutils import
28
DEPEND="
29
	>=dev-libs/tree-sitter-0.25
30
	<dev-libs/tree-sitter-0.27:=
31
"
32
RDEPEND="${DEPEND}
33
	$(python_gen_cond_dep '
34
		dev-python/setuptools[${PYTHON_USEDEP}]
35
	' 3.12 3.13)
28
DEPEND="=dev-libs/tree-sitter-0.26*:="
29
RDEPEND="
30
	${DEPEND}
31
	dev-python/setuptools[${PYTHON_USEDEP}]
36 32
"
37 33
BDEPEND="
38 34
	test? (
......
48 44

  
49 45
PATCHES=(
50 46
	"${FILESDIR}"/${PN}-0.22.2-unbundle.patch
51
	"${FILESDIR}"/${PN}-0.25.2-remove-deprecated-functions.patch
52 47
)
53 48

  
54 49
src_unpack() {
Thank you!