Diff libshumate-1.0.5 with a libshumate-1.1.0

/usr/portage/media-libs/libshumate/libshumate-1.1.0.ebuild 2023-10-09 14:52:31.692368406 +0300
10 10

  
11 11
SLOT="1.0/1"
12 12
LICENSE="LGPL-2.1+"
13
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~sparc x86"
13
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sparc ~x86"
14 14
REQUIRED_USE="gtk-doc? ( introspection )"
15 15

  
16
IUSE="gtk-doc +introspection vala" # vector-renderer is still experimental, maybe put in at a later release
16
IUSE="gtk-doc +introspection sysprof vala" # vector-renderer is still experimental, maybe put in at a later release
17 17

  
18 18
RDEPEND="
19 19
	>=dev-libs/glib-2.68.0:2
......
28 28
#	dev-libs/protobuf-c
29 29
# )
30 30

  
31
DEPEND="${RDEPEND}"
31
DEPEND="${RDEPEND}
32
	sysprof? ( dev-util/sysprof-capture:4 )
33
"
32 34
BDEPEND="
33 35
	gtk-doc? ( >=dev-util/gi-docgen-2021.1 )
34 36
	vala? ( $(vala_depend) )
35 37
"
36 38

  
37
PATCHES=(
38
	"${FILESDIR}"/1.0.4-tests-Add-test-setup-for-valgrind.patch
39
)
40

  
41 39
src_configure() {
42 40
	local emesonargs=(
43 41
		$(meson_use introspection gir)
......
47 45
		# $(meson_use vector-renderer vector_renderer)
48 46
		-Dvector_renderer=false
49 47
		-Dlibsoup3=true
48
		$(meson_feature sysprof)
50 49
	)
51 50
	meson_src_configure
52 51
}
Thank you!