Diff tevent-0.14.1 with a tevent-0.15.0

/usr/portage/sys-libs/tevent/tevent-0.15.0.ebuild 2023-10-09 14:52:35.564368503 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{9..11} )
6
PYTHON_COMPAT=( python3_{10..11} )
7 7
PYTHON_REQ_USE="threads(+)"
8 8
inherit waf-utils multilib-minimal python-single-r1
9 9

  
......
13 13

  
14 14
LICENSE="GPL-3"
15 15
SLOT="0"
16
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x86-linux"
16
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x86-linux"
17 17
IUSE="python test"
18 18
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
19
RESTRICT="test !test? ( test )"
19
RESTRICT="!test? ( test )"
20 20

  
21
TALLOC_VERSION="2.4.0"
21
TALLOC_VERSION="2.4.1"
22 22

  
23 23
RDEPEND="
24 24
	dev-libs/libbsd[${MULTILIB_USEDEP}]
......
54 54

  
55 55
src_prepare() {
56 56
	default
57

  
57 58
	check_samba_dep_versions
59

  
60
	if use test ; then
61
		# TODO: Fix python tests to run w/ USE=python.
62
		# (depsite the name. bindings.py is just for Python tests.)
63
		truncate -s0 bindings.py || die
64
	fi
65

  
58 66
	multilib_copy_sources
59 67
}
60 68

  
61 69
multilib_src_configure() {
62
	MAKEOPTS+=" -j1"
63

  
64 70
	# When specifying libs for samba build you must append NONE to the end to
65 71
	# stop it automatically including things
66 72
	local bundled_libs="NONE"
Thank you!