Diff gupnp-igd-1.2.0 with a gupnp-igd-1.6.0

/usr/portage/net-libs/gupnp-igd/gupnp-igd-1.6.0.ebuild 2023-10-09 14:52:34.476368476 +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
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit gnome.org meson-multilib xdg
7 7

  
......
9 9
HOMEPAGE="http://gupnp.org https://gitlab.gnome.org/GNOME/gupnp-igd"
10 10

  
11 11
LICENSE="LGPL-2.1+"
12
SLOT="0/1.2" # pkg-config file links in gupnp API, so some consumers of gupnp-igd need to be relinked for it
12
SLOT="1.6/1.6-0" # <API version>-<soname>
13 13
KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
14 14
IUSE="gtk-doc +introspection"
15 15

  
16
# The only existing test is broken
17
RESTRICT="test"
18

  
16 19
RDEPEND="
17
	>=dev-libs/glib-2.38.0:2[${MULTILIB_USEDEP}]
18
	>=net-libs/gssdp-1.2:0=[${MULTILIB_USEDEP}]
19
	>=net-libs/gupnp-1.2:0=[${MULTILIB_USEDEP}]
20
	>=dev-libs/glib-2.70.0:2[${MULTILIB_USEDEP}]
21
	>=net-libs/gssdp-1.6:1.6=[${MULTILIB_USEDEP}]
22
	>=net-libs/gupnp-1.6:1.6=[${MULTILIB_USEDEP}]
20 23
	introspection? ( >=dev-libs/gobject-introspection-0.10 )
21 24
"
22 25
DEPEND="${RDEPEND}"
......
28 31
		app-text/docbook-xml-dtd:4.1.2 )
29 32
"
30 33

  
31
# The only existing test is broken
32
#RESTRICT="test"
33

  
34 34
src_prepare() {
35
	xdg_src_prepare
36 35
	default
36
	xdg_environment_reset
37 37
}
38 38

  
39 39
multilib_src_configure() {
Thank you!