Diff nemu-3.0.0 with a nemu-3.1.0

/usr/portage/app-emulation/nemu/nemu-3.1.0.ebuild 2023-10-09 14:52:28.728368331 +0300
1
# Copyright 2019-2022 Gentoo Authors
1
# Copyright 2019-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit cmake linux-info
7 7

  
......
13 13

  
14 14
LICENSE="BSD-2"
15 15
SLOT="0"
16
KEYWORDS="amd64 x86"
17
IUSE="dbus network-map +ovf spice +vnc-client remote-api"
16
KEYWORDS="amd64"
17
IUSE="dbus network-map +ovf remote-api"
18 18

  
19 19
RDEPEND="
20
	>=app-emulation/qemu-6.0.0-r3[vnc,virtfs,spice?]
20
	>=app-emulation/qemu-6.0.0-r3[vnc,virtfs,spice]
21 21
	dev-db/sqlite:3=
22 22
	dev-libs/json-c
23 23
	sys-libs/ncurses:=[unicode(+)]
......
30 30
		app-arch/libarchive:=
31 31
	)
32 32
	remote-api? ( dev-libs/openssl )
33
	spice? ( app-emulation/virt-viewer )
34
	vnc-client? ( net-misc/tigervnc )
35 33
"
36 34
DEPEND="${RDEPEND}"
37 35
BDEPEND="sys-devel/gettext"
......
60 58
		-DNM_WITH_REMOTE=$(usex remote-api)
61 59
		-DNM_WITH_OVF_SUPPORT=$(usex ovf)
62 60
		-DNM_WITH_QEMU=off
63
		-DNM_WITH_SPICE=$(usex spice)
64
		-DNM_WITH_VNC_CLIENT=$(usex vnc-client)
65 61
	)
66 62
	cmake_src_configure
67 63
}
Thank you!