Blame SPECS/apr-util.spec

975054
975054
%if 0%{?fedora} < 18 && 0%{?rhel} < 7
975054
%define dbdep db4-devel
975054
%else
975054
%define dbdep libdb-devel
975054
%endif
975054
975054
%if 0%{?rhel}
975054
%define with_freetds 0
975054
%else
975054
%define with_freetds 1
975054
%endif
975054
975054
%define apuver 1
975054
975054
Summary: Apache Portable Runtime Utility library
975054
Name: apr-util
975054
Version: 1.5.2
975054
Release: 6%{?dist}
975054
License: ASL 2.0
975054
Group: System Environment/Libraries
975054
URL: http://apr.apache.org/
975054
Source0: http://www.apache.org/dist/apr/%{name}-%{version}.tar.bz2
975054
Patch1: apr-util-1.2.7-pkgconf.patch
975054
Patch2: apr-util-1.3.7-nodbmdso.patch
975054
Patch3: apr-util-1.5.2-aarch64.patch
975054
Patch4: apr-util-1.4.1-private.patch
975054
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
975054
BuildRequires: autoconf, apr-devel >= 1.3.0
975054
BuildRequires: %{dbdep}, expat-devel, libuuid-devel
975054
975054
%description
975054
The mission of the Apache Portable Runtime (APR) is to provide a
975054
free library of C data structures and routines.  This library
975054
contains additional utility interfaces for APR; including support
975054
for XML, LDAP, database interfaces, URI parsing and more.
975054
975054
%package devel
975054
Group: Development/Libraries
975054
Summary: APR utility library development kit
975054
Requires: apr-util%{?_isa} = %{version}-%{release}, apr-devel%{?_isa}, pkgconfig
975054
Requires: %{dbdep}%{?_isa}, expat-devel%{?_isa}, openldap-devel%{?_isa}
975054
975054
%description devel
975054
This package provides the support files which can be used to 
975054
build applications using the APR utility library.  The mission 
975054
of the Apache Portable Runtime (APR) is to provide a free 
975054
library of C data structures and routines.
975054
975054
%package pgsql
975054
Group: Development/Libraries
975054
Summary: APR utility library PostgreSQL DBD driver
975054
BuildRequires: postgresql-devel
975054
Requires: apr-util%{?_isa} = %{version}-%{release}
975054
975054
%description pgsql
975054
This package provides the PostgreSQL driver for the apr-util
975054
DBD (database abstraction) interface.
975054
975054
%package mysql
975054
Group: Development/Libraries
975054
Summary: APR utility library MySQL DBD driver
975054
BuildRequires: mysql-devel
975054
Requires: apr-util%{?_isa} = %{version}-%{release}
975054
975054
%description mysql
975054
This package provides the MySQL driver for the apr-util DBD
975054
(database abstraction) interface.
975054
975054
%package sqlite
975054
Group: Development/Libraries
975054
Summary: APR utility library SQLite DBD driver
975054
BuildRequires: sqlite-devel >= 3.0.0
975054
Requires: apr-util%{?_isa} = %{version}-%{release}
975054
975054
%description sqlite
975054
This package provides the SQLite driver for the apr-util DBD
975054
(database abstraction) interface.
975054
975054
%if %{with_freetds}
975054
975054
%package freetds
975054
Group: Development/Libraries
975054
Summary: APR utility library FreeTDS DBD driver
975054
BuildRequires: freetds-devel
975054
Requires: apr-util%{?_isa} = %{version}-%{release}
975054
975054
%description freetds
975054
This package provides the FreeTDS driver for the apr-util DBD
975054
(database abstraction) interface.
975054
975054
%endif
975054
975054
%package odbc
975054
Group: Development/Libraries
975054
Summary: APR utility library ODBC DBD driver
975054
BuildRequires: unixODBC-devel
975054
Requires: apr-util%{?_isa} = %{version}-%{release}
975054
975054
%description odbc
975054
This package provides the ODBC driver for the apr-util DBD
975054
(database abstraction) interface.
975054
975054
%package ldap
975054
Group: Development/Libraries
975054
Summary: APR utility library LDAP support
975054
BuildRequires: openldap-devel
975054
Requires: apr-util%{?_isa} = %{version}-%{release}
975054
975054
%description ldap
975054
This package provides the LDAP support for the apr-util.
975054
975054
%package openssl
975054
Group: Development/Libraries
975054
Summary: APR utility library OpenSSL crytpo support
975054
BuildRequires: openssl-devel
975054
Requires: apr-util%{?_isa} = %{version}-%{release}
975054
975054
%description openssl
975054
This package provides the OpenSSL crypto support for the apr-util.
975054
975054
%package nss
975054
Group: Development/Libraries
975054
Summary: APR utility library NSS crytpo support
975054
BuildRequires: nss-devel
975054
Requires: apr-util%{?_isa} = %{version}-%{release}
975054
975054
%description nss
975054
This package provides the NSS crypto support for the apr-util.
975054
975054
%prep
975054
%setup -q
975054
%patch1 -p1 -b .pkgconf
975054
%patch2 -p1 -b .nodbmdso
975054
%patch3 -p1 -b .aarch64
975054
%patch4 -p1 -b .private
975054
975054
%build
975054
autoheader && autoconf
975054
# A fragile autoconf test which fails if the code trips
975054
# any other warning; force correct result for OpenLDAP:
975054
export ac_cv_ldap_set_rebind_proc_style=three
975054
%configure --with-apr=%{_prefix} \
975054
        --includedir=%{_includedir}/apr-%{apuver} \
