Diff openldap-2.6.4-r2 with a openldap-2.6.5

/usr/portage/net-nds/openldap/openldap-2.6.5.ebuild 2023-10-09 14:52:34.724368482 +0300
34 34
IUSE_CONTRIB="kerberos kinit pbkdf2 sha2 smbkrb5passwd"
35 35
IUSE_CONTRIB="${IUSE_CONTRIB} cxx"
36 36
IUSE="systemd ${IUSE_DAEMON} ${IUSE_BACKEND} ${IUSE_OVERLAY} ${IUSE_OPTIONAL} ${IUSE_CONTRIB}"
37
REQUIRED_USE="cxx? ( sasl )
37
REQUIRED_USE="
38
	cxx? ( sasl )
38 39
	pbkdf2? ( ssl )
39 40
	test? ( cleartext sasl )
40 41
	autoca? ( !gnutls )
41 42
	?? ( test minimal )
42
	kerberos? ( ?? ( kinit smbkrb5passwd ) )"
43
	kerberos? ( ?? ( kinit smbkrb5passwd ) )
44
"
43 45
RESTRICT="!test? ( test )"
44 46

  
45
SYSTEM_LMDB_VER=0.9.30
47
SYSTEM_LMDB_VER=0.9.31
46 48
# openssl is needed to generate lanman-passwords required by samba
47 49
COMMON_DEPEND="
48 50
	kernel_linux? ( sys-apps/util-linux )
......
80 82
		)
81 83
	)
82 84
"
83
DEPEND="${COMMON_DEPEND}
85
DEPEND="
86
	${COMMON_DEPEND}
84 87
	sys-apps/groff
85 88
"
86
RDEPEND="${COMMON_DEPEND}
89
RDEPEND="
90
	${COMMON_DEPEND}
87 91
	selinux? ( sec-policy/selinux-ldap )
88 92
"
89 93

  
90 94
# The user/group are only used for running daemons which are
91 95
# disabled in minimal builds, so elide the accounts too.
92
BDEPEND="!minimal? (
96
BDEPEND="
97
	!minimal? (
93 98
		acct-group/ldap
94 99
		acct-user/ldap
95
)
100
	)
96 101
"
97 102

  
98 103
# for tracking versions
......
143 148
	"${FILESDIR}"/${PN}-2.6.1-cloak.patch
144 149
	"${FILESDIR}"/${PN}-2.6.1-flags.patch
145 150
	"${FILESDIR}"/${PN}-2.6.1-fix-missing-mapping.patch
146
	"${FILESDIR}"/${PN}-2.6.4-clang16.patch
147
	"${FILESDIR}"/${PN}-2.6.4-libressl.patch #903001
148 151
)
149 152

  
150 153
openldap_filecount() {
......
680 683
		#TESTS+=( pldif ) # not done by default, so also exclude here
681 684
		#use odbc && TESTS+=( psql ) # not done by default, so also exclude here
682 685

  
683
		emake "${TESTS[@]}"
686
		emake -Onone "${TESTS[@]}"
684 687
	fi
685 688
}
686 689

  
Thank you!