42db57
42db57
Name:           redland
42db57
Version:        1.0.17
42db57
Release:        29%{?dist}
42db57
Summary:        RDF Application Framework
42db57
42db57
License:        LGPLv2+ or ASL 2.0
42db57
URL:            http://librdf.org/
42db57
Source0:        http://download.librdf.org/source/%{name}-%{version}.tar.gz
42db57
42db57
%if 0%{?rhel}
42db57
Patch1:         0001-rhbz-1936659-stub-deprecated.patch
42db57
%endif
42db57
42db57
BuildRequires:  make
42db57
BuildRequires:  curl-devel
42db57
BuildRequires:  gcc-c++
42db57
BuildRequires:  gtk-doc
42db57
BuildRequires:  libdb-devel
42db57
BuildRequires:  libtool
42db57
BuildRequires:  libtool-ltdl-devel
42db57
BuildRequires:  libxml2-devel >= 2.4.0
42db57
BuildRequires:  perl-interpreter
42db57
BuildRequires:  raptor2-devel 
42db57
BuildRequires:  rasqal-devel >= 0.9.26
42db57
42db57
%if ! 0%{?rhel}
42db57
BuildRequires:  libpq-devel
42db57
BuildRequires:  mariadb-connector-c-devel
42db57
BuildRequires:  sqlite-devel
42db57
%endif
42db57
42db57
%if 0%{?rhel}
42db57
Obsoletes: redland-mysql < 1.0.17-24
42db57
Obsoletes: redland-pgsql < 1.0.17-24
42db57
%endif
42db57
# can probably omit soon (f28 or f29?) -- rex
42db57
Obsoletes: redland-virtuoso < 1.0.17-8
42db57
42db57
%description
42db57
Redland is a library that provides a high-level interface for RDF
42db57
(Resource Description Framework) implemented in an object-based API.
42db57
It is modular and supports different RDF/XML parsers, storage
42db57
mechanisms and other elements. Redland is designed for applications
42db57
developers to provide RDF support in their applications as well as
42db57
for RDF developers to experiment with the technology.
42db57
42db57
%package         devel
42db57
Summary:         Libraries and header files for programs that use Redland
42db57
Requires:        %{name}%{?_isa} = %{version}-%{release}
42db57
%description     devel
42db57
Header files for development with Redland.
42db57
42db57
%if ! 0%{?rhel}
42db57
%package         mysql
42db57
Summary:         MySQL storage support for Redland
42db57
Requires:        %{name}%{?_isa} = %{version}-%{release}
42db57
%description     mysql
42db57
This package provides Redland's storage support for graphs in memory and
42db57
persistently with MySQL files or URIs.
42db57
42db57
%package         pgsql
42db57
Summary:         PostgreSQL storage support for Redland
42db57
Requires:        %{name}%{?_isa} = %{version}-%{release}
42db57
%description     pgsql
42db57
This package provides Redland's storage support for graphs in memory and
42db57
persistently with PostgreSQL files or URIs.
42db57
%endif
42db57
42db57
%prep
42db57
%setup -q
42db57
%if 0%{?rhel}
42db57
%patch1 -p1 -b .stub-deprecated
42db57
%endif
42db57
42db57
NOCONFIGURE=1 ./autogen.sh
42db57
42db57
# hack to nuke rpaths
42db57
%if "%{_libdir}" != "/usr/lib"
42db57
sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure
42db57
%endif
42db57
42db57
42db57
%build
42db57
42db57
# rhbz#1952816 we need at last --with-bdb so rdfproc can work, e.g. rebuild of hunspell-ur
42db57
42db57
%if 0%{?rhel}
42db57
%define distrooptions --disable-digests --without-sqlite --without-mysql --without-postgresql
42db57
%else
42db57
# fedora
42db57
%define distrooptions --with-sqlite --with-mysql --with-postgresql
42db57
%endif
42db57
42db57
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
42db57
export CXXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
42db57
%configure \
42db57
  --enable-release \
42db57
  --disable-static \
42db57
  --with-bdb \
42db57
  --without-threestone \
42db57
  --without-virtuoso \
42db57
  %{distrooptions} \
