Diff foot-1.13.1 with a foot-1.14.0

/usr/portage/gui-apps/foot/foot-1.14.0.ebuild 2023-10-09 14:52:31.172368393 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
13 13
LICENSE="MIT"
14 14
SLOT="0"
15 15
KEYWORDS="~amd64 ~arm64"
16
IUSE="+grapheme-clustering"
16
IUSE="+grapheme-clustering test"
17
RESTRICT="!test? ( test )"
17 18

  
18 19
COMMON_DEPEND="
19 20
	dev-libs/wayland
......
28 29
"
29 30
DEPEND="
30 31
	${COMMON_DEPEND}
31
	dev-libs/tllist
32
	>=dev-libs/tllist-1.1.0
32 33
	dev-libs/wayland-protocols
33 34
"
34 35
RDEPEND="
......
52 53
src_configure() {
53 54
	local emesonargs=(
54 55
		$(meson_feature grapheme-clustering)
56
		$(meson_use test tests)
55 57
		-Dthemes=true
56 58
		-Dime=true
57 59
		-Dterminfo=disabled
58 60
	)
59 61
	meson_src_configure
60 62

  
61
	sed 's|@bindir@|/usr/bin|g' "${S}/"/foot-server@.service.in > foot-server@.service
63
	sed 's|@bindir@|/usr/bin|g' "${S}/"/foot-server@.service.in > foot-server@.service || die
62 64
}
63 65

  
64 66
src_install() {
Thank you!