Diff openldap-2.5.14 with a openldap-2.5.16
/usr/portage/net-nds/openldap/openldap-2.5.16.ebuild 2024-12-25 14:59:51.275270145 +0300 | ||
---|---|---|
25 | 25 |
LICENSE="OPENLDAP GPL-2" |
26 | 26 |
# Subslot added for bug #835654 |
27 | 27 |
SLOT="0/$(ver_cut 1-2)" |
28 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" |
|
28 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" |
|
29 | 29 | |
30 | 30 |
IUSE_DAEMON="argon2 +cleartext crypt experimental minimal samba tcpd" |
31 | 31 |
IUSE_OVERLAY="overlays perl autoca" |
... | ... | |
41 | 41 |
kerberos? ( ?? ( kinit smbkrb5passwd ) )" |
42 | 42 |
RESTRICT="!test? ( test )" |
43 | 43 | |
44 |
SYSTEM_LMDB_VER=0.9.30 |
|
44 |
SYSTEM_LMDB_VER=0.9.31 |
|
45 | 45 |
# openssl is needed to generate lanman-passwords required by samba |
46 | 46 |
COMMON_DEPEND=" |
47 | 47 |
kernel_linux? ( sys-apps/util-linux ) |
... | ... | |
140 | 140 |
"${FILESDIR}"/${PN}-2.6.1-system-mdb.patch |
141 | 141 |
"${FILESDIR}"/${PN}-2.6.1-cloak.patch |
142 | 142 |
"${FILESDIR}"/${PN}-2.6.1-flags.patch |
143 |
"${FILESDIR}"/${PN}-2.6.4-clang16.patch |
|
144 |
"${FILESDIR}"/${PN}-2.6.4-libressl.patch #903001 |
|
145 | 143 |
) |
146 | 144 | |
147 | 145 |
openldap_filecount() { |
... | ... | |
341 | 339 |
# the bundled lmdb's header to find out the version. |
342 | 340 |
local bundled_lmdb_version=$( |
343 | 341 |
sed -En '/^#define MDB_VERSION_(MAJOR|MINOR|PATCH)(\s+)?/{s/[^0-9.]//gp}' \ |
344 |
libraries/liblmdb/lmdb.h || die |
|
345 |
) |
|
342 |
libraries/liblmdb/lmdb.h || die |
|
343 |
) |
|
346 | 344 |
printf -v bundled_lmdb_version "%s." ${bundled_lmdb_version} |
347 | 345 | |
348 | 346 |
if [[ ${SYSTEM_LMDB_VER}. != ${bundled_lmdb_version} ]] ; then |
... | ... | |
677 | 675 |
#TESTS+=( pldif ) # not done by default, so also exclude here |
678 | 676 |
#use odbc && TESTS+=( psql ) # not done by default, so also exclude here |
679 | 677 | |
680 |
emake "${TESTS[@]}" |
|
678 |
emake -Onone "${TESTS[@]}" |
|
681 | 679 |
fi |
682 | 680 |
} |
683 | 681 |