Diff libslirp-4.6.1 with a libslirp-4.7.0

/usr/portage/net-libs/libslirp/libslirp-4.7.0.ebuild 2023-10-09 14:52:34.592368479 +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=7
5 5

  
6 6
inherit meson
7 7

  
8
KEYWORDS="amd64 arm64 ~m68k ~ppc ppc64 ~riscv x86"
8
KEYWORDS="amd64 arm64 ~loong ~m68k ~ppc ppc64 ~riscv x86"
9 9
MY_P="${PN}-v${PV}"
10 10
SRC_URI="https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v${PV}/${MY_P}.tar.gz -> ${P}.tar.gz"
11 11
DESCRIPTION="A TCP-IP emulator used to provide virtual networking services"
......
13 13

  
14 14
LICENSE="BSD"
15 15
SLOT="0"
16
IUSE="static-libs"
16
IUSE="static-libs valgrind"
17 17

  
18 18
RDEPEND="dev-libs/glib:="
19

  
20
DEPEND="${RDEPEND}"
19
# Valgrind usage is automagic but it's not so bad given it's a header-only dep.
20
DEPEND="
21
	${RDEPEND}
22
	valgrind? ( dev-util/valgrind )
23
"
21 24

  
22 25
S=${WORKDIR}/${MY_P}
23 26

  
Thank you!