Blame SPECS/libldb.spec

0da57a
%global talloc_version 2.3.1
0da57a
%global tdb_version 1.4.3
0da57a
%global tevent_version 0.10.2
5fb18d
5fb18d
Name: libldb
0da57a
Version: 2.1.3
0da57a
Release: 2%{?dist}
5fb18d
Summary: A schema-less, ldap like, API and database
5fb18d
Requires: libtalloc%{?_isa} >= %{talloc_version}
5fb18d
Requires: libtdb%{?_isa} >= %{tdb_version}
5fb18d
Requires: libtevent%{?_isa} >= %{tevent_version}
5fb18d
License: LGPLv3+
5fb18d
URL: http://ldb.samba.org/
5fb18d
Source: http://samba.org/ftp/ldb/ldb-%{version}.tar.gz
5fb18d
5fb18d
BuildRequires: gcc
5fb18d
BuildRequires: libtalloc-devel >= %{talloc_version}
5fb18d
BuildRequires: libtdb-devel >= %{tdb_version}
5fb18d
BuildRequires: libtevent-devel >= %{tevent_version}
5fb18d
5fb18d
%if ! 0%{?rhel}
5fb18d
BuildRequires: lmdb-devel >= 0.9.16
5fb18d
%endif
5fb18d
5fb18d
BuildRequires: popt-devel
5fb18d
BuildRequires: libxslt
5fb18d
BuildRequires: docbook-style-xsl
5fb18d
BuildRequires: doxygen
5fb18d
BuildRequires: openldap-devel
5fb18d
BuildRequires: libcmocka-devel
5fb18d
5fb18d
Provides: bundled(libreplace)
5fb18d
5fb18d
BuildRequires: python3-devel
5fb18d
BuildRequires: python3-tdb
5fb18d
BuildRequires: python3-talloc-devel
5fb18d
BuildRequires: python3-tevent
ebf8eb
ebf8eb
Obsoletes: python2-ldb < %{version}-%{release}
ebf8eb
Obsoletes: python2-ldb-devel < %{version}-%{release}
ebf8eb
Obsoletes: python2-ldb-debuginfo < %{version}-%{release}
5fb18d
5fb18d
# Patches
5fb18d
0da57a
Patch0001: CVE-2020-10730.patch
0da57a
5fb18d
%description
5fb18d
An extensible library that implements an LDAP like API to access remote LDAP
5fb18d
servers, or use local tdb databases.
5fb18d
5fb18d
%package -n ldb-tools
5fb18d
Summary: Tools to manage LDB files
5fb18d
Requires: libldb%{?_isa} = %{version}-%{release}
5fb18d
5fb18d
%description -n ldb-tools
5fb18d
Tools to manage LDB files
5fb18d
5fb18d
%package devel
5fb18d
Summary: Developer tools for the LDB library
5fb18d
Requires: libldb%{?_isa} = %{version}-%{release}
5fb18d
Requires: libtdb-devel%{?_isa} >= %{tdb_version}
5fb18d
Requires: libtalloc-devel%{?_isa} >= %{talloc_version}
5fb18d
Requires: libtevent-devel%{?_isa} >= %{tevent_version}
5fb18d
Requires: pkgconfig
5fb18d
5fb18d
%description devel
5fb18d
Header files needed to develop programs that link against the LDB library.
5fb18d
5fb18d
%package -n python3-ldb
5fb18d
Summary: Python bindings for the LDB library
5fb18d
Requires: libldb%{?_isa} = %{version}-%{release}
5fb18d
Requires: python3-tdb%{?_isa} >= %{tdb_version}
5fb18d
5fb18d
%{?python_provide:%python_provide python3-ldb}
5fb18d
5fb18d
%description -n python3-ldb
5fb18d
Python bindings for the LDB library
5fb18d
5fb18d
%package -n python3-ldb-devel
5fb18d
Summary: Development files for the Python bindings for the LDB library
5fb18d
Requires: python3-ldb%{?_isa} = %{version}-%{release}
ebf8eb
Obsoletes: python-ldb-devel-common < %{version}-%{release}
5fb18d
5fb18d
%{?python_provide:%python_provide python3-ldb-devel}
5fb18d
5fb18d
%description -n python3-ldb-devel
5fb18d
Development files for the Python bindings for the LDB library
5fb18d
5fb18d
%prep
0da57a
%autosetup -n ldb-%{version} -p3
5fb18d
5fb18d
%build
5fb18d
%configure --disable-rpath \
5fb18d
           --disable-rpath-install \