42db57
42db57
%make_build
42db57
42db57
42db57
%install
42db57
%make_install
42db57
42db57
#unpackaged files
42db57
find $RPM_BUILD_ROOT -name \*.la -exec rm -v {} \;
42db57
42db57
42db57
%check
42db57
make check
42db57
42db57
42db57
%ldconfig_scriptlets
42db57
42db57
%files
42db57
%doc AUTHORS NEWS README
42db57
%doc NOTICE TODO
42db57
%doc FAQS.html LICENSE.html NEWS.html README.html TODO.html
42db57
%license COPYING COPYING.LIB LICENSE.txt LICENSE-2.0.txt
42db57
%{_libdir}/librdf.so.0*
42db57
%{_bindir}/rdfproc
42db57
%{_bindir}/redland-db-upgrade
42db57
%dir %{_datadir}/redland
42db57
%{_mandir}/man1/redland-db-upgrade.1*
42db57
%{_mandir}/man1/rdfproc.1*
42db57
%{_mandir}/man3/redland.3*
42db57
%if ! 0%{?rhel}
42db57
%dir %{_libdir}/redland
42db57
%{_libdir}/redland/librdf_storage_sqlite.so
42db57
%{_datadir}/redland/mysql-v1.ttl
42db57
%{_datadir}/redland/mysql-v2.ttl
42db57
%endif
42db57
42db57
%if ! 0%{?rhel}
42db57
%files mysql
42db57
%{_libdir}/redland/librdf_storage_mysql.so
42db57
42db57
%files pgsql
42db57
%{_libdir}/redland/librdf_storage_postgresql.so
42db57
%endif
42db57
42db57
%files devel
42db57
%doc ChangeLog RELEASE.html
42db57
%{_bindir}/redland-config
42db57
%{_datadir}/redland/Redland.i
42db57
%{_datadir}/gtk-doc/
42db57
%{_includedir}/redland.h
42db57
%{_includedir}/librdf.h
42db57
%{_includedir}/rdf_*.h
42db57
%{_libdir}/librdf.so
42db57
%{_libdir}/pkgconfig/redland.pc
42db57
%{_mandir}/man1/redland-config.1*
42db57
42db57
42db57
%changelog
42db57
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.17-29
42db57
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
42db57
  Related: rhbz#1991688
