2ad4f7
%bcond_with tests
2ad4f7
%if 0%{?fedora}
2ad4f7
%bcond_without pkcs11
2ad4f7
%else
2ad4f7
%bcond_with pkcs11
2ad4f7
%endif
2ad4f7
%if 0%{?fedora}
2ad4f7
%bcond_without libproxy
2ad4f7
%else
2ad4f7
%bcond_with libproxy
2ad4f7
%endif
2ad4f7
2ad4f7
Summary: An HTTP and WebDAV client library
2ad4f7
Name: neon
2ad4f7
Version: 0.31.2
2ad4f7
Release: 11%{?dist}
2ad4f7
License: LGPLv2+
2ad4f7
URL: https://notroj.github.io/neon/
2ad4f7
Source0: https://notroj.github.io/neon/neon-%{version}.tar.gz
2ad4f7
Patch0: neon-0.27.0-multilib.patch
2ad4f7
Patch1: neon-0.31.2-lesstests.patch
2ad4f7
BuildRequires: expat-devel, openssl-devel, zlib-devel, krb5-devel
2ad4f7
BuildRequires: pkgconfig, make, gcc, vim-minimal
2ad4f7
%if %{with pkcs11}
2ad4f7
BuildRequires: pakchois-devel
2ad4f7
%endif
2ad4f7
%if %{with libproxy}
2ad4f7
BuildRequires: libproxy-devel
2ad4f7
%endif
2ad4f7
%if %{with tests}
2ad4f7
# SSL tests require openssl binary, PKCS#11 testing need certutil
2ad4f7
BuildRequires: /usr/bin/perl, /usr/bin/openssl, /usr/bin/certutil
2ad4f7
%endif
2ad4f7
2ad4f7
%description
2ad4f7
neon is an HTTP and WebDAV client library, with a C interface;
2ad4f7
providing a high-level interface to HTTP and WebDAV methods along
2ad4f7
with a low-level interface for HTTP request handling.  neon
2ad4f7
supports persistent connections, proxy servers, basic, digest and
2ad4f7
Kerberos authentication, and has complete SSL support.
2ad4f7
2ad4f7
%package devel
2ad4f7
Summary: Development libraries and C header files for the neon library
2ad4f7
Requires: neon = %{version}-%{release}, openssl-devel, zlib-devel, expat-devel
2ad4f7
Requires: pkgconfig
2ad4f7
# Documentation is GPLv2+
2ad4f7
License: LGPLv2+ and GPLv2+
2ad4f7
2ad4f7
%description devel
2ad4f7
The development library for the C language HTTP and WebDAV client library.
2ad4f7
2ad4f7
%prep
2ad4f7
%setup -q
2ad4f7
%patch0 -p1 -b .multilib
2ad4f7
%patch1 -p1 -b .lesstests
2ad4f7
2ad4f7
2ad4f7
# prevent installation of HTML docs
2ad4f7
sed -ibak '/^install-docs/s/install-html//' Makefile.in
2ad4f7
2ad4f7
%build
2ad4f7
export CC="%{__cc} -pthread"
2ad4f7
%configure --with-expat --enable-shared --disable-static \
2ad4f7
        --enable-warnings \
2ad4f7
        --with-ssl=openssl --enable-threadsafe-ssl=posix \
2ad4f7
%if %{with libproxy}
2ad4f7
        --with-libproxy
2ad4f7
%else
2ad4f7
        --without-libproxy
2ad4f7
%endif
2ad4f7
%make_build
2ad4f7
2ad4f7
%install
2ad4f7
rm -rf $RPM_BUILD_ROOT
2ad4f7
%make_install
2ad4f7
2ad4f7
sed -ri "/^dependency_libs/{s,-l[^ ']*,,g}" \
2ad4f7
      $RPM_BUILD_ROOT%{_libdir}/libneon.la
