Diff rear-2.6 with a rear-2.7

/usr/portage/app-backup/rear/rear-2.7.ebuild 2023-10-09 14:52:28.204368318 +0300
1
# Copyright 2020-2021 Gentoo Authors
1
# Copyright 2020-2022 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 optfeature udev
7 7

  
......
29 29
	udev? ( virtual/udev )
30 30
"
31 31

  
32
PATCHES=(
33
	"${FILESDIR}/${P}-Makefile.patch"
34
)
35

  
36 32
src_compile() { :; }
37 33

  
38 34
src_install() {
......
51 47
}
52 48

  
53 49
pkg_postinst() {
54
	if use udev ; then
50
	if use udev; then
55 51
		udev_reload
56 52
	fi
57 53

  
58 54
	optfeature "saving backups on smb/cifs servers" net-fs/cifs-utils
59 55
	optfeature "encrypting backups" dev-libs/openssl
60 56
}
57

  
58
pkg_postrm() {
59
	if use udev; then
60
		udev_reload
61
	fi
62
}
Thank you!