Diff srt-1.5.1 with a srt-1.5.3

/usr/portage/net-libs/srt/srt-1.5.3.ebuild 2025-02-03 17:39:35.886677838 +0300
1
# Copyright 2018-2024 Gentoo Authors
1
# Copyright 2018-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
13 13
	inherit git-r3
14 14
else
15 15
	SRC_URI="https://github.com/Haivision/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
16
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv -sparc x86 ~ppc-macos ~x64-macos"
16
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv -sparc x86 ~ppc-macos ~x64-macos"
17 17
fi
18 18

  
19 19
LICENSE="MPL-2.0"
......
32 32
"
33 33
DEPEND="${RDEPEND}"
34 34
BDEPEND="virtual/pkgconfig
35
	test? ( >=dev-cpp/gtest-1.8[${MULTILIB_USEDEP}] )"
35
	test? ( >=dev-cpp/gtest-1.10[${MULTILIB_USEDEP}] )"
36 36

  
37 37
src_configure() {
38 38
	# ODR violations
......
40 40
	filter-lto
41 41

  
42 42
	local mycmakeargs=(
43
		-DUSE_CXX_STD=c++14 # Required for gtest
43 44
		-DENABLE_STATIC=OFF
45
		# Bonding is experimental in 1.5, but works good and doesn't affect anything when not enabled with API calls
46
		-DENABLE_BONDING=ON
44 47
		-DENABLE_UNITTESTS=$(usex test)
45
		-DENABLE_TESTING=$(usex test)
48
		-DENABLE_TESTING=OFF # Not installed developer/testing tools
46 49
		-DUSE_GNUTLS=$(usex gnutls)
47 50
	)
48 51
	cmake-multilib_src_configure
Thank you!