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

/usr/portage/sys-fs/zfs-auto-snapshot/zfs-auto-snapshot-9999.ebuild 2023-10-09 14:52:35.524368502 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=8
4
EAPI=7
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
26 27
	sys-fs/zfs
27 28
	!systemd? ( virtual/cron )
28 29
"
29 30

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

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

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