Diff cifs-utils-7.0-r1 with a cifs-utils-7.4

/usr/portage/net-fs/cifs-utils/cifs-utils-7.4.ebuild 2025-11-18 18:18:07.531421721 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{10..13} )
6
PYTHON_COMPAT=( python3_{11..13} )
7 7

  
8 8
inherit autotools bash-completion-r1 flag-o-matic linux-info pam python-single-r1
9 9

  
......
17 17
IUSE="+acl +ads +caps creds pam +python systemd"
18 18

  
19 19
RDEPEND="
20
	sys-libs/talloc
20 21
	ads? (
21 22
		sys-apps/keyutils:=
22
		sys-libs/talloc
23 23
		virtual/krb5
24 24
	)
25 25
	caps? ( sys-libs/libcap-ng )
......
43 43
DOCS="doc/linux-cifs-client-guide.odt"
44 44

  
45 45
PATCHES=(
46
	"${FILESDIR}/${PN}-6.12-ln_in_destdir.patch" #766594
47
	"${FILESDIR}/${PN}-6.15-musl.patch"
48
	"${FILESDIR}/${PN}-7.0-no-clobber-fortify-source.patch"
49
	"${FILESDIR}/${PN}-7.0-musl.patch"
46
	"${FILESDIR}/${PN}-7.3-no-clobber-fortify-source.patch"
50 47
)
51 48

  
52 49
pkg_setup() {
......
70 67
	default
71 68

  
72 69
	if has_version app-crypt/heimdal ; then
73
		# https://bugs.gentoo.org/612584
70
		# bug #612584
74 71
		eapply "${FILESDIR}/${PN}-6.7-heimdal.patch"
75 72
	fi
76 73

  
......
87 84
		$(use_enable acl cifsacl cifsidmap)
88 85
		$(use_enable ads cifsupcall)
89 86
		$(use_with caps libcap)
87
		$(use_with caps libcap-ng)
90 88
		$(use_enable creds cifscreds)
91 89
		$(use_enable pam)
92 90
		$(use_with pam pamdir $(getpam_mod_dir))
......
94 92
		# mount.cifs can get passwords from systemd
95 93
		$(use_enable systemd)
96 94
	)
97
	ROOTSBINDIR="${EPREFIX}"/sbin \
98
	econf "${myeconfargs[@]}"
95

  
96
	ROOTSBINDIR="${EPREFIX}"/sbin econf "${myeconfargs[@]}"
99 97
}
100 98

  
101 99
src_install() {
Thank you!