1f83c0
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
1f83c0
1f83c0
Name: libuser
1f83c0
Version: 0.60
1f83c0
Release: 9%{?dist}
1f83c0
Group: System Environment/Base
1f83c0
License: LGPLv2+
1f83c0
URL: https://fedorahosted.org/libuser/
1f83c0
Source: https://fedorahosted.org/releases/l/i/libuser/libuser-%{version}.tar.xz
1f83c0
# https://bugzilla.redhat.com/show_bug.cgi?id=1480537
1f83c0
Source1: libuser-0.60-ja.po
1f83c0
Patch0: libuser-CVE-2015-3246.patch
1f83c0
BuildRequires: glib2-devel, linuxdoc-tools, pam-devel, popt-devel, python2-devel
1f83c0
BuildRequires: cyrus-sasl-devel, libselinux-devel, openldap-devel
1f83c0
# To make sure the configure script can find it
1f83c0
BuildRequires: nscd
1f83c0
# For %%check
1f83c0
BuildRequires: openldap-clients, openldap-servers, openssl
1f83c0
BuildRequires: gettext
1f83c0
Summary: A user and group account administration library
1f83c0
1f83c0
%description
1f83c0
The libuser library implements a standardized interface for manipulating
1f83c0
and administering user and group accounts.  The library uses pluggable
1f83c0
back-ends to interface to its data sources.
1f83c0
1f83c0
Sample applications modeled after those included with the shadow password
1f83c0
suite are included.
1f83c0
1f83c0
%package devel
1f83c0
Group: Development/Libraries
1f83c0
Summary: Files needed for developing applications which use libuser
1f83c0
Requires: %{name}%{?_isa} = %{version}-%{release}
1f83c0
Requires: glib2-devel%{?_isa}
1f83c0
1f83c0
%description devel
1f83c0
The libuser-devel package contains header files, static libraries, and other
1f83c0
files useful for developing applications with libuser.
1f83c0
1f83c0
%package python
1f83c0
Summary: Python bindings for the libuser library
1f83c0
Group: Development/Libraries
1f83c0
Requires: libuser%{?_isa} = %{version}-%{release}
1f83c0
1f83c0
%description python
1f83c0
The libuser-python package contains the Python bindings for
1f83c0
the libuser library, which provides a Python API for manipulating and
1f83c0
administering user and group accounts.
1f83c0
1f83c0
%prep
1f83c0
%setup -q
1f83c0
1f83c0
%patch0 -p1 -b .CVE-2015-3246
1f83c0
cp %{SOURCE1} po/ja.po
1f83c0
1f83c0
%build
1f83c0
%configure --with-selinux --with-ldap --with-html-dir=%{_datadir}/gtk-doc/html
1f83c0
make
1f83c0
make -C po ja.gmo # (make all) only rebuilds .gmo files if the .pot file is updated, regardless of po/ja.po changes
1f83c0
1f83c0
%install
1f83c0
make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
1f83c0
1f83c0
%find_lang %{name}
1f83c0
1f83c0
%check
1f83c0
1f83c0
make check || { cat test-suite.log; false; }
1f83c0
1f83c0
# Verify that all python modules load, just in case.
1f83c0
LD_LIBRARY_PATH=$RPM_BUILD_ROOT/%{_libdir}:${LD_LIBRARY_PATH}
1f83c0
export LD_LIBRARY_PATH
1f83c0
cd $RPM_BUILD_ROOT/%{python_sitearch}
1f83c0
python -c "import libuser"
1f83c0
1f83c0
%post -p /sbin/ldconfig
1f83c0
1f83c0
%postun -p /sbin/ldconfig
1f83c0
1f83c0
%files -f %{name}.lang
1f83c0
%doc AUTHORS COPYING NEWS README TODO docs/*.txt
1f83c0
%config(noreplace) %{_sysconfdir}/libuser.conf
1f83c0
1f83c0
%attr(0755,root,root) %{_bindir}/*
1f83c0
%{_libdir}/*.so.*
1f83c0
%dir %{_libdir}/%{name}
1f83c0
%{_libdir}/%{name}/*.so
1f83c0
%attr(0755,root,root) %{_sbindir}/*
1f83c0
%{_mandir}/man1/*
1f83c0
%{_mandir}/man5/*
1f83c0
1f83c0
%exclude %{_libdir}/*.la
1f83c0
%exclude %{_libdir}/%{name}/*.la
1f83c0
1f83c0
%files python
1f83c0
%doc python/modules.txt
1f83c0
%{python_sitearch}/*.so
1f83c0
%exclude %{python_sitearch}/*.la
1f83c0
1f83c0
%files devel
1f83c0
%{_includedir}/libuser
1f83c0
%{_libdir}/*.so
1f83c0
%{_libdir}/pkgconfig/*
1f83c0
%{_datadir}/gtk-doc/html/*
1f83c0
1f83c0
%changelog
1f83c0
* Mon Jan 15 2018 Miloslav Trmač <mitr@redhat.com> - 0.60-9
1f83c0
- Update Japanese translation
1f83c0
  Resolves: #1480537
1f83c0
1f83c0
* Tue Dec  5 2017 Miloslav Trmač <mitr@redhat.com> - 0.60-8
1f83c0
- Update Japanese translation
1f83c0
  Resolves: #1480537
1f83c0
1f83c0
* Wed Jul  8 2015 Miloslav Trmač <mitr@redhat.com> - 0.60-7
1f83c0
- Update CVE-2015-3246 patch based on review comments
1f83c0
  Resolves: #1235520
1f83c0
1f83c0
* Fri Jun 26 2015 Miloslav Trmač <mitr@redhat.com> - 0.60-6
1f83c0
- Fix CVE-2015-3246
1f83c0
  Resolves: #1235520
1f83c0
1f83c0
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 0.60-5
1f83c0
- Mass rebuild 2014-01-24
1f83c0
1f83c0
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.60-4
1f83c0
- Mass rebuild 2013-12-27
1f83c0
1f83c0
* Tue Oct 15 2013 Miloslav Trmač <mitr@redhat.com> - 0.60-3
1f83c0
- Fix the -2 change, %%check should fail on test suite failure
1f83c0
- Drop an upstreamed patch
1f83c0
1f83c0
* Mon Oct 14 2013 Miloslav Trmač <mitr@redhat.com> - 0.60-2
1f83c0
- Include test suite output in build log on failure
1f83c0
1f83c0
* Mon Oct 14 2013 Miloslav Trmač <mitr@redhat.com> - 0.60-1
1f83c0
- Update to libuser-0.60
1f83c0
  Resolves: #1008933
1f83c0
1f83c0
* Thu Jun 27 2013 Miloslav Trmač <mitr@redhat.com> - 0.59-2
1f83c0
- Drop BuildRequires: fakeroot and skip the test that needs it
1f83c0
  Resolves: #975888
1f83c0
1f83c0
* Thu Mar 28 2013 Miloslav Trmač <mitr@redhat.com> - 0.59-1
1f83c0
- Update to libuser-0.59 (CVE-2012-5630, CVE-2012-5644)
1f83c0
  Resolves: #928846
1f83c0
1f83c0
* Mon Feb  4 2013 Miloslav Trmač <mitr@redhat.com> - 0.58-2
1f83c0
- Always use secure_getenv() or __secure_getenv(), fail build if neither is
1f83c0
  available.  Patch by Viktor Hercinger <vhercing@redhat.com>.
1f83c0
1f83c0
* Thu Nov  8 2012 Miloslav Trmač <mitr@redhat.com> - 0.58-1
1f83c0
- Update to libuser-0.58
1f83c0
  Resolves: #844140, #854236
1f83c0
1f83c0
* Mon Sep 24 2012 Miloslav Trmač <mitr@redhat.com> - 0.57.7-1
1f83c0
- Update to libuser-0.57.7
1f83c0
1f83c0
* Tue Aug 21 2012 Miloslav Trmač <mitr@redhat.com> - 0.57.6-3
1f83c0
- Drop no longer necessary %%clean and %%defattr commands.
1f83c0
1f83c0
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.57.6-2
1f83c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
1f83c0
1f83c0
* Thu Mar 22 2012 Miloslav Trmač <mitr@redhat.com> - 0.57.6-1
1f83c0
- Update to libuser-0.57.6
1f83c0
  Resolves: #803840
1f83c0
1f83c0
* Sat Mar  3 2012 Miloslav Trmač <mitr@redhat.com> - 0.57.5-1
1f83c0
- Update to libuser-0.57.5
1f83c0
- BuildRequires: openssl, the testsuite needs /usr/bin/openssl
1f83c0
1f83c0
* Fri Feb 10 2012 Miloslav Trmač <mitr@redhat.com> - 0.57.4-1
1f83c0
- Update to libuser-0.57.4
1f83c0
  Resolves: #788521
1f83c0
1f83c0
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.57.3-3
1f83c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
1f83c0
1f83c0
* Tue Oct  4 2011 Miloslav Trmač <mitr@redhat.com> - 0.57.3-2
1f83c0
- Wait up to 30 seconds for slapd to start in the test suite
1f83c0
1f83c0
* Tue Oct  4 2011 Miloslav Trmač <mitr@redhat.com> - 0.57.3-1
1f83c0
- Update to libuser-0.57.3
1f83c0
  Resolves: #717116, #724986
1f83c0
1f83c0
* Thu Mar 31 2011 Miloslav Trmač <mitr@redhat.com> - 0.57.2-1
1f83c0
- Update to libuser-0.57.2
1f83c0
  Resolves: #671494
1f83c0
- Reenable (make check)
1f83c0
1f83c0
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.57.1-5
1f83c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1f83c0
1f83c0
* Fri Feb  4 2011 Miloslav Trmač <mitr@redhat.com> - 0.57.1-4
1f83c0
- Use %%{?_isa} in Requires:
1f83c0
1f83c0
* Fri Jan 21 2011 Miloslav Trmač <mitr@redhat.com> - 0.57.1-3
1f83c0
- Disable (make check) to allow parallel 32-bit and 64-bit builds
1f83c0
1f83c0
* Thu Jan 20 2011 Miloslav Trmač <mitr@redhat.com> - 0.57.1-2
1f83c0
- Don't default commonName to gecos if it is empty
1f83c0
  Resolves: #670151
1f83c0
1f83c0
* Fri Jan 14 2011 Miloslav Trmač <mitr@redhat.com> - 0.57.1-1
1f83c0
- Update to libuser-0.57.1
1f83c0
  Resolves: #668855
1f83c0
1f83c0
* Mon Jan 10 2011 Miloslav Trmač <mitr@redhat.com> - 0.57-1
1f83c0
- Update to libuser-0.57
1f83c0
  Resolves: #497333 #610172
1f83c0
1f83c0
* Wed Sep 29 2010 Miloslav Trmač <mitr@redhat.com> - 0.56.18-2
1f83c0
- Handle matchpathcon() failing with ENOENT
1f83c0
  Resolves: #631717
1f83c0
1f83c0
* Tue Sep 14 2010 Miloslav Trmač <mitr@redhat.com> - 0.56.18-1
1f83c0
- Update to libuser-0.56.18
1f83c0
1f83c0
* Wed Sep  1 2010 Miloslav Trmač <mitr@redhat.com> - 0.56.17-2
1f83c0
- Change default crypt_style to sha512
1f83c0
  Resolves: #629001
1f83c0
1f83c0
* Thu Aug 26 2010 Miloslav Trmač <mitr@redhat.com> - 0.56.17-1
1f83c0
- Update to libuser-0.56.17
1f83c0
1f83c0
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.56.16-3
1f83c0
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
1f83c0
1f83c0
* Fri Jul  2 2010 Miloslav Trmač <mitr@redhat.com> - 0.56.16-2
1f83c0
- Provide LU_VALUE_INVALID_ID and id_t validation in the Python module
1f83c0
  Resolves: #610838
1f83c0
1f83c0
* Thu Mar 25 2010 Miloslav Trmač <mitr@redhat.com> - 0.56.16-1
1f83c0
- Update to libuser-0.56.16.
1f83c0
1f83c0
* Thu Mar  4 2010 Miloslav Trmač <mitr@redhat.com> - 0.56.15-1
1f83c0
- Update to libuser-0.56.15.
1f83c0
- Drop no longer necessary references to BuildRequires
1f83c0
1f83c0
* Mon Feb  8 2010 Miloslav Trmač <mitr@redhat.com> - 0.56.14-1
1f83c0
- Update to libuser-0.56.14.
1f83c0
1f83c0
* Tue Jan  5 2010 Miloslav Trmač <mitr@redhat.com> - 0.56.13-2
1f83c0
- s/%%define/%%global/
1f83c0
1f83c0
* Fri Dec 11 2009 Miloslav Trmač <mitr@redhat.com> - 0.56.13-1
1f83c0
- Update to libuser-0.56.13.
1f83c0
  Resolves: #251951
1f83c0
  Resolves: #454079
1f83c0
  Resolves: #456373
1f83c0
  Resolves: #456382
1f83c0
  Resolves: #530513
1f83c0
1f83c0
* Fri Oct  2 2009 Miloslav Trmač <mitr@redhat.com> - 0.56.12-1
1f83c0
- Update to libuser-0.56.12.
1f83c0
1f83c0
* Mon Sep 14 2009 Miloslav Trmač <mitr@redhat.com> - 0.56.11-1
1f83c0
- Update to libuser-0.56.11.
1f83c0
  Resolves: #454091
1f83c0
  Resolves: #456267
1f83c0
  Resolves: #456270
1f83c0
  Resolves: #487129
1f83c0
1f83c0
* Thu Jul 30 2009 Miloslav Trmač <mitr@redhat.com> - 0.56.10-3
1f83c0
- Fix nscd cache invalidation
1f83c0
  Resolves: #506628
1f83c0
- Preserve timestamps during (make install)
1f83c0
1f83c0
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.56.10-2
1f83c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
1f83c0
1f83c0
* Wed Apr 15 2009 Miloslav Trmač <mitr@redhat.com> - 0.56.10-1
1f83c0
- Update to libuser-0.56.10.
1f83c0
1f83c0
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.56.9-3
1f83c0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1f83c0
1f83c0
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.56.9-2
1f83c0
- Rebuild for Python 2.6
1f83c0
1f83c0
* Wed Apr  9 2008 Miloslav Trmač <mitr@redhat.com> - 0.56.9-1
1f83c0
- Update to libuser-0.56.9.
1f83c0
1f83c0
* Sat Feb 23 2008 Miloslav Trmač <mitr@redhat.com> - 0.56.8-1
1f83c0
- New home page at https://fedorahosted.org/libuser/ .
1f83c0
1f83c0
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.56.7-2
1f83c0
- Autorebuild for GCC 4.3
1f83c0
1f83c0
* Wed Jan  9 2008 Miloslav Trmač <mitr@redhat.com> - 0.56.7-1
1f83c0
- Add support for SHA256 and SHA512 in password hashes
1f83c0
  Related: #173583
1f83c0
- Fix file locking on some architectures
1f83c0
- Rename sr@Latn.po to sr@latin.po
1f83c0
  Resolves: #426584
1f83c0
- Address issues from a review by Jason Tibbitts:
1f83c0
  - Remove default.-c, moving the provided functions to libuser proper
1f83c0
  - Remove the WITH_SELINUX build option
1f83c0
  - Move Python library test to %%check
1f83c0
  Resolves: #226054
1f83c0
1f83c0
* Mon Jan 07 2008 Jason L Tibbitts III <tibbs@math.uh.edu> - 0.56.6-4
1f83c0
- Add the usual "there is no upstream" notice.
1f83c0
1f83c0
* Tue Dec 04 2007 Release Engineering <rel-eng at fedoraproject dot org> - 0.56.6-4
1f83c0
 - Rebuild for openldap bump
1f83c0
1f83c0
* Tue Dec  4 2007 Miloslav Trmač <mitr@redhat.com> - 0.56.6-3
1f83c0
- Rebuild with openldap-2.4.
1f83c0
1f83c0
* Wed Oct 31 2007 Miloslav Trmač <mitr@redhat.com> - 0.56.6-2
1f83c0
- Fix uninitialized memory usage when SELinux is disabled
1f83c0
1f83c0
* Thu Oct 25 2007 Miloslav Trmač <mitr@redhat.com> - 0.56.6-1
1f83c0
- Set SELinux file contexts when creating home directories, preserve them when
1f83c0
  moving home directories
1f83c0
  Resolves: #351201
1f83c0
1f83c0
* Thu Oct 11 2007 Miloslav Trmač <mitr@redhat.com> - 0.56.5-1
1f83c0
- Work around spurious error messages when run against the Fedora Directory
1f83c0
  server
1f83c0
- Fix error reporting when creating home directories and creating/removing mail
1f83c0
  spool files
1f83c0
  Resolves: #318121
1f83c0
1f83c0
* Wed Sep  5 2007 Miloslav Trmač <mitr@redhat.com> - 0.56.4-3
1f83c0
- s/popt/popt-devel/ in BuildRequires
1f83c0
  Resolves: #277541
1f83c0
1f83c0
* Wed Aug  8 2007 Miloslav Trmač <mitr@redhat.com> - 0.56.4-2
1f83c0
- Split the Python module to a separate subpackage (original patch by Yanko
1f83c0
  Kaneti)
1f83c0
- Update the License: tag
1f83c0
1f83c0
* Fri Jun 15 2007 Miloslav Trmač <mitr@redhat.com> - 0.56.4-1
1f83c0
- Update the last password change date field when changing passwords
1f83c0
  Resolves: #243854
1f83c0
1f83c0
* Sat Jun  9 2007 Miloslav Trmač <mitr@redhat.com> - 0.56.3-1
1f83c0
- Allow specifying a SASL mechanism (original patch by Simo Sorce)
1f83c0
  Resolves: #240904
1f83c0
1f83c0
* Thu Apr 19 2007 Miloslav Trmac <mitr@redhat.com> - 0.56.2-1
1f83c0
- New release with updated translations
1f83c0
1f83c0
* Fri Feb 23 2007 Miloslav Trmac <mitr@redhat.com> - 0.56.1-1
1f83c0
- When changing passwords, only silently ignore know shadow markers, not all
1f83c0
  invalid hashes
1f83c0
  Resolves: #225495
1f83c0
1f83c0
* Sat Feb 17 2007 Miloslav Trmac <mitr@redhat.com> - 0.56-1
1f83c0
- Tighten the API and implementation to avoid corrupting number-like strings;
1f83c0
  the module interface ABI has changed
1f83c0
  Resolves: #226976
1f83c0
1f83c0
* Sat Jan  6 2007 Jeremy Katz <katzj@redhat.com> - 0.55-2
1f83c0
- Fix inconsistent PyObject/PyMem usage (#220679)
1f83c0
1f83c0
* Sun Dec 10 2006 Miloslav Trmac <mitr@redhat.com> - 0.55-1
1f83c0
- Update to support the 64-bit API of Python 2.5
1f83c0
- Drop the quota library and Python module
1f83c0
1f83c0
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.54.8-2
1f83c0
- rebuild against python2.5
1f83c0
- follow python packaging guidelines
1f83c0
1f83c0
* Thu Nov  2 2006 Miloslav Trmac <mitr@redhat.com> - 0.54.8-1
1f83c0
- Add importing of HOME from default/useradd
1f83c0
  Related: #204707
1f83c0
1f83c0
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 0.54.7-2
1f83c0
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
1f83c0
1f83c0
* Mon Sep 25 2006 Miloslav Trmac <mitr@redhat.com> - 0.54.7-1
1f83c0
- New release with updated translations
1f83c0
1f83c0
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.54.6-2.1
1f83c0
- rebuild
1f83c0
1f83c0
* Wed Jun  7 2006 Miloslav Trmac <mitr@redhat.com> - 0.54.6-2
1f83c0
- Configure without --enable-gtk-doc to fix multilib conflict (#192715)
1f83c0
1f83c0
* Mon May  1 2006 Miloslav Trmac <mitr@redhat.com> - 0.54.6-1
1f83c0
- Fix bugs in handling of invalid lines in the files and shadow modules
1f83c0
- Fix pattern matching in lu_*_enumerate_full in the files and shadow modules
1f83c0
- Add more error reporting, return non-zero exit status on error from utils
1f83c0
- Use the skeleton directory specified in libuser.conf by Python
1f83c0
  admin.createHome and admin.addUser, add parameter skeleton= to admin.addUser
1f83c0
  (#189984)
1f83c0
1f83c0
* Tue Feb 21 2006 Miloslav Trmac <mitr@redhat.com> - 0.54.5-1
1f83c0
- Fix multilib conflict on libuser.conf.5
1f83c0
1f83c0
* Mon Feb 13 2006 Miloslav Trmac <mitr@redhat.com> - 0.54.4-1
1f83c0
- New release with updated translations
1f83c0
1f83c0
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.54.3-1.2.1
1f83c0
- bump again for double-long bug on ppc(64)
1f83c0
1f83c0
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.54.3-1.2
1f83c0
- rebuilt for new gcc4.1 snapshot and glibc changes
1f83c0
1f83c0
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
1f83c0
- rebuilt
1f83c0
1f83c0
* Fri Dec  2 2005 Miloslav Trmac <mitr@redhat.com> - 0.54.3-1
1f83c0
- Fix crash in lpasswd when user is not specified (#174801)
1f83c0
1f83c0
* Fri Nov 11 2005 Miloslav Trmac <mitr@redhat.com> - 0.54.2-1
1f83c0
- Avoid using deprecated openldap functions
1f83c0
1f83c0
* Fri Nov 11 2005 Miloslav Trmac <mitr@redhat.com> - 0.54.1-2
1f83c0
- Rebuild with newer openldap
1f83c0
1f83c0
* Tue Oct 11 2005 Miloslav Trmac <mitr@redhat.com> - 0.54.1-1
1f83c0
- Support importing of configuration from shadow-utils (/etc/login.defs and
1f83c0
  /etc/default/useradd)
1f83c0
- Add libuser.conf(5) man page
1f83c0
1f83c0
* Wed Oct  5 2005 Matthias Clasen <mclasen@redhat.com> - 0.54-2
1f83c0
- Use gmodule-no-export in the .pc file
1f83c0
1f83c0
* Tue Sep 13 2005 Miloslav Trmac <mitr@redhat.com> - 0.54-1
1f83c0
- Make sure attributes with no values can never appear
1f83c0
- Fix crash in the "files" module when an attribute is missing
1f83c0
- Use hidden visibility for internal functions, remove them from
1f83c0
  libuser/user_private.h; this changes module interface ABI
1f83c0
1f83c0
* Wed Jun  8 2005 Miloslav Trmac <mitr@redhat.com> - 0.53.8-1
1f83c0
- Permit "portable" user and group names as defined by SUSv3, plus trailing $
1f83c0
  (#159452)
1f83c0
- Don't build static libraries
1f83c0
1f83c0
* Sat Apr 30 2005 Miloslav Trmac <mitr@redhat.com> - 0.53.7-1
1f83c0
- Rebuild with updated translations, add missing translations.
1f83c0
1f83c0
* Sun Apr 24 2005 Miloslav Trmac <mitr@redhat.com> - 0.53.6-1
1f83c0
- Allow empty configuration values (#155402)
1f83c0
1f83c0
* Fri Apr 15 2005 Miloslav Trmac <mitr@redhat.com> - 0.53.5-1
1f83c0
- Ignore nss_compat lines in the "files" module (#154651)
1f83c0
- Autodetect Python version (#154096)
1f83c0
- Add BuildRequires: libselinux-devel, s/BuildPrereq/BuildRequires/
1f83c0
1f83c0
* Wed Apr  6 2005 Miloslav Trmac <mitr@redhat.com> - 0.53.4-1
1f83c0
- Fix adding objectclasses to existing LDAP entries (#152960)
1f83c0
1f83c0
* Wed Mar 30 2005 Miloslav Trmac <mitr@redhat.com> - 0.53.3-2
1f83c0
- Add Requires: glib2-devel to libuser-devel (#152501)
1f83c0
- Run ldconfig using %%post{,un} -p to let RPM play tricks
1f83c0
1f83c0
* Sat Mar  5 2005 Miloslav Trmac <mitr@redhat.com> - 0.53.3-1
1f83c0
- Don't silently ignore some I/O errors
1f83c0
- Don't include a Cyrus SASL v1 header file when libldap links to v2 (#150046)
1f83c0
- Rebuild with gcc 4
1f83c0
1f83c0
* Mon Jan 17 2005 Miloslav Trmac <mitr@redhat.com> - 0.53.2-1
1f83c0
- Important bug fixes in lchage, lgroupmod, lnewusers and lusermod
1f83c0
- Minor bug fixes in lpasswd and luseradd
1f83c0
- Add man pages for the utilities (#61673)
1f83c0
1f83c0
* Mon Dec 13 2004 Miloslav Trmac <mitr@redhat.com> - 0.53.1-1
1f83c0
- Export UT_NAMESIZE from <utmp.h> to Python (#141273)
1f83c0
1f83c0
* Sun Nov 14 2004 Miloslav Trmac <mitr@redhat.com> - 0.53-1
1f83c0
- Support UID and GID values larger than LONG_MAX (#124967)
1f83c0
- Fix updating of groups after user renaming in lusermod
1f83c0
- Allow setting a shadow password even if the current shadow password is
1f83c0
  invalid (#131180)
1f83c0
- Add lu_{user,group}_unlock_nonempty (#86414); module interface ABI has 
1f83c0
  changed
1f83c0
- Miscellaneous bug and memory leak fixes
1f83c0
1f83c0
* Mon Nov  8 2004 Jeremy Katz <katzj@redhat.com> - 0.52.6-2
1f83c0
- rebuild against python 2.4
1f83c0
1f83c0
* Tue Nov  2 2004 Miloslav Trmac <mitr@redhat.com> - 0.52.6-1
1f83c0
- Make error reporting more consistent, more verbose and always on stderr
1f83c0
  (partly #133861, original patch by Pawel Salek)
1f83c0
- Mark strings previously blocked by string freeze for translation
1f83c0
1f83c0
* Tue Oct 12 2004 Miloslav Trmac <mitr@redhat.com> - 0.52.5-1
1f83c0
- Fix home directory renaming in ADMIN.modifyUser (#135280)
1f83c0
- Further Python reference counting fixes
1f83c0
1f83c0
* Sun Oct 10 2004 Miloslav Trmac <mitr@redhat.com> - 0.52.4-1
1f83c0
- Fix memory leaks (#113730)
1f83c0
- Build with updated translations
1f83c0
1f83c0
* Wed Sep 29 2004 Miloslav Trmac <mitr@redhat.com> - 0.52.3-1
1f83c0
- Fix compilation without libuser headers already installed (#134085)
1f83c0
1f83c0
* Tue Sep 28 2004 Miloslav Trmac <mitr@redhat.com> - 0.52.2-1
1f83c0
- Allow LDAP connection using ldaps, custom ports or without TLS (original
1f83c0
  patch from Pawel Salek).
1f83c0
1f83c0
* Mon Sep 27 2004 Miloslav Trmac <mitr@redhat.com> - 0.52.1-1
1f83c0
- Fix freecon() of uninitialized value in files/shadow module
1f83c0
1f83c0
* Mon Sep 27 2004 Miloslav Trmac <mitr@redhat.com> - 0.52-1
1f83c0
- Usable LDAP backend (#68052, #99435, #130404)
1f83c0
- Miscellaneous bug fixes
1f83c0
1f83c0
* Fri Sep 24 2004 Miloslav Trmac <mitr@redhat.com> - 0.51.12-1
1f83c0
- Don't claim success and exception at the same time (#133479)
1f83c0
- LDAP fixes, second round
1f83c0
- Various other bugfixes
1f83c0
1f83c0
* Thu Sep 23 2004 Miloslav Trmac <mitr@redhat.com> - 0.51.11-1
1f83c0
- Allow documented optional arguments in Python
1f83c0
  ADMIN.{addUser,modifyUser,deleteUser} (#119812)
1f83c0
- Add man pages for lchfn and lchsh
1f83c0
- LDAP fixes, first round
1f83c0
- Avoid file conflict on multilib systems
1f83c0
- Call ldconfig correctly
1f83c0
1f83c0
* Fri Sep  3 2004 Miloslav Trmac <mitr@redhat.com> - 0.51.10-1
1f83c0
- Don't attempt to lookup using original entity name after entity
1f83c0
  modification (rename in particular) (#78376, #121252)
1f83c0
- Fix copying of symlinks from /etc/skel (#87572, original patch from gLaNDix)
1f83c0
- Make --enable-quota work, and fix the quota code to at least compile (#89114)
1f83c0
- Fix several bugs (#120168, original patch from Steve Grubb)
1f83c0
- Don't hardcode python version in spec file (#130952, from Robert Scheck)
1f83c0
- Properly integrate the SELinux patch, it should actually be used now, even
1f83c0
  though it was "enabled" since 0.51.7-6
1f83c0
1f83c0
* Tue Aug 31 2004 Miloslav Trmac <mitr@redhat.com> - 0.51.9-1
1f83c0
- Fix various typos
1f83c0
- Document library interfaces
1f83c0
- Build all shared libraries with -fPIC (#72536)
1f83c0
1f83c0
* Wed Aug 25 2004 Miloslav Trmac <mitr@redhat.com> - 0.51.8-1
1f83c0
- Update to build with latest autotools and gtk-doc
1f83c0
- Update ALL_LINGUAS and POTFILES.in
1f83c0
- Rebuild to depend on newer openldap
1f83c0
1f83c0
* Mon Jan 26 2004 Dan Walsh <dwalsh@redhat.com> 0.51.7-7
1f83c0
- fix is_selinux_enabled call
1f83c0
1f83c0
* Sun Dec 14 2003 Jeremy Katz <katzj@redhat.com> 0.51.7-6
1f83c0
- rebuild against python 2.3
1f83c0
- enable SELinux
1f83c0
1f83c0
* Mon Sep 08 2003 Dan Walsh <dwalsh@redhat.com> 0.51.7-5
1f83c0
- Turn off SELinux 
1f83c0
1f83c0
* Wed Aug 06 2003 Dan Walsh <dwalsh@redhat.com> 0.51.7-3
1f83c0
- Add SELinux support
1f83c0
1f83c0
* Wed Feb 19 2003 Nalin Dahyabhai <nalin@redhat.com> 0.51.7-1
1f83c0
- ldap: set error codes correctly when we encounter failures initializing
1f83c0
- don't double-close modules which fail initialization
1f83c0
- ldap: don't set an error in cases where one is already set
1f83c0
1f83c0
* Tue Feb 18 2003 Nalin Dahyabhai <nalin@redhat.com> 0.51.6-1
1f83c0
- use a crypt salt consistent with the defaults/crypt_style setting when
1f83c0
  setting new passwords (#79337)
1f83c0
1f83c0
* Thu Feb  6 2003 Nalin Dahyabhai <nalin@redhat.com> 0.51.5-2
1f83c0
- rebuild
1f83c0
1f83c0
* Wed Feb  5 2003 Nalin Dahyabhai <nalin@redhat.com> 0.51.5-1
1f83c0
- expose lu_get_first_unused_id() as a package-private function
1f83c0
- provide libuser.ADMIN.getFirstUnusedUid and libuser.ADMIN.getFirstUnusedGid
1f83c0
  in python
1f83c0
1f83c0
* Thu Dec 19 2002 Nalin Dahyabhai <nalin@redhat.com> 0.51.4-1
1f83c0
- fix not freeing resources properly in files.c(generic_is_locked), spotted by
1f83c0
  Zou Pengcheng
1f83c0
1f83c0
* Wed Dec 11 2002 Nalin Dahyabhai <nalin@redhat.com> 0.51.2-1
1f83c0
- degrade gracefully
1f83c0
- build with --with-pic and -fPIC
1f83c0
- remove unpackaged man page
1f83c0
1f83c0
* Tue Aug 27 2002 Nalin Dahyabhai <nalin@redhat.com> 0.51.1-2
1f83c0
- translation updates
1f83c0
1f83c0
* Wed Jul 24 2002 Nalin Dahyabhai <nalin@redhat.com> 0.51.1-1
1f83c0
- doc updates -- cvs tree moved
1f83c0
- language updates
1f83c0
- disallow weird characters in account names
1f83c0
1f83c0
* Sun May 26 2002 Tim Powers <timp@redhat.com>
1f83c0
- automated rebuild
1f83c0
1f83c0
* Mon May 20 2002 Nalin Dahyabhai <nalin@redhat.com> 0.51-1
1f83c0
- files: ignore blank lines in files
1f83c0
- libuser: disallow creation of accounts with names containing whitespace,
1f83c0
  control characters, or non-ASCII characters
1f83c0
1f83c0
* Tue Apr 16 2002 Nalin Dahyabhai <nalin@redhat.com> 0.50.2-1
1f83c0
- refresh translations
1f83c0
- fix a heap-corruption bug in the python bindings
1f83c0
1f83c0
* Mon Apr 15 2002 Nalin Dahyabhai <nalin@redhat.com> 0.50-1
1f83c0
- bump version
1f83c0
- refresh translations
1f83c0
1f83c0
* Thu Mar 14 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.102-1
1f83c0
- ldap: cache an entity's dn in the entity structure to try to speed things up
1f83c0
1f83c0
* Mon Mar 11 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.101-3
1f83c0
- rebuild in new environment
1f83c0
1f83c0
* Thu Mar  7 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.101-2
1f83c0
- add missing buildreqs on cyrus-sasl-devel and openldap-devel (#59456)
1f83c0
- translation refresh
1f83c0
1f83c0
* Fri Mar  1 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.101-1
1f83c0
- fix python bindings of enumerateFull functions
1f83c0
- adjust prompter wrapping to not error out on successful returns
1f83c0
1f83c0
* Thu Feb 28 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.100-1
1f83c0
- be more careful about printing error messages
1f83c0
- fix refreshing after adding of accounts
1f83c0
- ldap: try to use a search to convert names to DNs, and only fall back to
1f83c0
  guessing if it turns up nothing
1f83c0
- files: fix an off-by-one in removal of entries
1f83c0
1f83c0
* Mon Feb 25 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.99-1
1f83c0
- refresh translations
1f83c0
- fix admin() constructor comments in the python module
1f83c0
1f83c0
* Thu Feb 21 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.98-1
1f83c0
- automatically refresh entities after add, modify, setpass, removepass,
1f83c0
  lock, and unlock operations
1f83c0
- remove debug spewage when creating and removing mail spools
1f83c0
- files: fix saving of multi-valued attributes
1f83c0
- rename MEMBERUID attribute for groups to MEMBERNAME
1f83c0
1f83c0
* Wed Feb 20 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.97-1
1f83c0
- files: fix bug in removals
1f83c0
- ldap: revert attempts at being smart at startup time, because it makes UIs
1f83c0
  very messy (up the three whole dialogs just to start the ldap stuff!)
1f83c0
1f83c0
* Sat Feb 16 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.96-1
1f83c0
- fix thinko in dispatch routines
1f83c0
1f83c0
* Wed Feb 13 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.95-1
1f83c0
- lgroupmod: fix thinko
1f83c0
1f83c0
* Thu Jan 31 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.94-2
1f83c0
- rebuild in new environment
1f83c0
1f83c0
* Tue Jan 29 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.93-1
1f83c0
- move shadow initialization for groups to the proper callback
1f83c0
- rework locking in the files module to not require that files be writable
1f83c0
1f83c0
* Tue Jan 29 2002 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- expose lu_strerror()
1f83c0
- add various typedefs for types used by the library
1f83c0
1f83c0
* Mon Jan 28 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.92-1
1f83c0
- add removepass() functions
1f83c0
1f83c0
* Thu Jan 24 2002 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- lchfn,lchsh,lpasswd - reorder PAM authentication calls
1f83c0
- include API docs in the package
1f83c0
1f83c0
* Thu Jan 24 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.91-1
1f83c0
- ldap: finish port to new API
1f83c0
- sasl: finish port to new API (needs test)
1f83c0
- libuser: don't commit object changes before passing data to service
1f83c0
  functions which might need differing data sets to figure out what to
1f83c0
  change (for example, ldap)
1f83c0
1f83c0
* Thu Jan 17 2002 Nalin Dahyabhai <nalin@redhat.com> 0.49.90-1
1f83c0
- bind the internal mail spool creation/removal functions for python
1f83c0
1f83c0
* Wed Jan 16 2002 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- renamed the python module
1f83c0
- revamped internals to use gobject's gvalues and gvaluearrays instead of
1f83c0
  glists of cached strings
1f83c0
- add enumeration-with-data functions to the C library
1f83c0
1f83c0
* Mon Jan 07 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1f83c0
- require linuxdoc-tools instead of sgml-tools for rawhide
1f83c0
1f83c0
* Tue Nov 13 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- fixup build files to allow building for arbitrary versions of python
1f83c0
1f83c0
* Wed Aug 29 2001 Nalin Dahyabhai <nalin@redhat.com> 0.32-1
1f83c0
- link the python module against libpam
1f83c0
- attempt to import the python modules at build-time to verify dependencies
1f83c0
1f83c0
* Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com> 0.31-1
1f83c0
- fix a file-parsing bug that popped up in 0.29's mmap modifications
1f83c0
1f83c0
* Mon Aug 27 2001 Nalin Dahyabhai <nalin@redhat.com> 0.30-1
1f83c0
- quotaq: fix argument order when reading quota information
1f83c0
- user_quota: set quota grace periods correctly
1f83c0
- luseradd: never create home directories for system accounts
1f83c0
1f83c0
* Tue Aug 21 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- add da translation files
1f83c0
- update translations
1f83c0
1f83c0
* Tue Aug 21 2001 Nalin Dahyabhai <nalin@redhat.com> 0.29-1
1f83c0
- add an explicit build dependency on jade (for the docs)
1f83c0
1f83c0
* Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- HUP nscd on modifications
1f83c0
- userutil.c: mmap files we're reading for probable speed gain
1f83c0
- userutil.c: be conservative with the amount of random data we read
1f83c0
- docs fixes
1f83c0
1f83c0
* Wed Aug 15 2001 Nalin Dahyabhai <nalin@redhat.com> 0.28-1
1f83c0
- apps: print usage on errors
1f83c0
- lnewusers.c: initialize groups as groups, not users
1f83c0
- lnewusers.c: set passwords for new accounts
1f83c0
- luseradd.c: accept group names in addition to IDs for the -g flag
1f83c0
- luseradd.c: allow the primary GID to be a preexisting group
1f83c0
1f83c0
* Tue Aug 14 2001 Nalin Dahyabhai <nalin@redhat.com> 0.27-1
1f83c0
- add ko translation files
1f83c0
- files.c: fix a heap corruption bug in lock/unlock (#51750)
1f83c0
- files.c: close a memory leak in reading of files
1f83c0
1f83c0
* Mon Aug 13 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- files.c: remove implementation limits on lengths of lines
1f83c0
1f83c0
* Thu Aug  9 2001 Nalin Dahyabhai <nalin@redhat.com> 0.26-1
1f83c0
- lusermod: change user name in groups the user is a member of during renames
1f83c0
- lgroupmod: change primary GID for users who are in the group during renumbers
1f83c0
- ldap.c: handle new attributes more gracefully if possible
1f83c0
- add ru translation files
1f83c0
1f83c0
* Tue Aug  7 2001 Nalin Dahyabhai <nalin@redhat.com> 0.25.1-1
1f83c0
- rename the quota source files to match the library, which clears up a
1f83c0
  file conflict with older quota packages
1f83c0
- add ja translation files
1f83c0
1f83c0
* Thu Aug  2 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- add lu_ent_clear_all() function
1f83c0
1f83c0
* Thu Aug  2 2001 Nalin Dahyabhai <nalin@redhat.com> 0.25-1
1f83c0
- close up some memory leaks
1f83c0
- add the ability to include resident versions of modules in the library
1f83c0
1f83c0
* Wed Aug  1 2001 Nalin Dahyabhai <nalin@redhat.com> 0.24-4
1f83c0
- fix incorrect Py_BuildValue invocation in python module
1f83c0
1f83c0
* Tue Jul 31 2001 Nalin Dahyabhai <nalin@redhat.com> 0.24-3
1f83c0
- stop leaking descriptors in the files module
1f83c0
- speed up user creation by reordering some checks for IDs being in use
1f83c0
- update the shadowLastChanged attribute when we set a password
1f83c0
- adjust usage of getXXXXX_r where needed
1f83c0
- fix assorted bugs in python binding which break prompting
1f83c0
1f83c0
* Mon Jul 30 2001 Nalin Dahyabhai <nalin@redhat.com> 0.23-1
1f83c0
- install sv translation
1f83c0
- make lpasswd prompt for passwords when none are given on the command line
1f83c0
- make sure all user-visible strings are marked for translation
1f83c0
- clean up some user-visible strings
1f83c0
- require PAM authentication in lchsh, lchfn, and lpasswd for non-networked modules
1f83c0
1f83c0
* Fri Jul 27 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- print uids and gids of users and names in lid app
1f83c0
- fix tree traversal in users_enumerate_by_group and groups_enumerate_by_users
1f83c0
- implement enumerate_by_group and enumerate_by_user in ldap module
1f83c0
- fix id-based lookups in the ldap module
1f83c0
- implement islocked() method in ldap module
1f83c0
- implement setpass() method in ldap module
1f83c0
- add lchfn and lchsh apps
1f83c0
- add %%d substitution to libuser.conf
1f83c0
1f83c0
* Thu Jul 26 2001 Nalin Dahyabhai <nalin@redhat.com> 0.21-1
1f83c0
- finish adding a sasldb module which manipulates a sasldb file
1f83c0
- add users_enumerate_by_group and groups_enumerate_by_users
1f83c0
1f83c0
* Wed Jul 25 2001 Nalin Dahyabhai <nalin@redhat.com> 
1f83c0
- luserdel: remove the user's primary group if it has the same name as
1f83c0
  the user and has no members configured (-G disables)
1f83c0
- fixup some configure stuff to make libuser.conf get generated correctly
1f83c0
  even when execprefix isn't specified
1f83c0
1f83c0
* Tue Jul 24 2001 Nalin Dahyabhai <nalin@redhat.com> 0.20-1
1f83c0
- only call the auth module when setting passwords (oops)
1f83c0
- use GTrees instead of GHashTables for most internal tables
1f83c0
- files: complain properly about unset attributes
1f83c0
- files: group passwords are single-valued, not multiple-valued
1f83c0
- add lpasswd app, make sure all apps start up popt with the right names
1f83c0
1f83c0
* Mon Jul 23 2001 Nalin Dahyabhai <nalin@redhat.com> 0.18-1
1f83c0
- actually make the new optional arguments optional
1f83c0
- fix lu_error_new() to actually report errors right
1f83c0
- fix part of the python bindings
1f83c0
- include tools in the binary package again
1f83c0
- fixup modules so that password-changing works right again
1f83c0
- add a "key" field to prompt structures for use by apps which like to
1f83c0
  cache these things
1f83c0
- add an optional "mvhomedir" argument to userModify (python)
1f83c0
1f83c0
* Fri Jul 20 2001 Nalin Dahyabhai <nalin@redhat.com> 0.16.1-1
1f83c0
- finish home directory population
1f83c0
- implement home directory moving
1f83c0
- change entity get semantics in the python bindings to allow default values for .get()
1f83c0
- add lu_ent_has(), and a python has_key() method to Entity types
1f83c0
- don't include tools in the binary package
1f83c0
- add translated strings
1f83c0
1f83c0
* Thu Jul 19 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- lib/user.c: catch and ignore errors when running stacks
1f83c0
- lusermod: fix slightly bogus help messages
1f83c0
- luseradd: when adding a user and group, use the gid of the group
1f83c0
  instead of the user's uid as the primary group
1f83c0
- properly set the password field in user accounts created using
1f83c0
  auth-only auth modules (shadow needs "x" instead of "!!")
1f83c0
- implement home directory removal, start on population
1f83c0
1f83c0
* Wed Jul 18 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- fix group password setting in the files module
1f83c0
- setpass affects both auth and info, so run both stacks
1f83c0
1f83c0
* Tue Jul 17 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- make the testbed apps noinst
1f83c0
1f83c0
* Mon Jul 16 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- fix errors due to uninitialized fields in the python bindings
1f83c0
- add kwargs support to all python wrappers
1f83c0
- add a mechanism for passing arguments to python callbacks
1f83c0
1f83c0
* Wed Jul 11 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- stub out the krb5 and ldap modules so that they'll at least compile again
1f83c0
 
1f83c0
* Tue Jul 10 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- don't bail when writing empty fields to colon-delimited files
1f83c0
- use permissions of the original file when making backup files instead of 0600
1f83c0
1f83c0
* Fri Jul  6 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- finish implementing is_locked methods in files/shadow module
1f83c0
- finish cleanup of the python bindings
1f83c0
- allow conditional builds of modules so that we can build without
1f83c0
  all of the prereqs for all of the modules
1f83c0
1f83c0
* Thu Jun 21 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- add error reporting facilities
1f83c0
- split public header into pieces by function
1f83c0
- backend cleanups
1f83c0
1f83c0
* Mon Jun 18 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- make %%{name}-devel require %%{name} and not %%{name}-devel
1f83c0
1f83c0
* Fri Jun 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- clean up quota bindings some more
1f83c0
- finish most of the ldap bindings
1f83c0
- fix a subtle bug in the files module that would show up when renaming accounts
1f83c0
- fix mapping methods for entity structures in python
1f83c0
1f83c0
* Thu Jun 14 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- get bindings for prompts to work correctly
1f83c0
- clean up some of the add/remove semantics (set source on add)
1f83c0
- ldap: implement enumeration
1f83c0
- samples/enum: fix the argument order
1f83c0
1f83c0
* Wed Jun 13 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- clean up python bindings for quota
1f83c0
1f83c0
* Tue Jun 12 2001 Nalin Dahyabhai <nalin@redhat.com> 0.11
1f83c0
- finish up python bindings for quota support
1f83c0
1f83c0
* Sun Jun 10 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- finish up quota support libs
1f83c0
1f83c0
* Fri Jun  8 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- start quota support library to get some type safety
1f83c0
1f83c0
* Thu Jun  7 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- start looking at quota manipulation
1f83c0
1f83c0
* Wed Jun  6 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- add functions for enumerating users and groups, optionally per-module
1f83c0
- lusermod.c: -s should specify the shell, not the home directory
1f83c0
1f83c0
* Fri Jun  1 2001 Nalin Dahyabhai <nalin@redhat.com> 0.10
1f83c0
- finish the python bindings and verify that the file backend works again
1f83c0
1f83c0
* Wed May 30 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- remove a redundant check which was breaking modifications
1f83c0
1f83c0
* Tue May 29 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- finish adding setpass methods
1f83c0
1f83c0
* Wed May  2 2001 Nalin Dahyabhai <nalin@redhat.com> 0.9
1f83c0
- get a start on some Python bindings
1f83c0
1f83c0
* Tue May  1 2001 Nalin Dahyabhai <nalin@redhat.com> 0.8.2
1f83c0
- make binary-incompatible change in headers
1f83c0
1f83c0
* Mon Apr 30 2001 Nalin Dahyabhai <nalin@redhat.com> 0.8.1
1f83c0
- add doxygen docs and a "doc" target for them
1f83c0
1f83c0
* Sat Jan 20 2001 Nalin Dahyabhai <nalin@redhat.com> 0.8
1f83c0
- add a "quiet" prompter
1f83c0
- add --interactive flag to sample apps and default to using quiet prompter
1f83c0
- ldap: attempt a "self" bind if other attempts fail
1f83c0
- krb5: connect to the password-changing service if the user principal has
1f83c0
  the NULL instance
1f83c0
1f83c0
* Wed Jan 10 2001 Nalin Dahyabhai <nalin@redhat.com>
1f83c0
- the great adding-of-the-copyright-statements
1f83c0
- take more care when creating backup files in the files module
1f83c0
1f83c0
* Wed Jan  3 2001 Nalin Dahyabhai <nalin@redhat.com> 0.7
1f83c0
- add openldap-devel as a buildprereq
1f83c0
- krb5: use a continuous connection
1f83c0
- krb5: add "realm" config directive
1f83c0
- ldap: use a continuous connection
1f83c0
- ldap: add "server", "basedn", "binddn", "user", "authuser" config directives
1f83c0
- ldap: actually finish the account deletion function
1f83c0
- ldap: don't send cleartext passwords to the directory
1f83c0
- fix naming attribute for users (should be uid, not gid)
1f83c0
- refine the search-by-id,convert-to-name,search-by-name logic
1f83c0
- fix handling of defaults when the config file is read in but contains no value
1f83c0
- implement an LDAP information store
1f83c0
- try to clean up module naming with libtool
1f83c0
- luseradd: pass plaintext passwords along
1f83c0
- luseradd: use symbolic attribute names instead of hard-coded
1f83c0
- lusermod: pass plaintext passwords along
1f83c0
- lgroupadd: pass plaintext passwords along
1f83c0
- lgroupmod: pass plaintext passwords along
1f83c0
- add libuser as a dependency of libuser-devel
1f83c0
1f83c0
* Tue Jan  2 2001 Nalin Dahyabhai <nalin@redhat.com> 0.6
1f83c0
- initial packaging