5fb18d
           --bundled-libraries=NONE \
5fb18d
           --builtin-libraries=replace \
5fb18d
           --with-modulesdir=%{_libdir}/ldb/modules \
5fb18d
           --without-ldb-lmdb \
5fb18d
           --with-privatelibdir=%{_libdir}/ldb
5fb18d
5fb18d
make %{?_smp_mflags} V=1
5fb18d
doxygen Doxyfile
5fb18d
5fb18d
%check
ebf8eb
# jhrozek 2019-05-03: Looks like ldb test suite does not work
ebf8eb
# when ldb is compiled --without-ldb-lmdb
ebf8eb
# make %{?_smp_mflags} check
5fb18d
5fb18d
%install
5fb18d
make install DESTDIR=$RPM_BUILD_ROOT
5fb18d
5fb18d
rm -f $RPM_BUILD_ROOT%{_libdir}/libldb.a
5fb18d
5fb18d
# Shared libraries need to be marked executable for
5fb18d
# rpmbuild to strip them and include them in debuginfo
5fb18d
find $RPM_BUILD_ROOT -name "*.so*" -exec chmod -c +x {} \;
5fb18d
5fb18d
# Install API docs
5fb18d
cp -a apidocs/man/* $RPM_BUILD_ROOT/%{_mandir}
5fb18d
5fb18d
# LDB 1.1.8+ bug: remove manpage named after full
5fb18d
# file path
5fb18d
rm -f $RPM_BUILD_ROOT/%{_mandir}/man3/_*
5fb18d
5fb18d
%ldconfig_scriptlets
5fb18d
5fb18d
%files
5fb18d
%dir %{_libdir}/ldb
5fb18d
%{_libdir}/libldb.so.*
5fb18d
%{_libdir}/ldb/libldb-key-value.so
ebf8eb
%{_libdir}/ldb/libldb-tdb-err-map.so
ebf8eb
%{_libdir}/ldb/libldb-tdb-int.so
5fb18d
# lmdb is not supported on 32 bit architectures
5fb18d
%if 0%{?__isa_bits} == 64 && ! 0%{?rhel}
5fb18d
%{_libdir}/ldb/libldb-mdb-int.so
5fb18d
%endif
5fb18d
%dir %{_libdir}/ldb/modules
5fb18d
%dir %{_libdir}/ldb/modules/ldb
5fb18d
%{_libdir}/ldb/modules/ldb/*.so
5fb18d
5fb18d
%files -n ldb-tools
5fb18d
%{_bindir}/ldbadd
5fb18d
%{_bindir}/ldbdel
5fb18d
%{_bindir}/ldbedit
5fb18d
%{_bindir}/ldbmodify
5fb18d
%{_bindir}/ldbrename
5fb18d
%{_bindir}/ldbsearch
5fb18d
%{_libdir}/ldb/libldb-cmdline.so
5fb18d
%{_mandir}/man1/ldbadd.1.*
5fb18d
%{_mandir}/man1/ldbdel.1.*
5fb18d
%{_mandir}/man1/ldbedit.1.*
5fb18d
%{_mandir}/man1/ldbmodify.1.*
5fb18d
%{_mandir}/man1/ldbrename.1.*
5fb18d
%{_mandir}/man1/ldbsearch.1.*
5fb18d
5fb18d
%files devel
5fb18d
%{_includedir}/ldb_module.h
5fb18d
%{_includedir}/ldb_handlers.h
5fb18d
%{_includedir}/ldb_errors.h
5fb18d
%{_includedir}/ldb_version.h
5fb18d
%{_includedir}/ldb.h
5fb18d
%{_libdir}/libldb.so
5fb18d
5fb18d
%{_libdir}/pkgconfig/ldb.pc
5fb18d
%{_mandir}/man3/ldb*.gz
5fb18d
%{_mandir}/man3/ldif*.gz
5fb18d
5fb18d
%files -n python3-ldb
5fb18d
%{python3_sitearch}/ldb.cpython-*.so
ea20a5
%{_libdir}/libpyldb-util.cpython-*.so.*
5fb18d
%{python3_sitearch}/_ldb_text.py
5fb18d
%{python3_sitearch}/__pycache__/_ldb_text.cpython-*.py*
5fb18d
5fb18d
%files -n python3-ldb-devel
5fb18d
%{_libdir}/libpyldb-util.cpython-*.so
5fb18d
%{_libdir}/pkgconfig/pyldb-util.cpython-*.pc
ebf8eb
%{_includedir}/pyldb.h
ebf8eb
%{_mandir}/man*/Py*.gz
5fb18d
5fb18d
%ldconfig_scriptlets -n python3-ldb
5fb18d
5fb18d
%changelog
0da57a
* Wed Jun 24 2020 Isaac Boukris <iboukris@redhat.com> - 2.1.3-2
0da57a
- Resolves: rhbz#1849615 - Fix CVE-2020-10730 use-after-free
0da57a
0da57a
* Tue Jun 2 2020 Isaac Boukris <iboukris@redhat.com> - 2.1.3-1
0da57a
- Resolves: rhbz#1817567 - Rebase libldb to 2.1.3 for samba
0da57a
ea20a5
* Tue Nov 26 2019 Isaac Boukris <iboukris@redhat.com> - 2.0.7-3
ea20a5
- Resolves: rhbz#1754423 - Rebase libldb to 2.0.7 version for samba
ea20a5
- Related: rhbz#1754423 - Fix sssd tests (ldb)
ea20a5
ebf8eb
* Tue May  7 2019 Jakub Hrozek <jhrozek@redhat.com> - 1.5.4-2
ebf8eb
- Fix some python2-related upgrade issues
ebf8eb
- Related: rhbz#1567115 - libldb: Drop Python 2 subpackages from RHEL 8
ebf8eb
ebf8eb
* Wed Apr 24 2019 Jakub Hrozek <jhrozek@redhat.com> - 1.5.4-1
ebf8eb
- Resolves: rhbz#1684582 - Rebase libldb to version 1.5.4 for Samba
ebf8eb
- Resolves: rhbz#1567115 - libldb: Drop Python 2 subpackages from RHEL 8
ebf8eb
- Resolves: rhbz#1597243 - libldb uses Python 2 to build.
ebf8eb
5fb18d
* Thu Sep 20 2018 Jakub Hrozek <jhrozek@redhat.com> - 1.4.2-2
5fb18d
- Resolves: rhbz#1624132 - Review annocheck distro flag failures in libldb
5fb18d
5fb18d
* Fri Aug 17 2018 Alexander Bokovoy <abokovoy@redhat.com> - 1.4.2-1
5fb18d
- New upstream release 1.4.2
5fb18d
- Resolves: rhbz#1615989
5fb18d
5fb18d
* Fri Jul 13 2018 Jakub Hrozek <jhrozek@redhat.com> - 1.4.1-1
5fb18d
- New upstream release 1.4.1
5fb18d
- Obsoletes 0001-ldb-Fix-memory-leak-on-module-context.patch
5fb18d
5fb18d
* Mon Jul 02 2018 Petr Viktorin <pviktori@redhat.com> - 1.4.0-3
5fb18d
- Use %%{__python2}, not "python", as the Python2 interpreter
5fb18d
- Add workaround to allow building with Python 2
5fb18d
- Remove the lmdb dependency in RHEL
5fb18d
5fb18d
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.4.0-2
5fb18d
- Rebuilt for Python 3.7
5fb18d
5fb18d
* Wed May 30 2018 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.4.0-1
5fb18d
- New upstream release 1.4.0
5fb18d
- Resolves: rhbz#1584450 - libldb-1.4.0 is available
5fb18d
5fb18d
* Thu May  3 2018 Jakub Hrozek <jhrozek@redhat.com> - 1.3.2-1
5fb18d
- New upstream release 1.3.3
5fb18d
- Resolves: rhbz#1574267 - libldb-1.3.3 is available
5fb18d
- Backport a patch from samba upstream to not require rpc.h
5fb18d
5fb18d
* Thu Mar 01 2018 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.3.2-2
5fb18d
- Disable link time optimisation for python3 related modules/libs
5fb18d
- Workaround for rhbz#1548822
5fb18d
5fb18d
* Thu Mar 01 2018 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.3.2-1
5fb18d
- New upstream release 1.3.2
5fb18d
- Resolves: rhbz#1550051 - libldb-1.3.2 is available
5fb18d
5fb18d
* Mon Feb 26 2018 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.3.1-6
5fb18d
- Use ldconfig scriptlets
5fb18d
- Add gcc to BuildRequires
5fb18d
5fb18d
* Sat Feb 24 2018 Florian Weimer <fweimer@redhat.com> - 1.3.1-5
5fb18d
- Another rebuild with new build flags
5fb18d
5fb18d
* Sat Feb 24 2018 Florian Weimer <fweimer@redhat.com> - 1.3.1-4
5fb18d
- Rebuild to pick up new Python build flags
5fb18d
5fb18d
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-3
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5fb18d
5fb18d
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.3.1-2
5fb18d
- Rebuilt for switch to libxcrypt
5fb18d
5fb18d
* Sat Jan 13 2018 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.3.1
5fb18d
- New upstream release 1.3.1
5fb18d
- Resolves: rhbz#1534128 - libldb-1.3.1 is available
5fb18d
5fb18d
* Tue Jan 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.3.0-4
5fb18d
- Update Python 2 dependency declarations to new packaging standards
5fb18d
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
5fb18d
5fb18d
* Thu Nov 30 2017 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.3.0-3
5fb18d
- Update spec file conditionals
5fb18d
5fb18d
* Sat Oct 21 2017 Lukas Slebodnik <lslebodn@fedoraproject.org> - 1.3.0-2
5fb18d
- Fix memory leak introduced in 1.3.0
5fb18d
5fb18d
* Fri Oct 20 2017 Lukas Slebodnik <lslebodn@redhat.com> - 1.3.0
5fb18d
- New upstream release 1.3.0
5fb18d
- Resolves: rhbz#1504361 - libldb-1.3.0 is available
5fb18d
5fb18d
* Mon Sep 11 2017 Lukas Slebodnik <lslebodn@redhat.com> - 1.2.2
5fb18d
- New upstream release 1.2.2
5fb18d
- Resolves: rhbz#1489418  - libldb-1.2.2 is available
5fb18d
5fb18d
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-3
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5fb18d
5fb18d
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-2
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5fb18d
5fb18d
* Mon Jul 24 2017 Lukas Slebodnik <lslebodn@redhat.com> - 1.2.1
5fb18d
- New upstream release 1.2.1
5fb18d
- Resolves: rhbz#1473988 - libldb-1.2.1 is available
5fb18d
5fb18d
* Thu Jul 06 2017 Andreas Schneider <asn@redhat.com> - 1.2.0-2
5fb18d
- Fix pyhton3 support
5fb18d
5fb18d
* Tue Jul  4 2017 Lukas Slebodnik <lslebodn@redhat.com> - 1.2.0
5fb18d
- New upstream release 1.2.0
5fb18d
- Resolves: rhbz#1467118 - libldb-1.2.0 is available
5fb18d
5fb18d
* Fri Jun 16 2017 Lukas Slebodnik <lslebodn@redhat.com> - 1.1.31-1
5fb18d
- New upstream release 1.1.31
5fb18d
- Resolves: rhbz#1462041 - libldb-1.1.31 is available
5fb18d
5fb18d
* Fri Jun  2 2017 Lukas Slebodnik <lslebodn@redhat.com> - 1.1.30-1
5fb18d
- New upstream release 1.1.30
5fb18d
- Resolves: rhbz#1458264 - libldb-1.1.30 is available
5fb18d
5fb18d
* Sat Apr 01 2017 Lukas Slebodnik <lslebodn@redhat.com> - 1.1.29-5
5fb18d
- rhbz#1401172 - Missing symbol versioning provided by libldb.so with strict CFLAGS
5fb18d
- Fix configure time detection with -Werror=implicit-function-declaration
5fb18d
  -Werror=implicit-int