975054
        --with-ldap=ldap_r --without-gdbm \
975054
        --with-sqlite3 --with-pgsql --with-mysql --with-odbc \
975054
%if %{with_freetds}
975054
        --with-freetds \
975054
%else
975054
        --without-freetds \
975054
%endif
975054
        --with-berkeley-db \
975054
        --without-sqlite2 \
975054
        --with-crypto --with-openssl --with-nss
975054
make %{?_smp_mflags}
975054
975054
%install
975054
rm -rf $RPM_BUILD_ROOT
975054
make install DESTDIR=$RPM_BUILD_ROOT
975054
975054
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/aclocal
975054
install -m 644 build/find_apu.m4 $RPM_BUILD_ROOT/%{_datadir}/aclocal
975054
975054
# Unpackaged files; remove the static libaprutil
975054
rm -f $RPM_BUILD_ROOT%{_libdir}/aprutil.exp \
975054
      $RPM_BUILD_ROOT%{_libdir}/libapr*.a
975054
975054
# And remove the reference to the static libaprutil from the .la
975054
# file.
975054
sed -i '/^old_library/s,libapr.*\.a,,' \
975054
      $RPM_BUILD_ROOT%{_libdir}/libapr*.la
975054
975054
# Remove unnecessary exports from dependency_libs
975054
sed -ri '/^dependency_libs/{s,-l(pq|sqlite[0-9]|rt|dl|uuid) ,,g}' \
975054
      $RPM_BUILD_ROOT%{_libdir}/libapr*.la
