# This package, openldap-epel, is an EPEL only package. # Its spec file is based on the openldap spec file in RHEL 9. # The purpose is to provide the openldap-servers RPM in EPEL 9. %global _hardened_build 1 %global systemctl_bin /usr/bin/systemctl %global check_password_version 1.1 %global so_ver 2 %global so_ver_compat 2 %bcond_without servers # When you change "Version: " to the new major version, remember to change this value too %global major_version 2.6 # Disable automatic .la file removal %global __brp_remove_la_files %nil Name: openldap-epel Version: 2.6.6 Release: 3%{?dist} Summary: OpenLDAP servers for EPEL License: OLDAP-2.8 URL: http://www.openldap.org/ Source0: https://openldap.org/software/download/OpenLDAP/openldap-release/openldap-%{version}.tgz Source1: slapd.service Source2: slapd.tmpfiles Source3: slapd.ldif Source4: ldap.conf Source6: openldap.sysusers Source10: https://github.com/ltb-project/openldap-ppolicy-check-password/archive/v%{check_password_version}/openldap-ppolicy-check-password-%{check_password_version}.tar.gz Source50: libexec-functions Source52: libexec-check-config.sh # Patches for 2.6 Patch0: openldap-manpages.patch Patch1: openldap-reentrant-gethostby.patch Patch3: openldap-smbk5pwd-overlay.patch Patch4: openldap-ai-addrconfig.patch Patch5: openldap-allop-overlay.patch # fix back_perl problems with lt_dlopen() # might cause crashes because of symbol collisions # the proper fix is to link all perl modules against libperl # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=327585 Patch6: openldap-switch-to-lt_dlopenadvise-to-get-RTLD_GLOBAL-set.patch # System-wide default for CA certs Patch7: openldap-openssl-manpage-defaultCA.patch Patch8: openldap-add-export-symbols-LDAP_CONNECTIONLESS.patch Patch9: openldap-Revert-ITS-8618-Remove-deprecated-h-and-p.patch Patch10: openldap-Revert-ITS-9917-Remove--h-and-p-from-options.patch # check-password module specific patches Patch90: check-password-makefile.patch Patch91: check-password.patch BuildRequires: cyrus-sasl-devel BuildRequires: gcc BuildRequires: glibc-devel BuildRequires: groff BuildRequires: krb5-devel BuildRequires: libtool-ltdl-devel BuildRequires: libevent-devel BuildRequires: make BuildRequires: openssl-devel BuildRequires: perl(ExtUtils::Embed) BuildRequires: perl-devel BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: unixODBC-devel BuildRequires: systemd BuildRequires: libdb-devel BuildRequires: cracklib-devel BuildRequires: systemd-rpm-macros %{?sysusers_requires_compat} %description OpenLDAP is an open source suite of LDAP (Lightweight Directory Access Protocol) applications and development tools. LDAP is a set of protocols for accessing directory services (usually phone book style information, but other information is possible) over the Internet, similar to the way DNS (Domain Name System) information is propagated over the Internet. The openldap package contains configuration files, libraries, and documentation for OpenLDAP. %if %{with servers} %package -n openldap-servers Summary: LDAP server License: OpenLDAP Requires: openldap%{?_isa} = %{version} %{?systemd_requires} Requires(pre): shadow-utils # migrationtools (slapadd functionality): Provides: ldif2ldbm %description -n openldap-servers OpenLDAP is an open-source suite of LDAP (Lightweight Directory Access Protocol) applications and development tools. LDAP is a set of protocols for accessing directory services (usually phone book style information, but other information is possible) over the Internet, similar to the way DNS (Domain Name System) information is propagated over the Internet. This package contains the slapd server and related files. # endif with servers %endif %prep %setup -q -c -a 0 -a 10 pushd openldap-%{version} %patch -P0 -p1 %patch -P1 -p1 %patch -P3 -p1 %patch -P4 -p1 %patch -P5 -p1 %patch -P6 -p1 %patch -P7 -p1 %patch -P8 -p1 %patch -P9 -p1 %patch -P10 -p1 # build smbk5pwd with other overlays ln -s ../../../contrib/slapd-modules/smbk5pwd/smbk5pwd.c servers/slapd/overlays mv contrib/slapd-modules/smbk5pwd/README contrib/slapd-modules/smbk5pwd/README.smbk5pwd # build allop with other overlays ln -s ../../../contrib/slapd-modules/allop/allop.c servers/slapd/overlays mv contrib/slapd-modules/allop/README contrib/slapd-modules/allop/README.allop mv contrib/slapd-modules/allop/slapo-allop.5 doc/man/man5/slapo-allop.5 mv servers/slapd/back-perl/README{,.back_perl} # fix documentation encoding for filename in doc/drafts/draft-ietf-ldapext-acl-model-xx.txt; do iconv -f iso-8859-1 -t utf-8 "$filename" > "$filename.utf8" mv "$filename.utf8" "$filename" done popd pushd openldap-ppolicy-check-password-%{check_password_version} %patch -P90 -p1 %patch -P91 -p1 popd %build %set_build_flags # enable experimental support for LDAP over UDP (LDAP_CONNECTIONLESS) export CFLAGS="${CFLAGS} ${LDFLAGS} -Wl,--as-needed -Wl,-z,now -DLDAP_CONNECTIONLESS" pushd openldap-%{version} %configure \ --enable-debug \ --enable-dynamic \ --enable-versioning \ \ --enable-dynacl \ --enable-cleartext \ --enable-crypt \ --enable-lmpasswd \ --enable-spasswd \ --enable-modules \ --enable-perl \ --enable-rewrite \ --enable-rlookups \ --enable-slapi \ --disable-slp \ \ --enable-backends=mod \ --enable-bdb=yes \ --enable-hdb=yes \ --enable-mdb=yes \ --enable-monitor=yes \ --disable-ndb \ --disable-sql \ --disable-wt \ \ --enable-overlays=mod \ \ --disable-static \ \ --enable-balancer=mod \ \ --with-cyrus-sasl \ --without-fetch \ --with-threads \ --with-pic \ --with-gnu-ld \ \ --libexecdir=%{_libdir} %make_build popd pushd openldap-ppolicy-check-password-%{check_password_version} %make_build LDAP_INC="-I../openldap-%{version}/include \ -I../openldap-%{version}/servers/slapd \ -I../openldap-%{version}/build-servers/include" popd %install mkdir -p %{buildroot}%{_libdir}/ %if %{with servers} install -p -D -m 0644 %{SOURCE6} %{buildroot}%{_sysusersdir}/openldap.conf %endif pushd openldap-%{version} %make_install STRIP_OPTS="" popd # install check_password module pushd openldap-ppolicy-check-password-%{check_password_version} mv check_password.so check_password.so.%{check_password_version} ln -s check_password.so.%{check_password_version} %{buildroot}%{_libdir}/openldap/check_password.so install -m 755 check_password.so.%{check_password_version} %{buildroot}%{_libdir}/openldap/ # install -m 644 README %{buildroot}%{_libdir}/openldap install -d -m 755 %{buildroot}%{_sysconfdir}/openldap cat > %{buildroot}%{_sysconfdir}/openldap/check_password.conf </dev/null || : /usr/sbin/slapadd -F %{_sysconfdir}/openldap/slapd.d/ -n0 -l %{_datadir}/openldap-servers/slapd.ldif chown -R ldap:ldap %{_sysconfdir}/openldap/slapd.d/ %{systemctl_bin} try-restart slapd.service &>/dev/null fi # restart after upgrade if [ $1 -ge 1 ]; then %{systemctl_bin} condrestart slapd.service &>/dev/null || : fi exit 0 %preun -n openldap-servers %systemd_preun slapd.service %postun -n openldap-servers %systemd_postun_with_restart slapd.service # endif with servers %endif %if %{with servers} %files -n openldap-servers %doc openldap-%{version}/contrib/slapd-modules/smbk5pwd/README.smbk5pwd %doc openldap-%{version}/doc/guide/admin/*.html %doc openldap-%{version}/doc/guide/admin/*.png %doc openldap-%{version}/servers/slapd/back-perl/SampleLDAP.pm %doc openldap-%{version}/servers/slapd/back-perl/README.back_perl %doc openldap-ppolicy-check-password-%{check_password_version}/README.check_pwd %doc README.schema %config(noreplace) %dir %attr(0750,ldap,ldap) %{_sysconfdir}/openldap/slapd.d %config(noreplace) %{_sysconfdir}/openldap/schema %config(noreplace) %{_sysconfdir}/openldap/check_password.conf %{_tmpfilesdir}/slapd.conf %dir %attr(0700,ldap,ldap) %{_sharedstatedir}/ldap %dir %attr(-,ldap,ldap) %{_localstatedir}/run/openldap %{_unitdir}/slapd.service %{_datadir}/openldap-servers/ %{_libdir}/openldap/accesslog* %{_libdir}/openldap/allop* %{_libdir}/openldap/auditlog* %{_libdir}/openldap/autoca* %{_libdir}/openldap/back_asyncmeta* %{_libdir}/openldap/back_dnssrv* %{_libdir}/openldap/back_ldap* %{_libdir}/openldap/back_meta* %{_libdir}/openldap/back_null* %{_libdir}/openldap/back_passwd* %{_libdir}/openldap/back_relay* %{_libdir}/openldap/back_sock* %{_libdir}/openldap/check_password* %{_libdir}/openldap/collect* %{_libdir}/openldap/constraint* %{_libdir}/openldap/dds* %{_libdir}/openldap/deref* %{_libdir}/openldap/dyngroup* %{_libdir}/openldap/dynlist* %{_libdir}/openldap/home* %{_libdir}/openldap/lloadd* %{_libdir}/openldap/memberof* %{_libdir}/openldap/otp* %{_libdir}/openldap/pcache* %{_libdir}/openldap/ppolicy* %{_libdir}/openldap/refint* %{_libdir}/openldap/remoteauth* %{_libdir}/openldap/retcode* %{_libdir}/openldap/rwm* %{_libdir}/openldap/seqmod* %{_libdir}/openldap/smbk5pwd* %{_libdir}/openldap/sssvlv* %{_libdir}/openldap/syncprov* %{_libdir}/openldap/translucent* %{_libdir}/openldap/unique* %{_libdir}/openldap/valsort* %{_libexecdir}/openldap/functions %{_libexecdir}/openldap/check-config.sh %{_sbindir}/sl* %{_mandir}/man8/* %{_mandir}/man5/lloadd.conf.5* %{_mandir}/man5/slapd*.5* %{_mandir}/man5/slapo-*.5* %{_mandir}/man5/slappw-argon2.5* %{_sysusersdir}/openldap.conf # obsolete configuration %ghost %config(noreplace,missingok) %attr(0640,ldap,ldap) %{_sysconfdir}/openldap/slapd.conf %else %exclude %{_datadir}/openldap-servers/ %exclude %{_libdir}/openldap/ %exclude %{_libexecdir}/openldap/check-config.sh %exclude %{_libexecdir}/openldap/functions %exclude %{_mandir}/man5/slapd*.5* %exclude %{_mandir}/man5/slapo-*.5* %exclude %{_mandir}/man5/lloadd.conf.5* %exclude %{_mandir}/man5/slappw-argon2.5* %exclude %{_mandir}/man8/* %exclude %{_sbindir}/sl* %exclude %{_sysconfdir}/openldap/check_password.conf %exclude %{_sysconfdir}/openldap/schema %exclude %{_tmpfilesdir}/slapd.conf %exclude %{_unitdir}/slapd.service # endif with servers %endif %changelog * Fri Jul 26 2024 Mattias Ellert - 2.6.6-3 - Remove UPGRADE_INSTRUCTIONS for openldap-server upgrade * Fri May 03 2024 Mattias Ellert - 2.6.6-2 - Rebuild and update for RHEL 9.4 * Sat Jan 27 2024 Mattias Ellert - 2.6.6-1 - Update to version 2.6.6 for RHEL 9.4 * Wed Nov 15 2023 Mattias Ellert - 2.6.3-1 - Update to version 2.6.3 for RHEL 9.3 * Wed Sep 21 2022 Mattias Ellert - 2.6.2-2 - Build for EPEL 9 * Fri Sep 02 2022 Mattias Ellert - 2.6.2-1 - Update to version 2.6.2 for epel-next (centos-stream) * Fri Sep 02 2022 Mattias Ellert - 2.4.59-2 - Add versioned dependency on RHEL package (version only, not release) * Fri Feb 04 2022 Mattias Ellert - 2.4.59-1 - EPEL only package providing the openldap-servers RPM - Spec file based on the openldap spec file in RHEL 9