Diff icinga2-2.15.4 with a icinga2-9999

/usr/portage/net-analyzer/icinga2/icinga2-9999.ebuild 2026-04-29 00:17:39.380619250 +0300
5 5

  
6 6
inherit cmake eapi9-ver
7 7

  
8
# https://bugs.gentoo.org/960527#c9
9
CMAKE_QA_COMPAT_SKIP=1
10

  
11 8
if [[ ${PV} != 9999 ]]; then
12 9
	SRC_URI="https://github.com/Icinga/icinga2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
13
	KEYWORDS="amd64 ~arm64 x86"
10
	KEYWORDS="~amd64 ~arm64 ~x86"
14 11
else
15 12
	inherit git-r3
16 13
	EGIT_REPO_URI="https://github.com/Icinga/icinga2.git"
......
21 18

  
22 19
LICENSE="GPL-2"
23 20
SLOT="0"
24
IUSE="console jumbo-build mail mariadb minimal +mysql +plugins postgres test systemd"
25
RESTRICT="!test? ( test )"
21
IUSE="console jumbo-build mail mariadb minimal +mysql opentelemetry +plugins postgres systemd"
26 22

  
27 23
# Add accounts to DEPEND because of fowners in src_install
28 24
DEPEND="
......
64 60
		-DICINGA2_GROUP=icingacmd
65 61
		-DICINGA2_COMMAND_GROUP=icingacmd
66 62
		-DICINGA2_RUNDIR=/run
63
		-DICINGA2_WITH_OPENTELEMETRY=$(usex opentelemetry)
67 64
		-DINSTALL_SYSTEMD_SERVICE_AND_INITSCRIPT=ON
68 65
		-DUSE_SYSTEMD=$(usex systemd)
69
		-DICINGA2_WITH_TESTS=$(usex test)
70 66
		-DLOGROTATE_HAS_SU=ON
71 67
		# only appends -flto
72 68
		-DICINGA2_LTO_BUILD=OFF
Thank you!