Diff logwatch-7.7 with a logwatch-7.8-r1

/usr/portage/sys-apps/logwatch/logwatch-7.8-r1.ebuild 2023-10-09 14:52:35.384368499 +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=8
5 5

  
6 6
inherit tmpfiles
7 7

  
8
DESCRIPTION="Analyzes and Reports on system logs"
9
HOMEPAGE="https://sourceforge.net/projects/logwatch/"
10

  
8 11
if [[ ${PV} == 9999 ]] ; then
9 12
	EGIT_REPO_URI="https://git.code.sf.net/p/logwatch/git ${PN}"
10 13
	inherit git-r3
......
13 16
	KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 sparc x86"
14 17
fi
15 18

  
16
DESCRIPTION="Analyzes and Reports on system logs"
17
HOMEPAGE="https://sourceforge.net/projects/logwatch/"
18

  
19 19
LICENSE="MIT"
20 20
SLOT="0"
21
IUSE="selinux"
21 22

  
22 23
RDEPEND="
23 24
	dev-lang/perl
24 25
	dev-perl/Date-Calc
25 26
	dev-perl/Date-Manip
27
	dev-perl/HTML-Parser
26 28
	dev-perl/Tie-IxHash
27 29
	dev-perl/Sys-CPU
28 30
	dev-perl/Sys-MemInfo
29 31
	virtual/cron
30 32
	virtual/mta
31 33
	virtual/mailx
34
	selinux? ( sec-policy/selinux-logwatch )
32 35
"
33 36

  
34 37
src_install() {
Thank you!