Diff tevent-0.14.1 with a tevent-0.15.0

/usr/portage/sys-libs/tevent/tevent-0.15.0.ebuild 2024-12-25 14:59:52.823270184 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{9..12} )
6
PYTHON_COMPAT=( python3_{10..12} )
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 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x86-linux"
16
KEYWORDS="~alpha amd64 arm arm64 hppa ~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}]
......
58 58

  
59 59
src_prepare() {
60 60
	default
61

  
61 62
	check_samba_dep_versions
63

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

  
62 70
	multilib_copy_sources
63 71
}
64 72

  
65 73
multilib_src_configure() {
66
	MAKEOPTS+=" -j1"
67

  
68 74
	# When specifying libs for samba build you must append NONE to the end to
69 75
	# stop it automatically including things
70 76
	local bundled_libs="NONE"
Thank you!