Diff logrotate-3.20.1-r1 with a logrotate-3.21.0

/usr/portage/app-admin/logrotate/logrotate-3.21.0.ebuild 2023-10-09 14:52:28.156368316 +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
EAPI=7
4
EAPI=8
5 5

  
6 6
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/kamildudka.asc
7 7
inherit systemd tmpfiles verify-sig
......
16 16
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
17 17
IUSE="acl +cron selinux"
18 18

  
19
DEPEND=">=dev-libs/popt-1.5
19
DEPEND="
20
	>=dev-libs/popt-1.5
20 21
	selinux? ( sys-libs/libselinux )
21
	acl? ( virtual/acl )"
22
RDEPEND="${DEPEND}
22
	acl? ( virtual/acl )
23
"
24
RDEPEND="
25
	${DEPEND}
23 26
	selinux? ( sec-policy/selinux-logrotate )
24
	cron? ( virtual/cron )"
27
	cron? ( virtual/cron )
28
"
25 29
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-kamildudka )"
26 30

  
27 31
STATEFILE="${EPREFIX}/var/lib/misc/logrotate.status"
......
29 33

  
30 34
PATCHES=(
31 35
	"${FILESDIR}"/${PN}-3.15.0-ignore-hidden.patch
32
	"${FILESDIR}"/${P}-log-changes.patch
33 36
)
34 37

  
35 38
move_old_state_file() {
Thank you!