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