2ad4f7
2ad4f7
%find_lang %{name}
2ad4f7
2ad4f7
%if %{with tests}
2ad4f7
%check
2ad4f7
export TEST_QUIET=0
2ad4f7
make %{?_smp_mflags} check
2ad4f7
%endif
2ad4f7
2ad4f7
%ldconfig_scriptlets
2ad4f7
2ad4f7
%files -f %{name}.lang
2ad4f7
%doc AUTHORS BUGS TODO src/COPYING.LIB NEWS README* THANKS
2ad4f7
%{_libdir}/*.so.*
2ad4f7
2ad4f7
%files devel
2ad4f7
%{_bindir}/*
2ad4f7
%{_includedir}/*
2ad4f7
%{_libdir}/pkgconfig/neon.pc
2ad4f7
%{_mandir}/man1/*
2ad4f7
%{_mandir}/man3/*
2ad4f7
%{_libdir}/*.*a
2ad4f7
%{_libdir}/*.so
2ad4f7
2ad4f7
%changelog
2ad4f7
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.31.2-11
2ad4f7
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
2ad4f7
  Related: rhbz#1991688
2ad4f7
2ad4f7
* Tue Aug  3 2021 Joe Orton <jorton@redhat.com> - 0.31.2-10
2ad4f7
- drop libproxy support for RHEL (#1989594)
2ad4f7
2ad4f7
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.31.2-9
2ad4f7
- Rebuilt for RHEL 9 BETA for openssl 3.0
2ad4f7
  Related: rhbz#1971065
2ad4f7
2ad4f7
* Thu May 27 2021 Joe Orton <jorton@redhat.com> - 0.31.2-8
2ad4f7
- temporarily disable tests (#1964827)
2ad4f7
2ad4f7
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.31.2-7
2ad4f7
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
2ad4f7
2ad4f7
* Thu Feb  4 2021 Joe Orton <jorton@redhat.com> - 0.31.2-6
2ad4f7
- add bcond for PKCS#11 support
2ad4f7
- use make macros
2ad4f7
2ad4f7
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.31.2-5
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2ad4f7
2ad4f7
* Wed Aug 26 2020 Joe Orton <jorton@redhat.com> - 0.31.2-4
2ad4f7
- fix tests with current OpenSSL (#1863681)
2ad4f7
2ad4f7
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.31.2-3
2ad4f7
- Second attempt - Rebuilt for
2ad4f7
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2ad4f7
2ad4f7
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.31.2-2
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
2ad4f7
2ad4f7
* Wed Jun 24 2020 Joe Orton <jorton@redhat.com> - 0.31.2-1
2ad4f7
- update to 0.31.2
2ad4f7
2ad4f7
* Fri Apr 17 2020 Joe Orton <jorton@redhat.com> - 0.31.1-1
2ad4f7
- update to 0.31.1
2ad4f7
2ad4f7
* Tue Mar 24 2020 Joe Orton <jorton@redhat.com> - 0.31.0-1
2ad4f7
- update to 0.31.0
2ad4f7
2ad4f7
* Mon Feb 10 2020 Joe Orton <jorton@redhat.com> - 0.30.2-14
2ad4f7
- fix FTBFS (#1799679)
2ad4f7
2ad4f7
* Mon Feb 03 2020 Kalev Lember <klember@redhat.com> - 0.30.2-13
2ad4f7
- Avoid using bindir macro in buildrequires
2ad4f7
2ad4f7
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.2-12
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
2ad4f7
2ad4f7
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.2-11
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2ad4f7
2ad4f7
* Fri Apr  5 2019 Joe Orton <jorton@redhat.com> - 0.30.2-10
2ad4f7
- updates for OpenSSL 1.1 (#1675444)
2ad4f7
2ad4f7
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.2-9
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
2ad4f7
2ad4f7
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.2-8
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2ad4f7
2ad4f7
* Thu Jun 28 2018 Joe Orton <jorton@redhat.com> - 0.30.2-7
2ad4f7
- fix gcc warnings in test suite build
2ad4f7
2ad4f7
* Thu Jun 28 2018 Joe Orton <jorton@redhat.com> - 0.30.2-6
2ad4f7
- fix implicit writev declaration (Mattias Ellert, #1572180)
2ad4f7
- add build conditional for tests
2ad4f7
- use ldconfig_scriptlets macro
2ad4f7
2ad4f7
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.2-5
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2ad4f7
2ad4f7
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.2-4
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2ad4f7
2ad4f7
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.2-3
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2ad4f7
2ad4f7
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.2-2
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2ad4f7
2ad4f7
* Fri Sep 30 2016 Joe Orton <jorton@redhat.com> - 0.30.2-1
2ad4f7
- update to 0.30.2
2ad4f7
2ad4f7
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.30.1-4
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2ad4f7
2ad4f7
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30.1-3
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2ad4f7
2ad4f7
* Tue Sep 23 2014 Joe Orton <jorton@redhat.com> - 0.30.1-2
2ad4f7
- switch to OpenSSL
2ad4f7
2ad4f7
* Tue Sep 23 2014 Joe Orton <jorton@redhat.com> - 0.30.1-1
2ad4f7
- update to 0.30.1
2ad4f7
2ad4f7
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30.0-4
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2ad4f7
2ad4f7
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.30.0-3
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2ad4f7
2ad4f7
* Wed Jul 31 2013 Joe Orton <jorton@redhat.com> - 0.30.0-2
2ad4f7
- prevent installation of HTML docs
2ad4f7
2ad4f7
* Wed Jul 31 2013 Joe Orton <jorton@redhat.com> - 0.30.0-1
2ad4f7
- update to 0.30.0 (#983563, #926212)
2ad4f7
2ad4f7
* Mon Mar 18 2013 Joe Orton <jorton@redhat.com> - 0.29.6-6
2ad4f7
- fix strict-aliasing warning (upstream r1896)
2ad4f7
2ad4f7
* Mon Feb 25 2013 Tomáš Mráz <tmraz@redhat.com> - 0.29.6-5
2ad4f7
- fix build with gnutls3 - patch by Bartosz Brachaczek
2ad4f7
2ad4f7
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.29.6-4
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2ad4f7
2ad4f7
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.29.6-3
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2ad4f7
2ad4f7
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.29.6-2
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2ad4f7
2ad4f7
* Tue May  3 2011 Joe Orton <jorton@redhat.com> - 0.29.6-1
2ad4f7
- update to 0.29.6
2ad4f7
- correct -devel License; drop old Conflicts
2ad4f7
2ad4f7
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.29.5-2
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2ad4f7
2ad4f7
* Thu Oct 14 2010 Joe Orton <jorton@redhat.com> - 0.29.5-1
2ad4f7
- update to 0.29.5
2ad4f7
2ad4f7
* Fri Oct  1 2010 Joe Orton <jorton@redhat.com> - 0.29.4-1
2ad4f7
- update to 0.29.4
2ad4f7
2ad4f7
* Thu Mar 25 2010 Joe Orton <jorton@redhat.com> - 0.29.3-1
2ad4f7
- update to 0.29.3
2ad4f7
2ad4f7
* Fri Jan  8 2010 Joe Orton <jorton@redhat.com> - 0.29.2-1
2ad4f7
- update to 0.29.2
2ad4f7
2ad4f7
* Tue Dec 15 2009 Joe Orton <jorton@redhat.com> - 0.29.1-1
2ad4f7
- update to 0.29.1
2ad4f7
2ad4f7
* Sun Sep 13 2009 Joe Orton <jorton@redhat.com> 0.29.0-3
2ad4f7
- enable libproxy support
2ad4f7
2ad4f7
* Sun Sep 13 2009 Joe Orton <jorton@redhat.com> 0.29.0-1
2ad4f7
- update to 0.29.0
2ad4f7
2ad4f7
* Wed Aug 19 2009 Joe Orton <jorton@redhat.com> 0.28.6-1
2ad4f7
- update to 0.28.6
2ad4f7
2ad4f7
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.28.5-2
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2ad4f7
2ad4f7
* Thu Jul  9 2009 Joe Orton <jorton@redhat.com> 0.28.5-1
2ad4f7
- update to 0.28.5
2ad4f7
2ad4f7
* Fri Mar  6 2009 Joe Orton <jorton@redhat.com> 0.28.4-1
2ad4f7
- update to 0.28.4
2ad4f7
2ad4f7
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.28.3-4
2ad4f7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2ad4f7
2ad4f7
* Mon Jan 19 2009 Joe Orton <jorton@redhat.com> 0.28.3-3
2ad4f7
- use install-p in "make install" (Robert Scheck, #226189)
2ad4f7
2ad4f7
* Thu Aug 28 2008 Joe Orton <jorton@redhat.com> 0.28.3-2
2ad4f7
- update to 0.28.3
2ad4f7
2ad4f7
* Wed Jun 25 2008 Joe Orton <jorton@redhat.com> 0.28.2-4
2ad4f7
- rebuild for new GnuTLS
2ad4f7
2ad4f7
* Mon Jun  2 2008 Joe Orton <jorton@redhat.com> 0.28.2-3
2ad4f7
- require ca-certificates package
2ad4f7
2ad4f7
* Thu Apr  3 2008 Joe Orton <jorton@redhat.com> 0.28.2-2
2ad4f7
- update to 0.28.2
2ad4f7
2ad4f7
* Wed Apr  2 2008 Joe Orton <jorton@redhat.com> 0.28.1-3
2ad4f7
- use the OpenSSL CA bundle
2ad4f7
2ad4f7
* Mon Mar 10 2008 Joe Orton <jorton@redhat.com> 0.28.1-2
2ad4f7
- update to 0.28.1
2ad4f7
2ad4f7
* Tue Feb 26 2008 Joe Orton <jorton@redhat.com> 0.28.0-3
2ad4f7
- rebuild against pakchois
2ad4f7
2ad4f7
* Wed Dec  5 2007 Joe Orton <jorton@redhat.com> 0.27.2-4
2ad4f7
- trim dependency_libs in .la file
2ad4f7
2ad4f7
* Tue Dec  4 2007 Joe Orton <jorton@redhat.com> 0.27.2-3
2ad4f7
- rebuild against GnuTLS
2ad4f7
- drop static library
2ad4f7
2ad4f7
* Tue Sep 25 2007 Joe Orton <jorton@redhat.com> 0.27.2-2
2ad4f7
- update to 0.27.2
2ad4f7
2ad4f7
* Thu Sep 20 2007 Joe Orton <jorton@redhat.com> 0.27.0-3
2ad4f7
- fix Negotiate response verification
2ad4f7
2ad4f7
* Thu Aug 30 2007 Joe Orton <jorton@redhat.com> 0.27.0-2
2ad4f7
- enable OpenSSL thread-safety hooks
2ad4f7
2ad4f7
* Wed Aug 22 2007 Joe Orton <jorton@redhat.com> 0.27.0-1
2ad4f7
- update to 0.27.0 (#243638)
2ad4f7
2ad4f7
* Mon Aug 20 2007 Joe Orton <jorton@redhat.com> 0.25.5-7
2ad4f7
- fix License
2ad4f7
2ad4f7
* Mon Feb  5 2007 Joe Orton <jorton@redhat.com> 0.25.5-6
2ad4f7
- remove trailing dot in -devel Summary
2ad4f7
- use standard BuildRoot
2ad4f7
- change Group to System Environment/Libraries
2ad4f7
- drop Prefix
2ad4f7
2ad4f7
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.25.5-5.1
2ad4f7
- rebuild
2ad4f7
2ad4f7
* Thu Jun  1 2006 Joe Orton <jorton@redhat.com> 0.25.5-5
2ad4f7
- have -devel require pkgconfig (#193355)
2ad4f7
2ad4f7
* Wed May 24 2006 Joe Orton <jorton@redhat.com> 0.25.5-4
2ad4f7
- add multilib fixes for neon-config (#192734)
2ad4f7
2ad4f7
* Wed May 17 2006 Joe Orton <jorton@redhat.com> 0.25.5-3
2ad4f7
- rebuild
2ad4f7
2ad4f7
* Mon Feb 27 2006 Joe Orton <jorton@redhat.com> 0.25.5-2
2ad4f7
- don't trim exported libraries (#182997)
2ad4f7
2ad4f7
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.25.5-1.2
2ad4f7
- bump again for double-long bug on ppc(64)
2ad4f7
2ad4f7
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.25.5-1.1
2ad4f7
- rebuilt for new gcc4.1 snapshot and glibc changes
2ad4f7
2ad4f7
* Tue Jan 31 2006 Joe Orton <jorton@redhat.com> 0.25.5-1
2ad4f7
- update to 0.25.5
2ad4f7
2ad4f7
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
2ad4f7
- rebuilt
2ad4f7
2ad4f7
* Wed Dec  7 2005 Joe Orton <jorton@redhat.com> 0.24.7-10
2ad4f7
- strip unnecessary exports from .la file/neon-config
2ad4f7
2ad4f7
* Tue Nov  8 2005 Tomas Mraz <tmraz@redhat.com> 0.24.7-9
2ad4f7
- rebuilt with new openssl
2ad4f7
2ad4f7
* Fri Sep 23 2005 Joe Orton <jorton@redhat.com> 0.24.7-8
2ad4f7
- restore static libs for rpm
2ad4f7
2ad4f7
* Mon Sep 19 2005 Joe Orton <jorton@redhat.com> 0.24.7-7
2ad4f7
- drop static libs, doc/html from devel docdir
2ad4f7
2ad4f7
* Wed Mar  2 2005 Joe Orton <jorton@redhat.com> 0.24.7-6
2ad4f7
- rebuild
2ad4f7
2ad4f7
* Thu Feb 10 2005 Joe Orton <jorton@redhat.com> 0.24.7-5
2ad4f7
- don't define min() in ne_utils.h (Caolan McNamara, #147228)
2ad4f7
2ad4f7
* Tue Oct 12 2004 Joe Orton <jorton@redhat.com> 0.24.7-4
2ad4f7
- update to GSSAPI code from trunk
2ad4f7
2ad4f7
* Fri Jul 23 2004 Joe Orton <jorton@redhat.com> 0.24.7-3
2ad4f7
- rebuild
2ad4f7
2ad4f7
* Tue Jul 20 2004 Joe Orton <jorton@redhat.com> 0.24.7-2.1
2ad4f7
- rebuild
2ad4f7
2ad4f7
* Tue Jul  6 2004 Joe Orton <jorton@redhat.com> 0.24.7-2
2ad4f7
- devel requires neon of same release, expat-devel (#127330)
2ad4f7
2ad4f7
* Mon Jul  5 2004 Joe Orton <jorton@redhat.com> 0.24.7-1
2ad4f7
- update to 0.24.7
2ad4f7
2ad4f7
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
2ad4f7
- rebuilt
2ad4f7
2ad4f7
* Wed May 19 2004 Joe Orton <jorton@redhat.com> 0.24.6-1
2ad4f7
- update to 0.24.6
2ad4f7
2ad4f7
* Wed Apr 14 2004 Joe Orton <jorton@redhat.com> 0.24.5-2
2ad4f7
- rebuild
2ad4f7
2ad4f7
* Wed Apr 14 2004 Joe Orton <jorton@redhat.com> 0.24.5-1
2ad4f7
- update to 0.24.5 for CVE CAN-2004-0179 fix
2ad4f7
2ad4f7
* Thu Mar 25 2004 Joe Orton <jorton@redhat.com> 0.24.4-4
2ad4f7
- implement the Negotate auth scheme, and only over SSL
2ad4f7
2ad4f7
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
2ad4f7
- rebuilt
2ad4f7
2ad4f7
* Wed Feb 25 2004 Joe Orton <jorton@redhat.com> 0.24.4-3
2ad4f7
- use BuildRequires not BuildPrereq, drop autoconf, libtool;
2ad4f7
  -devel requires {openssl,zlib}-devel (#116744)
2ad4f7
2ad4f7
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 0.24.4-2
2ad4f7
- rebuilt
2ad4f7
2ad4f7
* Mon Feb  9 2004 Joe Orton <jorton@redhat.com> 0.24.4-1
2ad4f7
- update to 0.24.4
2ad4f7
2ad4f7
* Thu Oct  9 2003 Joe Orton <jorton@redhat.com> 0.24.3-1
2ad4f7
- update to 0.24.3
2ad4f7
2ad4f7
* Wed Sep 24 2003 Joe Orton <jorton@redhat.com> 0.24.2-1
2ad4f7
- update to 0.24.2
2ad4f7
2ad4f7
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 0.23.9-7
2ad4f7
- rebuild
2ad4f7
2ad4f7
* Tue Jun 24 2003 Joe Orton <jorton@redhat.com> 0.23.9-6
2ad4f7
- never print libdir in --libs output
2ad4f7
2ad4f7
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
2ad4f7
- rebuilt
2ad4f7
2ad4f7
* Tue Jun  3 2003 Joe Orton <jorton@redhat.com> 0.23.9-4
2ad4f7
- don't regenerate docs; limit conflict with subversion
2ad4f7
2ad4f7
* Wed May 28 2003 Jeff Johnson <jbj@redhat.com> 0.23.9-3
2ad4f7
- build.
2ad4f7
2ad4f7
* Sat May 24 2003 Florian La Roche <Florian.LaRoche@redhat.de>
2ad4f7
- add ldconfig to post/postun
2ad4f7
2ad4f7
* Tue May 20 2003 Jeff Johnson <jbj@redhat.com> 0.23.9-2
2ad4f7
- force expat, include neon-config, for subversion build.
2ad4f7
- do "make check" (but ignore failure for now)
2ad4f7
2ad4f7
* Mon May 19 2003 Jeff Johnson <jbj@redhat.com> 0.23.9-1
2ad4f7
- upgrade to 0.23.9.
2ad4f7
- avoid xmlto breakage generating man pages for now.
2ad4f7
2ad4f7
* Mon Nov 11 2002 Jeff Johnson <jbj@redhat.com> 0.23.5-2
2ad4f7
- avoid subversion-devel until libxml2 vs. expat is resolved.
2ad4f7
2ad4f7
* Sat Nov  9 2002 Jeff Johnson <jbj@redhat.com> 0.23.5-1
2ad4f7
- Create.