5fb18d
5fb18d
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-4
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5fb18d
5fb18d
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.1.29-3
5fb18d
- Rebuild for Python 3.6
5fb18d
5fb18d
* Tue Dec 06 2016 Adam Williamson <awilliam@redhat.com> - 1.1.29-2
5fb18d
- rebuild with reverted redhat-rpm-config to fix missing symbols
5fb18d
5fb18d
* Fri Dec  2 2016 Jakub Hrozek <jhrozek@redhat.com> - 1.1.29-1
5fb18d
- New upstream release 1.1.29
5fb18d
- Resolves: rhbz#1400738 - libldb-1.1.29 is available
5fb18d
5fb18d
* Fri Nov 25 2016 Jakub Hrozek <jhrozek@redhat.com> - 1.1.28-1
5fb18d
- New upstream release 1.1.28
5fb18d
- Resolves: rhbz#1398307 - libldb-1.1.28 is available
5fb18d
5fb18d
* Thu Jul 28 2016 Jakub Hrozek <jhrozek@redhat.com> - 1.1.27-1
5fb18d
- New upstream release 1.1.27
5fb18d
- Resolves: rhbz#1361163 - libldb-1.1.27 is available
5fb18d
5fb18d
* Thu Jul 21 2016 Lukas Slebodnik <lslebodn@redhat.com> - 1.1.26-4
5fb18d
- rhbz#1358281 - cannot install pyldb
5fb18d
5fb18d
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.26-3
5fb18d
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
5fb18d
5fb18d
* Tue Jul 05 2016 Petr Viktorin <pviktori@redhat.com> - 1.1.26-2
5fb18d
- Package the Python3 bindings
5fb18d
5fb18d
* Mon Feb 22 2016 Jakub Hrozek <jhrozek@redhat.com> - 1.1.26-1
5fb18d
- New upstream release 1.1.26
5fb18d
5fb18d
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.25-2
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5fb18d
5fb18d
* Mon Jan  4 2016 Jakub Hrozek <jhrozek@redhat.com> - 1.1.25-1
5fb18d
- New upstream release 1.1.25
5fb18d
5fb18d
* Wed Dec 16 2015 Jakub Hrozek <jhrozek@redhat.com> - 1.1.24-1
5fb18d
- New upstream release 1.1.24
5fb18d
- Resolves: rhbz#1292070 - CVE-2015-5330 libldb: samba: Remote memory read
5fb18d
                           in Samba LDAP server [fedora-all]
