Diff tree-sitter-0.20.8 with a tree-sitter-0.20.8-r1

/usr/portage/dev-libs/tree-sitter/tree-sitter-0.20.8-r1.ebuild 2023-10-09 14:52:29.768368357 +0300
12 12
	EGIT_REPO_URI="https://github.com/${PN}/${PN}"
13 13
else
14 14
	SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
15
	KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
15
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
16 16
fi
17 17

  
18 18
LICENSE="MIT"
19 19
SLOT="0"
20 20

  
21
PATCHES=( "${FILESDIR}/${PN}-No-static-libs-gentoo.patch" )
22

  
23
# see Makefile:1
24
QA_PKGCONFIG_VERSION="0.20.9"
21
PATCHES=(
22
	"${FILESDIR}/${PN}-No-static-libs-gentoo.patch"
23
	"${FILESDIR}/${PN}-0.20.8-no-parser-header.patch"
24
)
25 25

  
26 26
# XXX: Please, don't forget to check this on next version bump.
27 27
# And, maybe remove as non-needed, if version in Makefile will
28 28
# match the release.
29 29
# ref: https://github.com/tree-sitter/tree-sitter/issues/2210
30
# see Makefile:1
31
QA_PKGCONFIG_VERSION="0.20.9"
30 32

  
31 33
src_prepare() {
32 34
	default
Thank you!