Diff needrestart-3.6 with a needrestart-9999

/usr/portage/app-admin/needrestart/needrestart-9999.ebuild 2024-12-25 14:59:47.027270038 +0300
6 6
if [[ ${PV} == "9999" ]] ; then
7 7
	EGIT_REPO_URI="https://github.com/liske/${PN}.git"
8 8
	inherit git-r3
9
	SRC_URI=""
10 9
else
11 10
	SRC_URI="https://github.com/liske/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
12
	KEYWORDS="amd64 ~arm arm64 x86"
11
	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
13 12
fi
14 13

  
15 14
DESCRIPTION="Restart daemons after library updates"
16 15
HOMEPAGE="https://fiasko-nw.net/~thomas/tag/needrestart.html https://github.com/liske/needrestart"
17

  
18
SLOT="0"
19 16
LICENSE="GPL-2+"
17
SLOT="0"
18
IUSE="systemd"
20 19

  
21 20
RDEPEND="
22 21
	>=sys-apps/sed-4.2.2
23 22
	dev-lang/perl:=
24 23
	dev-perl/libintl-perl
25 24
	dev-perl/Module-Find
26
	dev-perl/Module-ScanDeps
27 25
	dev-perl/Proc-ProcessTable
28 26
	dev-perl/Sort-Naturally
29 27
	dev-perl/TermReadKey
30
	sys-apps/init-system-helpers
28
	!systemd? ( sys-apps/init-system-helpers )
31 29
	amd64? ( sys-apps/iucode_tool )
32 30
	x86? ( sys-apps/iucode_tool )
33 31
"
Thank you!