5fb18d
5fb18d
* Wed Dec 16 2015 Jakub Hrozek <jhrozek@redhat.com> - 1.1.23-2
5fb18d
- Fix CVE-2015-5330
5fb18d
5fb18d
* Thu Nov 12 2015 Jakub Hrozek <jhrozek@redhat.com> - 1.1.23-1
5fb18d
- New upstream release 1.1.23
5fb18d
5fb18d
* Tue Aug 25 2015 Andreas Schneider <asn@redhat.com> - 1.1.21-1
5fb18d
- New upstream release 1.1.21
5fb18d
5fb18d
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.20-2
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5fb18d
5fb18d
* Wed Jan 28 2015 Jakub Hrozek <jhrozek@redhat.com> - 1.1.20-1
5fb18d
- New upstream release 1.1.20
5fb18d
5fb18d
* Mon Jan  5 2015 Jakub Hrozek <jhrozek@redhat.com> - 1.1.19-1
5fb18d
- New upstream release 1.1.19
5fb18d
5fb18d
* Fri Dec  5 2014 Jakub Hrozek <jhrozek@redhat.com> - 1.1.18-1
5fb18d
- New upstream release 1.1.18
5fb18d
5fb18d
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.17-4
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
5fb18d
5fb18d
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.17-3
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
5fb18d
5fb18d
* Tue May 06 2014 Jakub Hrozek <jhrozek@redhat.com> - 1.1.17-2
5fb18d
- Fix the previous changelog entry
5fb18d
5fb18d
* Tue May 06 2014 Jakub Hrozek <jhrozek@redhat.com> - 1.1.17-1
5fb18d
- New upstream release 1.1.17
5fb18d
5fb18d
* Thu Jan 02 2014 Stephen Gallagher <sgallagh@redhat.com> - 1.1.16-4
5fb18d
- Enable building libldb's LDAP interface module
5fb18d
5fb18d
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.16-3
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
5fb18d
5fb18d
* Mon Jul 08 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.1.16-2
5fb18d
- Make the Requires arch-specific
5fb18d
5fb18d
* Tue Jul 02 2013 - Andreas Schneider <asn@redhat.com> - 1.1.16-1
5fb18d
- New upstream release 1.1.16
5fb18d
5fb18d
* Wed Jun 05 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.1.15-3
5fb18d
- Relax pytdb requirement
5fb18d
5fb18d
* Thu Feb 07 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.1.15-2
5fb18d
- The 1.1.15 rebase obsoletes the patch from 1.1.14-2
5fb18d
5fb18d
* Thu Feb 07 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.1.15-1
5fb18d
- New upstream release 1.1.15
5fb18d
5fb18d
* Wed Jan 30 2013 Jakub Hrozek <jhrozek@redhat.com> - 1.1.14-2
5fb18d
- Add patch by Stephen Gallagher to include manual pages for
5fb18d
  ldb_connect() and several other functions.
