[sssd/f15] New upstream release 1.5.14 https://fedorahosted.org/sssd/wiki/Releases/Notes-1.5.14 Improved handli

Stephen Gallagher sgallagh at fedoraproject.org
Wed Oct 19 12:52:52 UTC 2011


commit 3e0b460db9b9c1001b72f8561a2fb250358792cc
Author: Stephen Gallagher <sgallagh at redhat.com>
Date:   Wed Oct 19 08:52:49 2011 -0400

    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

 .gitignore |    1 +
 sources    |    2 +-
 sssd.spec  |   40 ++++++++++++++++++++++++----------------
 3 files changed, 26 insertions(+), 17 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index f80bcc6..54a4444 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
diff --git a/sources b/sources
index 6bf5b13..3a8ccef 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1af754abc762eac63ff5167c7550d65d  sssd-1.5.13.tar.gz
+4a00b154c90e40379275d20247b97ce5  sssd-1.5.14.tar.gz
diff --git a/sssd.spec b/sssd.spec
index 7620747..a47f272 100644
--- a/sssd.spec
+++ b/sssd.spec
@@ -8,8 +8,8 @@
 %global ldb_version 1.0.0-3
 
 Name: sssd
-Version: 1.5.13
-Release: 1%{?dist}.2
+Version: 1.5.14
+Release: 1%{?dist}
 Group: Applications/System
 Summary: System Security Services Daemon
 License: GPLv3+
@@ -84,6 +84,7 @@ BuildRequires: libnl-devel
 BuildRequires: nscd
 BuildRequires: gettext-devel
 BuildRequires: libunistring-devel
+BuildRequires: findutils
 
 %description
 Provides a set of daemons to manage access to remote directories and
@@ -152,13 +153,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
@@ -193,19 +195,11 @@ mkdir -p $RPM_BUILD_ROOT/%{_unitdir}/
 cp src/sysv/systemd/sssd.service $RPM_BUILD_ROOT/%{_unitdir}/
 
 # 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
@@ -240,6 +234,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}
@@ -297,6 +292,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
@@ -351,6 +347,18 @@ fi
 %postun -n libipa_hbac -p /sbin/ldconfig
 
 %changelog
+* Wed Oct 19 2011 Stephen Gallagher <sgallagh at 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 Sep 02 2011 Stephen Gallagher <sgallagh at redhat.com> - 1.5.13-1.2
 - Rebuild with explicit dependency on libldb
 


More information about the scm-commits mailing list