New upstream release 1.5.14

https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.14
Improved handling of users and groups with multi-valued name attributes
(aliases)
Performance enhancements
* Initgroups on RFC2307bis/FreeIPA
* HBAC rule processing
Improved process-hang detection and restarting
Enabled the midpoint cache refresh by default (fewer cache misses on commonly-used entries)
Cleaned up the example configuration

Conflicts:

	sssd.spec
This commit is contained in:
Stephen Gallagher 2011-10-19 08:52:49 -04:00
parent ebddd863fe
commit 08da919e6e
3 changed files with 25 additions and 16 deletions

1
.gitignore vendored
View File

@ -17,3 +17,4 @@ sssd-1.2.91.tar.gz
/sssd-1.5.11.tar.gz
/sssd-1.5.12.tar.gz
/sssd-1.5.13.tar.gz
/sssd-1.5.14.tar.gz

View File

@ -1 +1 @@
1af754abc762eac63ff5167c7550d65d sssd-1.5.13.tar.gz
4a00b154c90e40379275d20247b97ce5 sssd-1.5.14.tar.gz

View File

@ -8,7 +8,7 @@
%global ldb_version 0.9.10
Name: sssd
Version: 1.5.13
Version: 1.5.14
Release: 1%{?dist}
Group: Applications/System
Summary: System Security Services Daemon
@ -80,6 +80,7 @@ BuildRequires: nscd
BuildRequires: gettext-devel
BuildRequires: pkgconfig
BuildRequires: libunistring-devel
BuildRequires: findutils
%description
Provides a set of daemons to manage access to remote directories and
@ -148,13 +149,14 @@ autoreconf -ivf
--with-pipe-path=%{pipepath} \
--with-pubconf-path=%{pubconfpath} \
--with-init-dir=%{_initrddir} \
--with-krb5-rcache-dir=%{_localstatedir}/cache/krb5rcache \
--enable-nsslibdir=/%{_lib} \
--enable-pammoddir=/%{_lib}/security \
--disable-static \
--disable-rpath \
--with-test-dir=/dev/shm
make %{?_smp_mflags}
make %{?_smp_mflags} all docs
%check
export CK_TIMEOUT_MULTIPLIER=10
@ -184,19 +186,11 @@ mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/rwtab.d
install -m644 src/examples/rwtab $RPM_BUILD_ROOT%{_sysconfdir}/rwtab.d/sssd
# Remove .la files created by libtool
rm -f \
$RPM_BUILD_ROOT/%{_lib}/libnss_sss.la \
$RPM_BUILD_ROOT/%{_lib}/security/pam_sss.la \
$RPM_BUILD_ROOT/%{ldb_modulesdir}/memberof.la \
$RPM_BUILD_ROOT/%{_libdir}/sssd/libsss_ldap.la \
$RPM_BUILD_ROOT/%{_libdir}/sssd/libsss_proxy.la \
$RPM_BUILD_ROOT/%{_libdir}/sssd/libsss_krb5.la \
$RPM_BUILD_ROOT/%{_libdir}/sssd/libsss_ipa.la \
$RPM_BUILD_ROOT/%{_libdir}/sssd/libsss_simple.la \
$RPM_BUILD_ROOT/%{_libdir}/krb5/plugins/libkrb5/sssd_krb5_locator_plugin.la \
$RPM_BUILD_ROOT/%{_libdir}/libipa_hbac.la \
$RPM_BUILD_ROOT/%{python_sitearch}/pysss.la \
$RPM_BUILD_ROOT/%{python_sitearch}/pyhbac.la
find $RPM_BUILD_ROOT -name "*.la" -exec rm -f {} \;
# Suppress developer-only documentation
rm -Rf ${RPM_BUILD_ROOT}/%{_docdir}/%{name}/doc
# Older versions of rpmbuild can only handle one -f option
# So we need to append to the sssd.lang file
@ -231,6 +225,7 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/%{name}/
%{ldb_modulesdir}/memberof.so
%dir %{sssdstatedir}
%dir %{_localstatedir}/cache/krb5rcache
%attr(700,root,root) %dir %{dbpath}
%attr(755,root,root) %dir %{pipepath}
%attr(755,root,root) %dir %{pubconfpath}
@ -288,6 +283,7 @@ rm -rf $RPM_BUILD_ROOT
%files -n libipa_hbac-devel
%defattr(-,root,root,-)
%doc hbac_doc/html
%{_includedir}/ipa_hbac.h
%{_libdir}/libipa_hbac.so
%{_libdir}/pkgconfig/ipa_hbac.pc
@ -321,6 +317,18 @@ fi
%postun -n libipa_hbac -p /sbin/ldconfig
%changelog
* Wed Oct 19 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.14-1
- New upstream release 1.5.14
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.14
- Improved handling of users and groups with multi-valued name attributes
(aliases)
- Performance enhancements
* Initgroups on RFC2307bis/FreeIPA
* HBAC rule processing
- Improved process-hang detection and restarting
- Enabled the midpoint cache refresh by default (fewer cache misses on commonly-used entries)
- Cleaned up the example configuration
* Mon Aug 29 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.5.13-1
- New upstream release 1.5.13
- https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.13