5fb18d
5fb18d
* Sat Dec 01 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.1.14-1
5fb18d
- New upstream release 1.1.14
5fb18d
5fb18d
* Wed Oct 03 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.1.13-1
5fb18d
- New upstream release 1.1.13
5fb18d
5fb18d
* Mon Sep 03 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.1.12-1
5fb18d
- New upstream release 1.1.12
5fb18d
5fb18d
* Tue Aug 28 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.1.11-1
5fb18d
- New upstream release 1.1.11
5fb18d
5fb18d
* Fri Aug 10 2012 Jakub Hrozek <jhrozek@redhat.com> - 1.1.10-1
5fb18d
- New upstream release 1.1.10
5fb18d
5fb18d
* Thu Aug 02 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.1.9-1
5fb18d
- New upstream release 1.1.9
5fb18d
- Required for Samba 4 Beta 5
5fb18d
- Ensure rename target does not exist before deleting old record
5fb18d
- Add parameter to avoid NULL format string flagged by -Werror=format
5fb18d
5fb18d
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.8-2
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
5fb18d
5fb18d
* Tue Jul 10 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.1.8-1
5fb18d
- New upstream release 1.1.8
5fb18d
- Required for latest Samba 4 beta
5fb18d
- Fixes for pyldb
5fb18d
- Revert to using tdb1 by default
5fb18d
- Drop support for tdb_compat
5fb18d
- CCAN is no longer built as a static library
5fb18d
5fb18d
* Tue May 22 2012 Stephen Gallagher <sgallagh@redhat.com> - 1.1.6-1
5fb18d
- New upstream release 1.1.6
5fb18d
- Drop upstream patches
5fb18d
- Required for upcoming Samba 4 beta
5fb18d
- Explicitly build with tdb1 support
5fb18d
5fb18d
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.4-2
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5fb18d
5fb18d
* Fri Dec 09 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.4-1.1
5fb18d
- Do not build with multiple CPUs
5fb18d
5fb18d
* Tue Dec 06 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.4-1
5fb18d
- New upstream release
5fb18d
- Add ldb_module_error() routine
5fb18d
- Fedora: work around unreliable configure check for pytevent
5fb18d
- Drop patch to ignore --disable-silent-rules (included in tarball)
5fb18d
5fb18d
* Thu Dec 01 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-4
5fb18d
- Add patch to ignore --disable-silent-rules
5fb18d
5fb18d
* Wed Nov 23 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-3
5fb18d
- Add explicit mention of the bundled libreplace
5fb18d
- https://fedorahosted.org/fpc/ticket/120
5fb18d
- Add explicit mention of bundled libtdb_compat and libccan
5fb18d
- https://fedorahosted.org/fpc/ticket/119
5fb18d
5fb18d
* Mon Nov 21 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-2
5fb18d
- Build and install API documentation
5fb18d
- Build tdb_compat and ccan statically. They have no upstream releases to
5fb18d
  link against yet and their API is in flux. It is unsafe to make them
