Diff tdb-1.4.8 with a tdb-1.4.9

/usr/portage/sys-libs/tdb/tdb-1.4.9.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 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
17
IUSE="python"
16
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
17
IUSE="python test"
18

  
18 19
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
19
RESTRICT="test"
20
RESTRICT="!test? ( test )"
20 21

  
21 22
RDEPEND="
22 23
	dev-libs/libbsd[${MULTILIB_USEDEP}]
......
35 36

  
36 37
src_prepare() {
37 38
	default
39

  
38 40
	python_fix_shebang .
41

  
42
	if use test ; then
43
		# TODO: Fix python tests to run w/ USE=python.
44
		truncate -s0 python/tests/simple.py || die
45
	fi
46

  
39 47
	multilib_copy_sources
40 48
}
41 49

  
42 50
multilib_src_configure() {
43
	MAKEOPTS+=" -j1"
51
	#MAKEOPTS+=" -j1"
44 52

  
45 53
	local extra_opts=(
46 54
		--libdir="${EPREFIX}/usr/$(get_libdir)"
Thank you!