42db57
42db57
* Fri Apr 23 2021 Caolán McNamara <caolanm@redhat.com> - 1.0.7-28
42db57
- rhbz#1952816 rdfproc: Failed to open hashes storage
42db57
42db57
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.17-27
42db57
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
42db57
42db57
* Mon Mar 22 2021 Caolán McNamara <caolanm@redhat.com> - 1.0.7-26
42db57
- rhbz#1936659 disable rhel redland digests and stub deprecated librdf_uri_get_digest
42db57
42db57
* Tue Mar 09 2021 Caolán McNamara <caolanm@redhat.com> - 1.0.7-25
42db57
- rhbz#1936659 rhel redland uses deprecated SHA-1 algorithm by default
42db57
42db57
* Tue Mar 09 2021 Caolán McNamara <caolanm@redhat.com> - 1.0.7-24
42db57
- reduce rhel dependencies to what's needed
42db57
42db57
* Mon Feb 08 2021 Pavel Raiskup <praiskup@redhat.com> - 1.0.17-23
42db57
- rebuild for libpq ABI fix rhbz#1908268
42db57
42db57
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-22
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
42db57
42db57
* Tue Sep 29 2020 Than Ngo <than@redhat.com> - 1.0.17-21
42db57
- Fix FTBFS in ELN
42db57
42db57
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-20
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
42db57
42db57
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-19
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
42db57
42db57
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-18
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
42db57
42db57
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-17
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
42db57
42db57
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-16
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
42db57
42db57
* Wed Mar 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 1.0.17-15
42db57
- BR: gcc-c++, use %%make_build %%make_install %%ldconfig_scriptlets
42db57
42db57
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-14
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
42db57
42db57
* Wed Dec 13 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.0.17-13
42db57
- drop depcrecated virtuoso references
42db57
- Use mariadb-connector-c-devel (#1493694)
42db57
42db57
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-12
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
42db57
42db57
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-11
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
42db57
42db57
* Thu Jul 13 2017 Rex Dieter <rdieter@fedoraproject.org> - 1.0.17-10
42db57
- .spec cosmetics, rebuild (mariadb)
42db57
42db57
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-9
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
42db57
42db57
* Wed Dec 21 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.0.17-8
42db57
- Add BuildRequires: perl
42db57
42db57
* Fri Feb 26 2016 Rex Dieter <rdieter@fedoraproject.org> 1.0.17-7
42db57
- Obsoletes: redland-virutoso (f24+)
42db57
42db57
* Sat Feb 20 2016 Rex Dieter <rdieter@fedoraproject.org> 1.0.17-6
42db57
- disable virtuoso support f24+
42db57
42db57
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.17-5
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
42db57
42db57
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.17-4
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
42db57
42db57
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.17-3
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
42db57
42db57
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.17-2
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
42db57
42db57
* Tue Mar 04 2014 Rex Dieter <rdieter@fedoraproject.org> 1.0.17-1
42db57
- 1.0.17
42db57
42db57
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.16-4
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
42db57
42db57
* Tue May 28 2013 Lukáš Tinkl <ltinkl@redhat.com> 1.0.16-3
42db57
- use -fno-strict-aliasing
42db57
42db57
* Tue Mar 26 2013 Rex Dieter <rdieter@fedoraproject.org> 1.0.16-2
42db57
- rdfproc: Failed to open hashes storage (#914634)
42db57
42db57
* Tue Feb 19 2013 Rex Dieter <rdieter@fedoraproject.org> 1.0.16-1
42db57
- 1.0.16
42db57
42db57
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.15-3
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
42db57
42db57
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.15-2
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
42db57
42db57
* Mon Mar 05 2012 Rex Dieter <rdieter@fedoraproject.org> 1.0.15-1
42db57
- 1.0.15
42db57
42db57
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.14-2
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
42db57
42db57
* Sat Jul 23 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.14-1
42db57
- 1.0.14
42db57
42db57
* Wed Mar 23 2011 Rex Dieter <rdieter@fedoraproject.org> 1.0.12-3
42db57
- rebuild (mysql)
42db57
42db57
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.12-2
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
42db57
42db57
* Thu Oct 14 2010 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 1.0.12-1
42db57
- Update to 1.0.12
42db57
42db57
* Sun Oct 03 2010 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 1.0.11-1
42db57
- Update to 1.0.11
42db57
42db57
* Wed Sep 29 2010 jkeating - 1.0.10-8
42db57
- Rebuilt for gcc bug 634757
42db57
42db57
* Sat Sep 11 2010 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 1.0.10-7
42db57
- Don't require gtk-doc RHBZ#604414
42db57
42db57
* Wed Jun 09 2010 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 1.0.10-6
42db57
- Separate the Virtuoso plugin into its own subpackage
42db57
42db57
* Sat May 08 2010 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 1.0.10-5
42db57
- Separate the MySQL and PostgreSQL plugins into their own subpackages
42db57
42db57
* Sat Feb 13 2010 Orcan Ogetbil <oget[DOT]fedora[AT]gmail[DOT]com> - 1.0.10-4
42db57
- Fix DSO linking error RHBZ#564859
42db57
- Link to our own libltdl
42db57
42db57
* Mon Jan 04 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.10-3
42db57
- no_undefined patch
42db57
42db57
* Sun Jan 03 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.10-2
42db57
- pkgconfig_requires_private patch
42db57
42db57
* Sun Jan 03 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.0.10-1
42db57
- redland-1.0.10
42db57
42db57
* Tue Nov 24 2009 Caolán McNamara <caolanm@redhat.com> - 1.0.7-10.2
42db57
- Resolves: rhbz#540519 Rebuild against db4-4.8
42db57
42db57
* Fri Aug 28 2009 Rex Dieter <rdieter@fedoraproject.org> 1.0.7-10.1
42db57
- temporarily drop mysql support (restore once mysql is unbroken in rawhide)
42db57
42db57
* Thu Aug 27 2009 Rex Dieter <rdieter@fedoraproject.org> 1.0.7-10
42db57
- fix build with newer sqlite (#519781)
42db57
42db57
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 1.0.7-9
42db57
- rebuilt with new openssl
42db57
42db57
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.7-8
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
42db57
42db57
* Fri May 01 2009 Rex Dieter <rdieter@fedoraproject.org> - 1.0.7-7
42db57
- slighgly less ugly rpath hack
42db57
- cleanup %%files
42db57
42db57
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.7-6
42db57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
42db57
42db57
* Thu Jan 22 2009 Rex Dieter <rdieter@fedoraproject.org> 1.0.7-5 
42db57
- respin (mysql)
42db57
42db57
* Fri Jan 16 2009 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.0.7-4
42db57
- rebuild for new OpenSSL
42db57
42db57
* Sun Nov 23 2008 Thomas Vander Stichele <thomas at apestaart dot org>
42db57
- 1.0.7-3
42db57
- updated summary
42db57
- not rebuilt yet 
42db57
42db57
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.0.7-2
42db57
- rebuild for db4-4.7
42db57
42db57
* Sat Feb 09 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.0.7-1
42db57
- update to 1.0.7
42db57
- update minimum raptor and rasqal versions
42db57
42db57
* Tue Dec 04 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.0.6-3
42db57
- respin for openssl
42db57
42db57
* Tue Oct 16 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.0.6-2
42db57
- fix unpackaged files and unowned directory
42db57
42db57
* Tue Oct 16 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.0.6-1
42db57
- update to 1.0.6 (for Soprano 2, also some bugfixes)
42db57
- update minimum raptor and rasqal versions
42db57
- drop sed hacks for dependency bloat (#248106), fixed upstream
42db57
42db57
* Wed Aug 22 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.0.5-6
42db57
- respin (BuildID)
42db57
42db57
* Fri Aug 3 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.0.5-5
42db57
- specify LGPL version in License tag
42db57
42db57
* Sat Jul 14 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.0.5-4
42db57
- get rid of redland-config dependency bloat too (#248106)
42db57
42db57
* Sat Jul 14 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.0.5-3
42db57
- fix bug number in changelog
42db57
42db57
* Sat Jul 14 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.0.5-2
42db57
- add missing Requires: pkgconfig to the -devel package
42db57
- get rid of pkgconfig dependency bloat (#248106)
42db57
42db57
* Thu Jun 28 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.0.5-1
42db57
- update to 1.0.5 (1.0.6 needs newer raptor and rasqal than available)
42db57
- update minimum raptor version
42db57
42db57
* Fri Dec 15 2006 Thomas Vander Stichele <thomas at apestaart dot org>
42db57
- 1.0.4-3
42db57
- use DESTDIR
42db57
42db57
* Sat Jun 17 2006 Thomas Vander Stichele <thomas at apestaart dot org>
42db57
- 1.0.4-2
42db57
- fixed x86_64 rpath issue with an ugly hack
42db57
- removed OPTIMIZE from make invocation
42db57
- added smp flags
42db57
- added make check
42db57
- updated license
42db57
42db57
* Sun May 14 2006 Thomas Vander Stichele <thomas at apestaart dot org>
42db57
- 1.0.4-1
42db57
- update to new release, needs later raptor
42db57
- remove patch
42db57
42db57
* Sat Apr 08 2006 Thomas Vander Stichele <thomas at apestaart dot org>
42db57
- 1.0.3-1
42db57
- update to latest release
42db57
- include patch for fclose() double-free
42db57
42db57
* Sat Apr 08 2006 Thomas Vander Stichele <thomas at apestaart dot org>
42db57
- 1.0.2-1
42db57
- package for Fedora Extras
42db57
42db57
* Wed Feb 15 2006  Dave Beckett <dave@dajobe.org>
42db57
- Require db4-devel
42db57
42db57
* Thu Aug 11 2005  Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- Update Source:
42db57
- Do not require python-devel at build time
42db57
- Add sqlite-devel build requirement.
42db57
- Use configure and makeinstall
42db57
42db57
* Thu Jul 21 2005  Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- Updated for gtk-doc locations
42db57
42db57
* Mon Nov 1 2004  Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- License now LGPL/Apache 2
42db57
- Added LICENSE-2.0.txt and NOTICE
42db57
42db57
* Mon Jul 19 2004  Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- move perl, python packages into redland-bindings
42db57
42db57
* Mon Jul 12 2004  Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- put /usr/share/redland/Redland.i in redland-devel
42db57
42db57
* Wed May  5 2004  Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- require raptor 1.3.0
42db57
- require rasqal 0.2.0
42db57
42db57
* Fri Jan 30 2004  Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- require raptor 1.2.0
42db57
- update for removal of python distutils
42db57
- require python 2.2.0+
42db57
- require perl 5.8.0+
42db57
- build and require mysql
42db57
- do not build and require threestore
42db57
42db57
* Sun Jan 4 2004  Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- added redland-python package
42db57
- export some more docs
42db57
42db57
* Mon Dec 15 2003 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- require raptor 1.1.0
42db57
- require libxml 2.4.0 or newer
42db57
- added pkgconfig redland.pc
42db57
- split redland/devel package shared libs correctly
42db57
42db57
* Mon Sep 8 2003 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- require raptor 1.0.0
42db57
 
42db57
* Thu Sep 4 2003 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- added rdfproc
42db57
 
42db57
* Thu Aug 28 2003 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- patches added post 0.9.13 to fix broken perl UNIVERSAL::isa
42db57
 
42db57
* Thu Aug 21 2003 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- Add redland-db-upgrade.1
42db57
- Removed duplicate perl CORE shared objects
42db57
42db57
* Sun Aug 17 2003 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- Updates for new perl module names.
42db57
42db57
* Tue Apr 22 2003 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- Updated for Redhat 9, RPM 4
42db57
42db57
* Wed Feb 12 2003 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- Updated for redland 0.9.12
42db57
42db57
* Fri Jan 4 2002 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- Updated for new Perl module names
42db57
42db57
* Fri Sep 14 2001 Dave Beckett <dave.beckett@bristol.ac.uk>
42db57
- Added shared libraries