Diff zfs-auto-snapshot-1.2.4-r2 with a zfs-auto-snapshot-1.2.4-r3

/usr/portage/sys-fs/zfs-auto-snapshot/zfs-auto-snapshot-1.2.4-r3.ebuild 2023-10-09 14:52:35.524368502 +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
inherit prefix readme.gentoo-r1 systemd
7 7

  
......
11 11
else
12 12
	MY_P="${PN}-upstream-${PV}"
13 13
	SRC_URI="https://github.com/zfsonlinux/${PN}/archive/upstream/${PV}.tar.gz -> ${MY_P}.tar.gz"
14
	KEYWORDS="amd64 arm64 ppc64 ~riscv"
14
	KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv"
15 15
	S="${WORKDIR}/${MY_P}"
16 16
fi
17 17

  
......
23 23
IUSE="+cron +default-exclude systemd"
24 24

  
25 25
RDEPEND="
26
	sys-apps/which
27 26
	sys-fs/zfs
28 27
	!systemd? ( virtual/cron )
29 28
"
30 29

  
31 30
REQUIRED_USE="!systemd? ( cron )"
32 31

  
32
PATCHES=(
33
	"${FILESDIR}"/${PN}-1.2.4-drop-which.patch
34
)
35

  
33 36
src_install() {
34 37
	if use default-exclude; then
35 38
		for cronfile in etc/"${PN}".cron.{daily,hourly,monthly,weekly}; do
Thank you!