Diff nml-0.7.1 with a nml-0.7.4

/usr/portage/games-util/nml/nml-0.7.4.ebuild 2023-10-09 14:52:31.148368392 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
DISTUTILS_EXT=1
6 7
DISTUTILS_SINGLE_IMPL=1
7 8
DISTUTILS_USE_PEP517=setuptools
8 9
PYTHON_COMPAT=( python3_{9..11} )
......
23 24
	')
24 25
"
25 26

  
27
src_prepare() {
28
	default
29
}
30

  
26 31
python_test() {
27
	emake regression
32
	# the tests involving sprites seem to fail when running in the ebuild,
33
	#  unless --no-cache is passed.
34
	emake regression NML_FLAGS='-s -c --verbosity=1 --no-cache'
28 35
}
29 36

  
30 37
src_install() {
Thank you!