Diff yara-python-4.3.1 with a yara-python-4.4.0

/usr/portage/dev-python/yara-python/yara-python-4.4.0.ebuild 2023-10-09 14:52:30.404368373 +0300
4 4
EAPI=8
5 5

  
6 6
DISTUTILS_USE_PEP517=setuptools
7
PYTHON_COMPAT=( python3_{9..11} )
7
DISTUTILS_EXT=1
8
PYTHON_COMPAT=( python3_{10..12} )
8 9
inherit distutils-r1
9 10

  
10 11
DESCRIPTION="Python interface for a malware identification and classification tool"
......
15 16
	EGIT_REPO_URI="https://github.com/VirusTotal/yara-python.git"
16 17
else
17 18
	SRC_URI="https://github.com/virustotal/yara-python/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
18
	KEYWORDS="amd64 ~arm64 ~ppc64 x86"
19
	KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
19 20
fi
20 21

  
21 22
LICENSE="Apache-2.0"
......
26 27
"
27 28
DEPEND="${RDEPEND}"
28 29

  
30
PATCHES=(
31
	"${FILESDIR}/${P}-python3_12.patch"
32
)
33

  
29 34
distutils_enable_tests unittest
30 35

  
31 36
python_configure_all() {
Thank you!