975054
975054
# Trim libtool DSO cruft
975054
rm -f $RPM_BUILD_ROOT%{_libdir}/apr-util-%{apuver}/*.*a
975054
975054
%check
975054
# Run the less verbose test suites
975054
export MALLOC_CHECK_=2 MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
975054
cd test
975054
make %{?_smp_mflags} testall
975054
# testall breaks with DBD DSO; ignore
975054
export LD_LIBRARY_PATH="`echo "../dbm/.libs:../dbd/.libs:../ldap/.libs:$LD_LIBRARY_PATH" | sed -e 's/::*$//'`"
975054
./testall -v -q || true
975054
./testall testrmm
975054
./testall testdbm
975054
975054
%clean
975054
rm -rf $RPM_BUILD_ROOT
975054
975054
%post -p /sbin/ldconfig
975054
975054
%postun -p /sbin/ldconfig
975054
975054
%files
975054
%defattr(-,root,root,-)
975054
%doc CHANGES LICENSE NOTICE
975054
%{_libdir}/libaprutil-%{apuver}.so.*
975054
%dir %{_libdir}/apr-util-%{apuver}
975054
975054
%files pgsql
975054
%defattr(-,root,root,-)
975054
%{_libdir}/apr-util-%{apuver}/apr_dbd_pgsql*
975054
975054
%files mysql
975054
%defattr(-,root,root,-)
975054
%{_libdir}/apr-util-%{apuver}/apr_dbd_mysql*
975054
975054
%files sqlite
975054
%defattr(-,root,root,-)
975054
%{_libdir}/apr-util-%{apuver}/apr_dbd_sqlite*
975054
975054
%if %{with_freetds}
975054
975054
%files freetds
975054
%defattr(-,root,root,-)
975054
%{_libdir}/apr-util-%{apuver}/apr_dbd_freetds*
975054
975054
%endif
975054
975054
%files odbc
975054
%defattr(-,root,root,-)
975054
%{_libdir}/apr-util-%{apuver}/apr_dbd_odbc*
975054
975054
%files ldap
975054
%defattr(-,root,root,-)
975054
%{_libdir}/apr-util-%{apuver}/apr_ldap*
975054
975054
%files openssl
975054
%defattr(-,root,root,-)
975054
%{_libdir}/apr-util-%{apuver}/apr_crypto_openssl*
975054
975054
%files nss
975054
%defattr(-,root,root,-)
975054
%{_libdir}/apr-util-%{apuver}/apr_crypto_nss*
975054
975054
%files devel
975054
%defattr(-,root,root,-)
975054
%{_bindir}/apu-%{apuver}-config
975054
%{_libdir}/libaprutil-%{apuver}.*a
975054
%{_libdir}/libaprutil-%{apuver}.so
975054
%{_includedir}/apr-%{apuver}/*.h
975054
%{_libdir}/pkgconfig/*.pc
975054
%{_datadir}/aclocal/*.m4
975054
975054
%changelog
975054
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.5.2-6
975054
- Mass rebuild 2014-01-24
975054
975054
* Wed Jan 15 2014 Honza Horak <hhorak@redhat.com> - 1.5.2-5
975054
- Rebuild for mariadb-libs
975054
  Related: #1045013
975054
975054
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.5.2-4
975054
- Mass rebuild 2013-12-27
975054
975054
* Thu May 09 2013 Jan Kaluza <jkaluza@redhat.com> - 1.5.2-3
975054
- do not build with freetds when it is not available
975054
975054
* Tue Apr  9 2013 Joe Orton <jorton@redhat.com> - 1.5.2-2
975054
- update for aarch64
975054
975054
* Tue Apr  9 2013 Joe Orton <jorton@redhat.com> - 1.5.2-1
975054
- update to 1.5.2
975054
975054
* Thu Feb 07 2013 Jon Ciesla <limburgher@gmail.com> - 1.4.1-8
975054
- Apply private patch from Merge Review BZ 225254.
975054
975054
* Wed Nov 07 2012 Jan Kaluza <jkaluza@redhat.com> - 1.4.1-7
975054
- ensure we use latest libdb5 (not libdb4)
975054
975054
* Thu Oct 18 2012 Joe Orton <jorton@redhat.com> - 1.4.1-6
975054
- use -lldap_r instead of -lldap
975054
975054
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-5
975054
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
975054
975054
* Wed Jun  6 2012 Joe Orton <jorton@redhat.com> - 1.4.1-4
975054
- fix crypt_r failure modes (#819650)
975054
975054
* Tue Apr 24 2012 Joe Orton <jorton@redhat.com> - 1.4.1-3
975054
- apply _isa to deps
975054
975054
* Mon Apr 23 2012 Joe Orton <jorton@redhat.com> - 1.4.1-2
975054
- switch to libdb-devel
975054
975054
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-2
975054
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
975054
975054
* Thu Dec 15 2011 Bojan Smojver <bojan@rexursive.com> - 1.4.1-1
975054
- bump up to 1.4.1
975054
975054
* Fri May 20 2011 Bojan Smojver <bojan@rexursive.com> - 1.3.12-1
975054
- bump up to 1.3.12
975054
975054
* Wed May 11 2011 Bojan Smojver <bojan@rexursive.com> - 1.3.11-2
975054
- fix crash in apr_ldap_rebind_init()
975054
975054
* Mon May  9 2011 Bojan Smojver <bojan@rexursive.com> - 1.3.11-1
975054
- bump up to 1.3.11
975054
975054
* Wed Mar 23 2011 Dan Horák <dan@danny.cz> - 1.3.10-7
975054
- rebuilt for mysql 5.5.10 (soname bump in libmysqlclient)
975054
975054
* Wed Mar 23 2011 Joe Orton <jorton@redhat.com> - 1.3.10-6
975054
- rebuild for MySQL soname bump
975054
975054
* Wed Mar  2 2011 Joe Orton <jorton@redhat.com> - 1.3.10-5
975054
- fix build
975054
975054
* Wed Mar  2 2011 Joe Orton <jorton@redhat.com> - 1.3.10-4
975054
- rebuild
975054
975054
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.10-3
975054
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
975054
975054
* Wed Dec 29 2010 Bojan Smojver <bojan@rexursive.com> - 1.3.10-2
975054
- rebuild for MySQL 5.5.x
975054
975054
* Tue Oct  5 2010 Joe Orton <jorton@redhat.com> - 1.3.10-1
975054
- update to 1.3.10
975054
975054
* Wed Nov 25 2009 Joe Orton <jorton@redhat.com> - 1.3.9-3
975054
- rebuild for new BDB
975054
975054
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.3.9-2
975054
- rebuilt with new openssl
975054
975054
* Thu Aug  6 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.9-1
975054
- bump up to 1.3.9
975054
- CVE-2009-2412
975054
- allocator alignment fixes
975054
975054
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.8-3
975054
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
975054
975054
* Wed Jul 15 2009 Bojan Smojver <bojan@rexursive.com> 1.3.8-2
975054
- adjust apr-util-1.3.7-nodbmdso.patch
975054
975054
* Wed Jul 15 2009 Bojan Smojver <bojan@rexursive.com> 1.3.8-1
975054
- bump up to 1.3.8
975054
975054
* Wed Jul 15 2009 Bojan Smojver <bojan@rexursive.com> 1.3.7-5
975054
- BR: +libuuid-devel, -e2fsprogs-devel
975054
975054
* Tue Jun  9 2009 Joe Orton <jorton@redhat.com> 1.3.7-4
975054
- disable DBM-drivers-as-DSO support
975054
- backport r783046 from upstream
975054
975054
* Mon Jun  8 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.7-3
975054
- make export of LD_LIBRARY_PATH simpler
975054
975054
* Mon Jun  8 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.7-2
975054
- revert tests
975054
975054
* Mon Jun  8 2009 Bojan Smojver <bojan@rexursive.com> - 1.3.7-1
975054
- bump up to 1.3.7
975054
- CVE-2009-0023
975054
- "billion laughs" fix of apr_xml_* interface
975054
975054
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.4-3
975054
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
975054
975054
* Fri Jan 23 2009 Joe Orton <jorton@redhat.com> 1.3.4-2
975054
- rebuild for new MySQL
975054
975054
* Wed Aug 16 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.4-1
975054
- bump up to 1.3.4
975054
- drop PostgreSQL patch, fixed upstream
975054
975054
* Wed Jul 16 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-8
975054
- beat the fuzz, rework apr-util-1.2.7-pkgconf.patch
975054
975054
* Wed Jul 16 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-7
975054
- ship find_apu.m4, fix bug #455189
975054
975054
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.3.2-6
975054
- rebuild for new db4-4.7
975054
975054
* Tue Jul  8 2008 Joe Orton <jorton@redhat.com> 1.3.2-5
975054
- restore requires for openldap-devel from -devel
975054
975054
* Wed Jul  2 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-4
975054
- properly fix PostgreSQL detection
975054
975054
* Wed Jul  2 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-3
975054
- revert build dependencies, change from -2 didn't help
975054
- add apr-util-1.3.2-pgsql.patch (remove pgsql_LIBS during detection)
975054
975054
* Wed Jul  2 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-2
975054
- try adding postgresql-server to build dependencies to pull some libs in
975054
975054
* Thu Jun 19 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.2-1
975054
- bump up to 1.3.2
975054
975054
* Sun Jun  1 2008 Bojan Smojver <bojan@rexursive.com> - 1.3.0-1
975054
- bump up to 1.3.0
975054
975054
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.2.12-5
975054
- Autorebuild for GCC 4.3
975054
975054
* Tue Dec  4 2007 Joe Orton <jorton@redhat.com> 1.2.12-4
975054
- rebuild for OpenLDAP soname bump
975054
975054
* Mon Dec  3 2007 Bojan Smojver <bojan@rexursive.com> - 1.2.12-3
975054
- remove all instances of MySQL flags being added to APRUTIL_LDFLAGS
975054
975054
* Tue Nov 27 2007 Bojan Smojver <bojan@rexursive.com> - 1.2.12-1
975054
- bump up to 1.2.12
975054
- drop MySQL DBD driver, shipped upstream
975054
- adjust various patches to apply
975054
- rework tests in %%check (1.2.x got tests from trunk)
975054
975054
* Mon Sep 24 2007 Jesse Keating <jkeating@redhat.com> - 1.2.10-2
975054
- Rebuild for upgrade path (add dist since that's now on F-7 branch)
975054
975054
* Sun Sep  9 2007 Bojan Smojver <bojan@rexursive.com> 1.2.10-1
975054
- bump up to 1.2.10
975054
- pick up newly checked in MySQL DBD driver directly from ASF
975054
- remove dbdopen patch (fixed upstream)
975054
- remove xmlns patch (fixed upstream)
975054
- remove autoexpat patch (fixed upstream)
975054
975054
* Sun Sep  2 2007 Joe Orton <jorton@redhat.com> 1.2.8-12
975054
- rebuild for fixed APR 32-bit ABI
975054
- remove sqlite driver from main package (#274521)
975054
975054
* Wed Aug 22 2007 Joe Orton <jorton@redhat.com> 1.2.8-11
975054
- rebuild for expat soname bump
975054
975054
* Tue Aug 21 2007 Joe Orton <jorton@redhat.com> 1.2.8-10
975054
- fix License
975054
975054
* Wed Aug  8 2007 Joe Orton <jorton@redhat.com> 1.2.8-9
975054
- add rewrite of expat autoconf code (upstream r493791)
975054
- fix build for new glibc open()-as-macro
975054
- split out sqlite subpackage
975054
975054
* Tue Jul  3 2007 Joe Orton <jorton@redhat.com> 1.2.8-8
975054
- add fix for attribute namespace handling in apr_xml (PR 41908)
975054
975054
* Thu Apr  5 2007 Joe Orton <jorton@redhat.com> 1.2.8-7
975054
- remove old Conflicts, doxygen BR (#225254)
975054
975054
* Fri Mar 23 2007 Joe Orton <jorton@redhat.com> 1.2.8-6
975054
- add DBD DSO lifetime fix (r521327)
975054
975054
* Thu Mar 22 2007 Joe Orton <jorton@redhat.com> 1.2.8-5
975054
- drop doxygen documentation (which caused multilib conflicts)
975054
975054
* Wed Feb 28 2007 Joe Orton <jorton@redhat.com> 1.2.8-4
975054
- add mysql driver in -mysql subpackage (Bojan Smojver, #222237)
975054
975054
* Tue Feb 27 2007 Joe Orton <jorton@redhat.com> 1.2.8-3
975054
- build DBD drivers as DSOs (w/Bojan Smojver, #192922)
975054
- split out pgsql driver into -pgsql subpackage
975054
975054
* Tue Dec  5 2006 Joe Orton <jorton@redhat.com> 1.2.8-2
975054
- update to 1.2.8, pick up new libpq soname
975054
975054
* Fri Dec  1 2006 Joe Orton <jorton@redhat.com> 1.2.7-5
975054
- really rebuild for db45
975054
975054
* Sat Nov 11 2006 Joe Orton <jorton@redhat.com> 1.2.7-4
975054
- add support for BDB 4.5 from upstream, rebuild
975054
975054
* Wed Jul 19 2006 Joe Orton <jorton@redhat.com> 1.2.7-3
975054
- fix buildconf with autoconf 2.60
975054
975054
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.2.7-2.1
975054
- rebuild
975054
975054
* Tue May  2 2006 Joe Orton <jorton@redhat.com> 1.2.7-2
975054
- update to 1.2.7
975054
- use pkg-config in apu-1-config to make it libdir-agnostic
975054
975054
* Thu Apr  6 2006 Joe Orton <jorton@redhat.com> 1.2.6-2
975054
- update to 1.2.6
975054
- define LDAP_DEPRECATED in apr_ldap.h (r391985, #188073)
975054
975054
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-4.2
975054
- bump again for double-long bug on ppc(64)
975054
975054
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-4.1
975054
- rebuilt for new gcc4.1 snapshot and glibc changes
975054
975054
* Mon Jan 30 2006 Joe Orton <jorton@redhat.com> 1.2.2-4
975054
- rebuild to drop reference to libexpat.la
975054
975054
* Wed Jan 18 2006 Joe Orton <jorton@redhat.com> 1.2.2-3
975054
- disable sqlite2 support
975054
- BuildRequire e2fsprogs-devel
975054
- enable malloc paranoia in %%check
975054
975054
* Tue Jan  3 2006 Jesse Keating <jkeating@redhat.com> 1.2.2-2.2
975054
- rebuilt again
975054
975054
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
975054
- rebuilt
975054
975054
* Tue Dec  6 2005 Joe Orton <jorton@redhat.com> 1.2.2-2
975054
- trim exports from .la file/--libs output (#174924)
975054
975054
* Fri Nov 25 2005 Joe Orton <jorton@redhat.com> 1.2.2-1
975054
- update to 1.2.2
975054
975054
* Thu Oct 20 2005 Joe Orton <jorton@redhat.com> 0.9.7-3
975054
- fix epoch again
975054
975054
* Thu Oct 20 2005 Joe Orton <jorton@redhat.com> 0.9.7-2
975054
- update to 0.9.7
975054
- drop static libs (#170051)
975054
975054
* Tue Jul 26 2005 Joe Orton <jorton@redhat.com> 0.9.6-3
975054
- add FILE bucket fix for truncated files (#159191)
975054
- add epoch to dependencies
975054
975054
* Fri Mar  4 2005 Joe Orton <jorton@redhat.com> 0.9.6-2
975054
- rebuild
975054
975054
* Wed Feb  9 2005 Joe Orton <jorton@redhat.com> 0.9.6-1
975054
- update to 0.9.6
975054
975054
* Wed Jan 19 2005 Joe Orton <jorton@redhat.com> 0.9.5-3
975054
- restore db-4.3 detection lost in 0.9.5 upgrade
975054
975054
* Wed Jan 19 2005 Joe Orton <jorton@redhat.com> 0.9.5-2
975054
- rebuild
975054
975054
* Mon Nov 22 2004 Joe Orton <jorton@redhat.com> 0.9.5-1
975054
- update to 0.9.5
975054
975054
* Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 0.9.4-19
975054
- actually explicitly check for and detect db-4.3.
975054
975054
* Thu Nov 11 2004 Jeff Johnson <jbj@jbj.org> 0.9.4-18
975054
- rebuild against db-4.3.21.
975054
975054
* Fri Sep 17 2004 Joe Orton <jorton@redhat.com> 0.9.4-17
975054
- add security fix for CAN-2004-0786
975054
975054
* Sat Jun 19 2004 Joe Orton <jorton@redhat.com> 0.9.4-16
975054
- have -devel require matching release of apr-util
975054
975054
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
975054
- rebuilt
975054
975054
* Thu Apr  1 2004 Joe Orton <jorton@redhat.com> 0.9.4-14
975054
- fix use of SHA1 passwords (#119651)
975054
975054
* Tue Mar 30 2004 Joe Orton <jorton@redhat.com> 0.9.4-13
975054
- remove fundamentally broken check_sbcs() from xlate code
975054
975054
* Fri Mar 19 2004 Joe Orton <jorton@redhat.com> 0.9.4-12
975054
- tweak xlate fix
975054
975054
* Fri Mar 19 2004 Joe Orton <jorton@redhat.com> 0.9.4-11
975054
- rebuild with xlate fixes and tests enabled
975054
975054
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 0.9.4-10.1
975054
- rebuilt
975054
975054
* Tue Mar  2 2004 Joe Orton <jorton@redhat.com> 0.9.4-10
975054
- rename sdbm_* symbols to apu__sdbm_*
975054
975054
* Mon Feb 16 2004 Joe Orton <jorton@redhat.com> 0.9.4-9
975054
- fix sdbm apr_dbm_exists() on s390x/ppc64
975054
975054
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 0.9.4-8
975054
- rebuilt
975054
975054
* Thu Feb  5 2004 Joe Orton <jorton@redhat.com> 0.9.4-7
975054
- fix warnings from use of apr_optional*.h with gcc 3.4
975054
975054
* Thu Jan 29 2004 Joe Orton <jorton@redhat.com> 0.9.4-6
975054
- drop gdbm support
975054
975054
* Thu Jan  8 2004 Joe Orton <jorton@redhat.com> 0.9.4-5
975054
- fix DB library detection
975054
975054
* Sat Dec 13 2003 Jeff Johnson <jbj@jbj.org> 0.9.4-4
975054
- rebuild against db-4.2.52.
975054
975054
* Mon Oct 13 2003 Jeff Johnson <jbj@jbj.org> 0.9.4-3
975054
- rebuild against db-4.2.42.
975054
975054
* Mon Oct  6 2003 Joe Orton <jorton@redhat.com> 0.9.4-2
975054
- fix 'apu-config --apu-la-file' output
975054
975054
* Mon Oct  6 2003 Joe Orton <jorton@redhat.com> 0.9.4-1
975054
- update to 0.9.4.
975054
975054
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 0.9.3-10
975054
- rebuild
975054
975054
* Mon Jul  7 2003 Joe Orton <jorton@redhat.com> 0.9.3-9
975054
- rebuild
975054
- don't run testuuid test because of #98677
975054
975054
* Thu Jul  3 2003 Joe Orton <jorton@redhat.com> 0.9.3-8
975054
- rebuild
975054
975054
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
975054
- rebuilt
975054
975054
* Tue May 20 2003 Joe Orton <jorton@redhat.com> 0.9.3-6
975054
- fix to detect crypt_r correctly (CAN-2003-0195)
975054
975054
* Thu May 15 2003 Joe Orton <jorton@redhat.com> 0.9.3-5
975054
- fix to try linking against -ldb first (#90917)
975054
- depend on openldap, gdbm, db4, expat appropriately.
975054
975054
* Tue May 13 2003 Joe Orton <jorton@redhat.com> 0.9.3-4
975054
- rebuild
975054
975054
* Wed May  7 2003 Joe Orton <jorton@redhat.com> 0.9.3-3
975054
- make devel package conflict with old subversion-devel
975054
- run the less crufty parts of the test suite
975054
975054
* Tue Apr 29 2003 Joe Orton <jorton@redhat.com> 0.9.3-2
975054
- run ldconfig in post/postun
975054
975054
* Mon Apr 28 2003 Joe Orton <jorton@redhat.com> 0.9.3-1
975054
- initial build