2b37fdf
%global with_python3 1
2b37fdf
cvsdist e5ba0fb
Summary: Library providing XML and HTML support
cvsdist e5ba0fb
Name: libxml2
05bd5b9
Version: 2.9.4
05bd5b9
Release: 1%{?dist}%{?extra_release}
cvsdist e5ba0fb
License: MIT
cvsdist e5ba0fb
Group: Development/Libraries
773a4ef
Source: ftp://xmlsoft.org/libxml2/libxml2-%{version}.tar.gz
cvsdist e5ba0fb
BuildRoot: %{_tmppath}/%{name}-%{version}-root
2b37fdf
BuildRequires: python-devel
2b37fdf
%if 0%{?with_python3}
2b37fdf
BuildRequires: python3-devel
2b37fdf
%endif # with_python3
2b37fdf
BuildRequires: zlib-devel
2b37fdf
BuildRequires: pkgconfig
2b37fdf
BuildRequires: xz-devel
cvsdist e5ba0fb
URL: http://xmlsoft.org/
a4f85c9
Patch0: libxml2-multilib.patch
c2fe6f6
Patch1: libxml2-2.9.0-do-not-check-crc.patch
05bd5b9
# In python3.6 _PyVerify_fd is no more
05bd5b9
#  http://bugs.python.org/issue23524
05bd5b9
Patch2: libxml2-2.9.4-remove-pyverify_fd.patch
cvsdist e5ba0fb
cvsdist e5ba0fb
%description
c5d2212
This library allows to manipulate XML files. It includes support
cvsdist e5ba0fb
to read, modify and write XML and HTML files. There is DTDs support
cvsdist e5ba0fb
this includes parsing and validation even with complex DtDs, either
cvsdist e5ba0fb
at parse time or later once the document has been modified. The output
cvsdist e5ba0fb
can be a simple SAX stream or and in-memory DOM like representations.
cvsdist e5ba0fb
In this case one can use the built-in XPath and XPointer implementation
d677555
to select sub nodes or ranges. A flexible Input/Output mechanism is
cvsdist e5ba0fb
available, with existing HTTP and FTP modules and combined to an
cvsdist e5ba0fb
URI library.
cvsdist e5ba0fb
cvsdist e5ba0fb
%package devel
cvsdist e5ba0fb
Summary: Libraries, includes, etc. to develop XML and HTML applications
cvsdist e5ba0fb
Group: Development/Libraries
67bc2a0
Requires: libxml2 = %{version}-%{release}
cvsdist e5ba0fb
Requires: zlib-devel
ae9b3fe
Requires: xz-devel
2598bd4
Requires: pkgconfig
cvsdist e5ba0fb
cvsdist e5ba0fb
%description devel
cvsdist e5ba0fb
Libraries, include files, etc you can use to develop XML applications.
c5d2212
This library allows to manipulate XML files. It includes support
cvsdist e5ba0fb
to read, modify and write XML and HTML files. There is DTDs support
cvsdist e5ba0fb
this includes parsing and validation even with complex DtDs, either
cvsdist e5ba0fb
at parse time or later once the document has been modified. The output
cvsdist e5ba0fb
can be a simple SAX stream or and in-memory DOM like representations.
cvsdist e5ba0fb
In this case one can use the built-in XPath and XPointer implementation
d677555
to select sub nodes or ranges. A flexible Input/Output mechanism is
cvsdist e5ba0fb
available, with existing HTTP and FTP modules and combined to an
cvsdist e5ba0fb
URI library.
cvsdist e5ba0fb
a4f85c9
%package static
a4f85c9
Summary: Static library for libxml2
a4f85c9
Group: Development/Libraries
a4f85c9
Requires: libxml2 = %{version}-%{release}
a4f85c9
a4f85c9
%description static
a4f85c9
Static library for libxml2 provided for specific uses or shaving a few
a4f85c9
microseconds when parsing, do not link to them for generic purpose packages.
a4f85c9
17b11ef
%package -n python-%{name}
cvsdist e5ba0fb
Summary: Python bindings for the libxml2 library
cvsdist e5ba0fb
Group: Development/Libraries
67bc2a0
Requires: libxml2 = %{version}-%{release}
1bb09a4
Obsoletes: %{name}-python < %{version}-%{release}
17b11ef
Provides: %{name}-python = %{version}-%{release}
cvsdist e5ba0fb
17b11ef
%description -n python-%{name}
2b37fdf
The libxml2-python package contains a Python 2 module that permits applications
2b37fdf
written in the Python programming language, version 2, to use the interface
cvsdist e5ba0fb
supplied by the libxml2 library to manipulate XML files.
cvsdist e5ba0fb
c5d2212
This library allows to manipulate XML files. It includes support
cvsdist e5ba0fb
to read, modify and write XML and HTML files. There is DTDs support
cvsdist e5ba0fb
this includes parsing and validation even with complex DTDs, either
cvsdist e5ba0fb
at parse time or later once the document has been modified.
cvsdist e5ba0fb
2b37fdf
%if 0%{?with_python3}
17b11ef
%package -n python3-%{name}
2b37fdf
Summary: Python 3 bindings for the libxml2 library
2b37fdf
Group: Development/Libraries
2b37fdf
Requires: libxml2 = %{version}-%{release}
1bb09a4
Obsoletes: %{name}-python3 < %{version}-%{release}
17b11ef
Provides: %{name}-python3 = %{version}-%{release}
2b37fdf
17b11ef
%description -n python3-%{name}
2b37fdf
The libxml2-python3 package contains a Python 3 module that permits
2b37fdf
applications written in the Python programming language, version 3, to use the
2b37fdf
interface supplied by the libxml2 library to manipulate XML files.
2b37fdf
2b37fdf
This library allows to manipulate XML files. It includes support
2b37fdf
to read, modify and write XML and HTML files. There is DTDs support
2b37fdf
this includes parsing and validation even with complex DTDs, either
2b37fdf
at parse time or later once the document has been modified.
2b37fdf
%endif # with_python3
2b37fdf
cvsdist e5ba0fb
%prep
cvsdist e5ba0fb
%setup -q
2598bd4
%patch0 -p1
c2fe6f6
# workaround for #877567 - Very weird bug gzip decompression bug in "recent" libxml2 versions
c2fe6f6
%patch1 -p1 -b .do-not-check-crc
05bd5b9
%patch2 -p1
cvsdist e5ba0fb
75100bc
mkdir py3doc
75100bc
cp doc/*.py py3doc
75100bc
sed -i 's|#!/usr/bin/python |#!%{__python3} |' py3doc/*.py
75100bc
cvsdist e5ba0fb
%build
6dea98d
%configure
a4f85c9
make %{_smp_mflags}
cvsdist e5ba0fb
94a79cf
find doc -type f -exec chmod 0644 \{\} \;
94a79cf
cvsdist e5ba0fb
%install
cvsdist e5ba0fb
rm -fr %{buildroot}
cvsdist e5ba0fb
d677555
make install DESTDIR=%{buildroot}
cvsdist e5ba0fb
2b37fdf
%if 0%{?with_python3}
2b37fdf
make clean
2b37fdf
%configure --with-python=%{__python3}
2b37fdf
make install DESTDIR=%{buildroot}
2b37fdf
%endif # with_python3
2b37fdf
97063c2
# multiarch crazyness on timestamp differences or Makefile/binaries for examples
a4f85c9
touch -m --reference=$RPM_BUILD_ROOT/%{_includedir}/libxml2/libxml/parser.h $RPM_BUILD_ROOT/%{_bindir}/xml2-config
d677555
d677555
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
d677555
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.a
d677555
rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la
d677555
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libxml2-%{version}/*
d677555
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/libxml2-python-%{version}/*
97063c2
(cd doc/examples ; make clean ; rm -rf .deps Makefile)
0676699
gzip -9 -c doc/libxml2-api.xml > doc/libxml2-api.xml.gz
0676699
0676699
%check
0676699
make runtests
97063c2
cvsdist e5ba0fb
%clean
cvsdist e5ba0fb
rm -fr %{buildroot}
cvsdist e5ba0fb
a4f85c9
%post -p /sbin/ldconfig
cvsdist e5ba0fb
a4f85c9
%postun -p /sbin/ldconfig
cvsdist e5ba0fb
cvsdist e5ba0fb
%files
cvsdist e5ba0fb
%defattr(-, root, root)
cvsdist e5ba0fb
82d32f4
%{!?_licensedir:%global license %%doc}
82d32f4
%license Copyright
82d32f4
%doc AUTHORS NEWS README TODO
cvsdist e5ba0fb
%doc %{_mandir}/man1/xmllint.1*
cvsdist e5ba0fb
%doc %{_mandir}/man1/xmlcatalog.1*
cvsdist e5ba0fb
%doc %{_mandir}/man3/libxml.3*
cvsdist e5ba0fb
cvsdist e5ba0fb
%{_libdir}/lib*.so.*
a4f85c9
%{_bindir}/xmllint
a4f85c9
%{_bindir}/xmlcatalog
cvsdist e5ba0fb
cvsdist e5ba0fb
%files devel
cvsdist e5ba0fb
%defattr(-, root, root)
cvsdist e5ba0fb
cvsdist e5ba0fb
%doc %{_mandir}/man1/xml2-config.1*
d677555
%doc AUTHORS NEWS README Copyright
cvsdist e5ba0fb
%doc doc/*.html doc/html doc/*.gif doc/*.png
5240958
%doc doc/tutorial doc/libxml2-api.xml.gz
cvsdist dcd8572
%doc doc/examples
e7d8cb7
%doc %dir %{_datadir}/gtk-doc/html/libxml2
09eac99
%doc %{_datadir}/gtk-doc/html/libxml2/*.devhelp
09eac99
%doc %{_datadir}/gtk-doc/html/libxml2/*.html
09eac99
%doc %{_datadir}/gtk-doc/html/libxml2/*.png
09eac99
%doc %{_datadir}/gtk-doc/html/libxml2/*.css
cvsdist e5ba0fb
cvsdist e5ba0fb
%{_libdir}/lib*.so
cvsdist e5ba0fb
%{_libdir}/*.sh
a4f85c9
%{_includedir}/*
a4f85c9
%{_bindir}/xml2-config
a4f85c9
%{_datadir}/aclocal/libxml.m4
cvsdist e5ba0fb
%{_libdir}/pkgconfig/libxml-2.0.pc
6f96dab
%{_libdir}/cmake/libxml2/libxml2-config.cmake
a4f85c9
a4f85c9
%files static
a4f85c9
%defattr(-, root, root)
a4f85c9
a4f85c9
%{_libdir}/*a
a4f85c9
17b11ef
%files -n python-%{name}
cvsdist e5ba0fb
%defattr(-, root, root)
cvsdist e5ba0fb
2b37fdf
%{_libdir}/python2*/site-packages/libxml2.py*
2b37fdf
%{_libdir}/python2*/site-packages/drv_libxml2.py*
2b37fdf
%{_libdir}/python2*/site-packages/libxml2mod*
cvsdist e5ba0fb
%doc python/TODO
cvsdist e5ba0fb
%doc python/libxml2class.txt
cvsdist e5ba0fb
%doc doc/*.py
cvsdist e5ba0fb
%doc doc/python.html
cvsdist e5ba0fb
2b37fdf
%if 0%{?with_python3}
17b11ef
%files -n python3-%{name}
2b37fdf
%defattr(-, root, root)
2b37fdf
2b37fdf
%{_libdir}/python3*/site-packages/libxml2.py*
2b37fdf
%{_libdir}/python3*/site-packages/drv_libxml2.py*
Robert Kuska 31fbc2b
%{_libdir}/python3*/site-packages/__pycache__/*py*
2b37fdf
%{_libdir}/python3*/site-packages/libxml2mod*
2b37fdf
%doc python/TODO
2b37fdf
%doc python/libxml2class.txt
75100bc
%doc py3doc/*.py
2b37fdf
%doc doc/python.html
2b37fdf
%endif # with_python3
2b37fdf
2b37fdf
cvsdist e5ba0fb
%changelog
05bd5b9
* Wed Dec 21 2016 Kevin Fenzi <kevin@scrye.com> - 2.9.4-1
05bd5b9
- Update to 2.9.4.
05bd5b9
- Apply very hacky patch that removes the no longer in python-3.6 PyVerify_fd symbol.
05bd5b9
cc4ca23
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.9.3-5
cc4ca23
- Rebuild for Python 3.6
cc4ca23
6054f5f
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.3-4
6054f5f
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
6054f5f
d824a68
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.3-3
d824a68
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d824a68
1bb09a4
* Wed Dec 02 2015 Kalev Lember <klember@redhat.com> - 2.9.3-2
1bb09a4
- Fix obsoletes versions now that F22 has libxml2 2.9.3 (#1287262)
1bb09a4
f3a675d
* Fri Nov 20 2015 Daniel Veillard <veillard@redhat.com> - 2.9.2-1
f3a675d
- upstream release of 2.9.3
f3a675d
- Fixes for CVE-2015-8035, CVE-2015-7942, CVE-2015-7941, CVE-2015-1819
f3a675d
  CVE-2015-7497, CVE-2015-7498, CVE-2015-5312, CVE-2015-7499, CVE-2015-7500
f3a675d
  and CVE-2015-8242
f3a675d
- many other bug fixes
f3a675d
Robert Kuska 31fbc2b
* Fri Nov 06 2015 Robert Kuska <rkuska@redhat.com> - 2.9.2-9
Robert Kuska 31fbc2b
- Rebuilt for Python3.5 rebuild
Robert Kuska 31fbc2b
- Python3.5 has new naming convention for byte compiled files
Robert Kuska 31fbc2b
94a79cf
* Tue Nov  3 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 2.9.2-8
94a79cf
- Remove executable permissions from documentation.  Complies with packaging
94a79cf
  guidelines and solves issue of libxml2-python3 package depending on python2
94a79cf
75100bc
* Thu Aug 27 2015 Miro Hrončok <mhroncok@redhat.com> - 2.9.2-7
75100bc
- Remove dependency on python2 from python3 subpackage, rhbz#1250940
75100bc
17b11ef
* Sat Aug 22 2015 Kalev Lember <klember@redhat.com> - 2.9.2-6
17b11ef
- Rename the Python 3 subpackage to python3-libxml2 as per guidelines
17b11ef
0b44910
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.2-5
0b44910
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0b44910
bbde745
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.9.2-4
bbde745
- Rebuilt for Fedora 23 Change
bbde745
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
bbde745
2b37fdf
* Wed Jan 21 2015 Tomas Radej <tradej@redhat.com> - 2.9.2-3
2b37fdf
- Added Python 3 subpackage
2b37fdf
6bae232
* Thu Oct 16 2014 Lubomir Rintel <lkundrak@v3.sk> - 2.9.2-2
6bae232
- Avoid corrupting the xml catalogs
6bae232
6f96dab
* Thu Oct 16 2014 Daniel Veillard <veillard@redhat.com> - 2.9.2-1
69a1810
- upstream release of 2.9.2
6f96dab
- Fix for CVE-214-3660 billion laugh DOS
6f96dab
- many other bug fixes
6f96dab
5bb63d8
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.1-5
5bb63d8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
5bb63d8
82d32f4
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 2.9.1-4
82d32f4
- fix license handling
82d32f4
e833d35
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.1-3
e833d35
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e833d35
4b9f034
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.1-2
4b9f034
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
4b9f034
3f82bd1
* Fri Apr 19 2013 Daniel Veillard <veillard@redhat.com> - 2.9.1-1
3f82bd1
- upstream release of 2.9.1
3f82bd1
- a couple more API entry point
3f82bd1
- compatibility with python3
3f82bd1
- a lot of bug fixes
3f82bd1
0676699
* Mon Feb 11 2013 Daniel Veillard <veillard@redhat.com> - 2.9.0-4
0676699
- fix --nocheck build which I broke in october rhbz#909767
0676699
c2fe6f6
* Mon Nov 19 2012 Jaroslav Reznik <jreznik@redhat.com> - 2.9.0-3
c2fe6f6
- workaround for crc/len check failure, rhbz#877567
c2fe6f6
d677555
* Thu Oct 11 2012 Daniel Veillard <veillard@redhat.com> - 2.9.0-2
d677555
- remaining cleanups from merge bug rhbz#226079
d677555
- do not put the docs in the main package, only in -devel rhbz#864731
d677555
773a4ef
* Tue Sep 11 2012 Daniel Veillard <veillard@redhat.com> - 2.9.0-1
773a4ef
- upstream release of 2.9.0
773a4ef
- A few new API entry points
773a4ef
- More resilient push parser mode
773a4ef
- A lot of portability improvement
773a4ef
- Faster XPath evaluation
773a4ef
- a lot of bug fixes and smaller improvement
773a4ef
773a4ef
* Fri Aug 10 2012 Daniel Veillard <veillard@redhat.com> - 2.9.0-0rc1
c5d2212
- upstream release candidate 1 of 2.9.0
c5d2212
- introduce a small API change, but ABI compatible, see
c5d2212
  https://mail.gnome.org/archives/xml/2012-August/msg00005.html
c5d2212
  patches for php, gcc/libjava and evolution-data-connector are upstream
c5d2212
  Grab me in cases of problems veillard@redhat.com
c5d2212
- many bug fixes including security aspects and small improvements
c5d2212
39322a4
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-2
39322a4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
39322a4
ae9b3fe
* Wed May 23 2012 Daniel Veillard <veillard@redhat.com> - 2.8.0-1
ae9b3fe
- upstream release of 2.8.0
ae9b3fe
- add lzma compression support
ae9b3fe
- many bug fixes and small improvements
ae9b3fe
e047144
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.8-7
e047144
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e047144
c09ec57
* Fri Mar  4 2011 Daniel Veillard <veillard@redhat.com> - 2.7.8-6
c09ec57
- fix a double free in XPath CVE-2010-4494 bug 665965
c09ec57
920599c
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.8-5
920599c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
920599c
4612c09
* Fri Nov  5 2010 Daniel Veillard <veillard@redhat.com> - 2.7.8-4
9ec3838
- reactivate shared libs versionning script
9ec3838
97efe82
* Thu Nov  4 2010 Daniel Veillard <veillard@redhat.com> - 2.7.8-1
97efe82
- Upstream release of 2.7.8
97efe82
- various bug fixes, including potential crashes
97efe82
- new non-destructive formatting option
97efe82
- date parsing updated to RFC 5646
97efe82
d7231e5
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.7.7-2
d7231e5
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
d7231e5
cecec56
* Mon Mar 15 2010 Daniel Veillard <veillard@redhat.com> - 2.7.7-1
cecec56
- Upstream release of 2.7.7
cecec56
- fix serious trouble with zlib >= 1.2.4
cecec56
- xmllint new option --xpath
cecec56
- various HTML parser improvements
cecec56
- includes a number of nug fixes
cecec56
a6053c6
* Tue Oct  6 2009 Daniel Veillard <veillard@redhat.com> - 2.7.6-1
a6053c6
- Upstream release of 2.7.6
a6053c6
- restore thread support off by default in 2.7.5
a6053c6
7f8d3e3
* Thu Sep 24 2009 Daniel Veillard <veillard@redhat.com> - 2.7.5-1
7f8d3e3
- Upstream release of 2.7.5
7f8d3e3
- fix a couple of Relax-NG validation problems
7f8d3e3
- couple more fixes
7f8d3e3
affa4e3
* Tue Sep 15 2009 Daniel Veillard <veillard@redhat.com> - 2.7.4-2
affa4e3
- fix a problem with little data at startup affecting inkscape #523002
affa4e3
2f87059
* Thu Sep 10 2009 Daniel Veillard <veillard@redhat.com> - 2.7.4-1
2f87059
- upstream release 2.7.4
2f87059
- symbol versioning of libxml2 shared libs
2f87059
- very large number of bug fixes
2f87059
f192cce
* Mon Aug 10 2009 Daniel Veillard <veillard@redhat.com> - 2.7.3-4
9e00af6
- two patches for parsing problems CVE-2009-2414 and CVE-2009-2416
9e00af6
cb67b36
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.3-3
cb67b36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
cb67b36
870be42
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.3-2
870be42
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
870be42
4dac637
* Sun Jan 18 2009 Daniel Veillard <veillard@redhat.com> - 2.7.3-1
4dac637
- new release 2.7.3
4dac637
- limit default max size of text nodes
4dac637
- special parser mode for PHP
4dac637
- bug fixes and more compiler checks
4dac637
9e79f73
* Wed Dec  3 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.7.2-7
9e79f73
- Pull back into Python 2.6
9e79f73
Caolan McNamara c1c9688
* Wed Dec  3 2008 Caolán McNamara <caolanm@redhat.com> - 2.7.2-6
Caolan McNamara c1c9688
- AutoProvides requires BuildRequires pkgconfig
Caolan McNamara c1c9688
Caolan McNamara 68ded0d
* Wed Dec  3 2008 Caolán McNamara <caolanm@redhat.com> - 2.7.2-5
Caolan McNamara 68ded0d
- rebuild to get provides(libxml-2.0) into HEAD rawhide
Caolan McNamara 68ded0d
737ec93
* Mon Dec  1 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.7.2-4
737ec93
- Rebuild for pkgconfig logic
737ec93
8254590
* Fri Nov 28 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.7.2-3
8254590
- Rebuild for Python 2.6
8254590
433e072
* Wed Nov 12 2008 Daniel Veillard <veillard@redhat.com> - 2.7.2-2.fc11
433e072
- two patches for size overflows problems CVE-2008-4225 and CVE-2008-4226
433e072
809d4f9
* Fri Oct  3 2008 Daniel Veillard <veillard@redhat.com> 2.7.2-1.fc10
809d4f9
- new release 2.7.2
809d4f9
- Fixes the known problems in 2.7.1
809d4f9
- increase the set of options when saving documents
809d4f9
cddc823
* Thu Oct  2 2008 Daniel Veillard <veillard@redhat.com> 2.7.1-2.fc10
cddc823
- fix a nasty bug in 2.7.x, http://bugzilla.gnome.org/show_bug.cgi?id=554660
cddc823
f43d36c
* Mon Sep  1 2008 Daniel Veillard <veillard@redhat.com> 2.7.1-1.fc10
f43d36c
- fix python serialization which was broken in 2.7.0
f43d36c
- Resolve: rhbz#460774
f43d36c
d90dcee
* Sat Aug 30 2008 Daniel Veillard <veillard@redhat.com> 2.7.0-1.fc10
d90dcee
- upstream release of 2.7.0
d90dcee
- switch to XML 1.0 5th edition
d90dcee
- switch to RFC 3986 for URI parsing
d90dcee
- better entity handling
d90dcee
- option to remove hardcoded limitations in the parser
d90dcee
- more testing
d90dcee
- a new API to allocate entity nodes
d90dcee
- and lot of fixes and clanups
d90dcee
1a9ffb4
* Mon Aug 25 2008 Daniel Veillard <veillard@redhat.com> 2.6.32-4.fc10
1a9ffb4
- fix for entities recursion problem
1a9ffb4
- Resolve: rhbz#459714
1a9ffb4
1a9ffb4
* Fri May 30 2008 Daniel Veillard <veillard@redhat.com> 2.6.32-3.fc10
a4f85c9
- cleanup based on Fedora packaging guidelines, should fix #226079
a4f85c9
- separate a -static package
a4f85c9
1a9ffb4
* Thu May 15 2008 Daniel Veillard <veillard@redhat.com> 2.6.32-2.fc10
97063c2
- try to fix multiarch problems like #440206
97063c2
1a9ffb4
* Tue Apr  8 2008 Daniel Veillard <veillard@redhat.com> 2.6.32-1.fc9
e787035
- upstream release 2.6.32 see http://xmlsoft.org/news.html
e787035
- many bug fixed upstream
e787035
3278802
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.6.31-2
3278802
- Autorebuild for GCC 4.3
3278802
f499c30
* Fri Jan 11 2008 Daniel Veillard <veillard@redhat.com> 2.6.31-1.fc9
f499c30
- upstream release 2.6.31 see http://xmlsoft.org/news.html
f499c30
- many bug fixed upstream
f499c30
7a3e1e4
* Thu Aug 23 2007 Daniel Veillard <veillard@redhat.com> 2.6.30-1
7a3e1e4
- upstream release 2.6.30 see http://xmlsoft.org/news.html
7a3e1e4
- many bug fixed upstream
7a3e1e4
a4bde25
* Tue Jun 12 2007 Daniel Veillard <veillard@redhat.com> 2.6.29-1
a4bde25
- upstream release 2.6.29 see http://xmlsoft.org/news.html
a4bde25
- many bug fixed upstream
a4bde25
8a02274
* Wed May 16 2007 Matthias Clasen <mclasen@redhat.com> 2.6.28-2
8a02274
- Bump revision to fix N-V-R problem
8a02274
8a25dfa
* Tue Apr 17 2007 Daniel Veillard <veillard@redhat.com> 2.6.28-1
8a25dfa
- upstream release 2.6.28 see http://xmlsoft.org/news.html
8a25dfa
- many bug fixed upstream
8a25dfa
539da7a
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 2.6.27-2
539da7a
- rebuild against python 2.5
539da7a
3b314b6
* Wed Oct 25 2006 Daniel Veillard <veillard@redhat.com> 2.6.27-1
3b314b6
- upstream release 2.6.27 see http://xmlsoft.org/news.html
3b314b6
- very large amount of bug fixes reported upstream
3b314b6
269becb
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6.26-2.1.1
269becb
- rebuild
269becb
22c5799
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6.26-2.1
22c5799
- rebuild
22c5799
e7d8cb7
* Wed Jun  7 2006 Daniel Veillard <veillard@redhat.com> 2.6.26-2
e7d8cb7
- fix bug #192873
d00f16b
* Tue Jun  6 2006 Daniel Veillard <veillard@redhat.com> 2.6.26-1
d00f16b
- upstream release 2.6.26 see http://xmlsoft.org/news.html
d00f16b
2598bd4
* Tue Jun  6 2006 Daniel Veillard <veillard@redhat.com>
d00f16b
- upstream release 2.6.25 broken, do not ship !
cvsdist e5ba0fb