5fb18d
  public and shared at this time.
5fb18d
5fb18d
* Wed Nov 09 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.1.3-1
5fb18d
- New upstream release
5fb18d
- Required for building newer samba4 packages
5fb18d
5fb18d
* Tue Aug  2 2011 Simo Sorce <ssorce@redhat.com> - 1.1.0-1
5fb18d
- Update to 1.1.0
5fb18d
  (dependency for samba4 alpha16 snapshot)
5fb18d
5fb18d
* Tue Feb 22 2011 Simo Sorce <ssorce@redhat.com> - 1.0.2-1
5fb18d
- Update to 1.0.2
5fb18d
  (dependency for samba4 alpha15 snapshot)
5fb18d
5fb18d
* Fri Feb 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.0.0-2
5fb18d
- Disable rpath
5fb18d
5fb18d
* Fri Feb 11 2011 Stephen Gallagher <sgallagh@redhat.com> - 1.0.0-1
5fb18d
- New upstream release 1.0.0
5fb18d
- SOname bump to account for module loading changes
5fb18d
- Rename libldb-tools to ldb-tools to make upgrades easier
5fb18d
5fb18d
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.22-9
5fb18d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
5fb18d
5fb18d
* Fri Feb 04 2011 Stephen Gallagher <sgallagh@redhat.com> - 0.9.22-8
5fb18d
- Fixes from package review
5fb18d
- Change Requires: on tools subpackage to be the exact version/release
5fb18d
- Remove unnecessary BuildRoot directive
5fb18d
5fb18d
* Mon Jan 17 2011 Stephen Gallagher <sgallagh@redhat.com> - 0.9.22-7
5fb18d
- Update to 0.9.22 (first independent release of libldb upstream)
5fb18d