Blame SPECS/libxml2.spec

d4fbb9
Name:           libxml2
d4fbb9
Version:        2.9.13
ef7ace
Release:        3%{?dist}
d4fbb9
Summary:        Library providing XML and HTML support
d4fbb9
d4fbb9
License:        MIT
d4fbb9
URL:            http://xmlsoft.org/
d4fbb9
Source0:        https://download.gnome.org/sources/%{name}/2.9/%{name}-%{version}.tar.xz
d4fbb9
Patch0:         libxml2-multilib.patch
d4fbb9
# Patch from openSUSE.
d4fbb9
# See:  https://bugzilla.gnome.org/show_bug.cgi?id=789714
d4fbb9
Patch1:         libxml2-2.9.8-python3-unicode-errors.patch
be8a7c
# https://bugzilla.redhat.com/show_bug.cgi?id=2082300
ae3a24
Patch2:         libxml2-2.9.13-CVE-2022-29824.patch
ef7ace
# https://bugzilla.redhat.com/show_bug.cgi?id=2136564
ef7ace
Patch3:         libxml2-2.9.13-CVE-2022-40303.patch
ef7ace
# https://bugzilla.redhat.com/show_bug.cgi?id=2136569
ef7ace
Patch4:         libxml2-2.9.13-CVE-2022-40304.patch
d4fbb9
d4fbb9
BuildRequires:  cmake-rpm-macros
d4fbb9
BuildRequires:  gcc
d4fbb9
BuildRequires:  make
d4fbb9
BuildRequires:  pkgconfig(zlib)
d4fbb9
BuildRequires:  pkgconfig(liblzma)
d4fbb9
d4fbb9
%description
d4fbb9
This library allows to manipulate XML files. It includes support
d4fbb9
to read, modify and write XML and HTML files. There is DTDs support
d4fbb9
this includes parsing and validation even with complex DtDs, either
d4fbb9
at parse time or later once the document has been modified. The output
d4fbb9
can be a simple SAX stream or and in-memory DOM like representations.
d4fbb9
In this case one can use the built-in XPath and XPointer implementation
d4fbb9
to select sub nodes or ranges. A flexible Input/Output mechanism is
d4fbb9
available, with existing HTTP and FTP modules and combined to an
d4fbb9
URI library.
d4fbb9
d4fbb9
%package devel
d4fbb9
Summary:        Libraries, includes, etc. to develop XML and HTML applications
d4fbb9
Requires:       %{name}%{?_isa} = %{version}-%{release}
d4fbb9
Requires:       zlib-devel%{?_isa}
d4fbb9
Requires:       xz-devel%{?_isa}
d4fbb9
d4fbb9
%description devel
d4fbb9
Libraries, include files, etc you can use to develop XML applications.
d4fbb9
This library allows to manipulate XML files. It includes support
d4fbb9
to read, modify and write XML and HTML files. There is DTDs support
d4fbb9
this includes parsing and validation even with complex DtDs, either
d4fbb9
at parse time or later once the document has been modified. The output
d4fbb9
can be a simple SAX stream or and in-memory DOM like representations.
d4fbb9
In this case one can use the built-in XPath and XPointer implementation
d4fbb9
to select sub nodes or ranges. A flexible Input/Output mechanism is
d4fbb9
available, with existing HTTP and FTP modules and combined to an
d4fbb9
URI library.
d4fbb9
d4fbb9
%package static
d4fbb9
Summary:        Static library for libxml2
d4fbb9
d4fbb9
%description static
d4fbb9
Static library for libxml2 provided for specific uses or shaving a few
d4fbb9
microseconds when parsing, do not link to them for generic purpose packages.
d4fbb9
d4fbb9
%package -n python3-%{name}
d4fbb9
Summary:        Python 3 bindings for the libxml2 library
d4fbb9
BuildRequires:  python3-devel
d4fbb9
Requires:       %{name}%{?_isa} = %{version}-%{release}
d4fbb9
Obsoletes:      %{name}-python3 < %{version}-%{release}
d4fbb9
Provides:       %{name}-python3 = %{version}-%{release}
d4fbb9
d4fbb9
%description -n python3-%{name}
d4fbb9
The libxml2-python3 package contains a Python 3 module that permits
d4fbb9
applications written in the Python programming language, version 3, to use the
d4fbb9
interface supplied by the libxml2 library to manipulate XML files.
d4fbb9
d4fbb9
This library allows to manipulate XML files. It includes support
d4fbb9
to read, modify and write XML and HTML files. There is DTDs support
d4fbb9
this includes parsing and validation even with complex DTDs, either
d4fbb9
at parse time or later once the document has been modified.
d4fbb9
d4fbb9
%prep
d4fbb9
%autosetup -p1
d4fbb9
find doc -type f -executable -print -exec chmod 0644 {} ';'
d4fbb9
d4fbb9
# Remove files generated by python/generator.py to force regenerating them
d4fbb9
rm python/{libxml2-py.c,libxml2-py.h,libxml2-export.c}
d4fbb9
d4fbb9
%build
d4fbb9
%configure --with-python=%{__python3}
d4fbb9
%make_build
d4fbb9
d4fbb9
%install
d4fbb9
%make_install
d4fbb9
d4fbb9
# multiarch crazyness on timestamp differences or Makefile/binaries for examples
d4fbb9
touch -m --reference=%{buildroot}%{_includedir}/libxml2/libxml/parser.h %{buildroot}%{_bindir}/xml2-config
d4fbb9
d4fbb9
find %{buildroot} -type f -name '*.la' -print -delete
d4fbb9
rm -vf %{buildroot}{%{python2_sitearch},%{python3_sitearch}}/*.a
d4fbb9
rm -vrf %{buildroot}%{_datadir}/doc/
d4fbb9
(cd doc/examples ; make clean ; rm -rf .deps Makefile)
d4fbb9
gzip -9 -c doc/libxml2-api.xml > doc/libxml2-api.xml.gz
d4fbb9
d4fbb9
%check
d4fbb9
%make_build runtests
d4fbb9
d4fbb9
%ldconfig_scriptlets
d4fbb9
d4fbb9
%files
d4fbb9
%license Copyright
d4fbb9
%doc NEWS README.md TODO
d4fbb9
%{_libdir}/libxml2.so.2*
d4fbb9
%{_mandir}/man3/libxml.3*
d4fbb9
%{_bindir}/xmllint
d4fbb9
%{_mandir}/man1/xmllint.1*
d4fbb9
%{_bindir}/xmlcatalog
d4fbb9
%{_mandir}/man1/xmlcatalog.1*
d4fbb9
d4fbb9
%files devel
d4fbb9
%doc doc/*.html doc/html doc/*.gif doc/*.png
d4fbb9
%doc doc/tutorial doc/libxml2-api.xml.gz
d4fbb9
%doc doc/examples
d4fbb9
%dir %{_datadir}/gtk-doc
d4fbb9
%dir %{_datadir}/gtk-doc/html
d4fbb9
%{_datadir}/gtk-doc/html/libxml2/
d4fbb9
%{_libdir}/libxml2.so
d4fbb9
%{_libdir}/xml2Conf.sh
d4fbb9
%{_includedir}/libxml2/
d4fbb9
%{_bindir}/xml2-config
d4fbb9
%{_mandir}/man1/xml2-config.1*
d4fbb9
%{_datadir}/aclocal/libxml.m4
d4fbb9
%{_libdir}/pkgconfig/libxml-2.0.pc
d4fbb9
%{_libdir}/cmake/libxml2/
d4fbb9
d4fbb9
%files static
d4fbb9
%license Copyright
d4fbb9
%{_libdir}/libxml2.a
d4fbb9
d4fbb9
%files -n python3-%{name}
d4fbb9
%doc python/TODO python/libxml2class.txt
d4fbb9
%doc doc/*.py doc/python.html
d4fbb9
%{python3_sitearch}/libxml2.py
d4fbb9
%{python3_sitearch}/__pycache__/libxml2.*
d4fbb9
%{python3_sitearch}/drv_libxml2.py
d4fbb9
%{python3_sitearch}/__pycache__/drv_libxml2.*
d4fbb9
%{python3_sitearch}/libxml2mod.so
d4fbb9
d4fbb9
%changelog
ef7ace
* Tue Nov 01 2022 David King <amigadave@amigadave.com> - 2.9.13-3
ef7ace
- Fix CVE-2022-40303 (#2136564)
ef7ace
- Fix CVE-2022-40304 (#2136569)
ef7ace
be8a7c
* Tue May 10 2022 David King <amigadave@amigadave.com> - 2.9.13-2
be8a7c
- Fix CVE-2022-29824 (#2082300)
ae3a24
d4fbb9
* Thu Feb 24 2022 David King <amigadave@amigadave.com> - 2.9.13-1
d4fbb9
- Update to 2.9.13 (#2057665)
d4fbb9
d4fbb9
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.9.12-4
d4fbb9
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
d4fbb9
  Related: rhbz#1991688
d4fbb9
d4fbb9
* Wed Jun 09 2021 David King <dking@redhat.com> - 2.9.12-3
d4fbb9
- Fix xmlNodeDumpOutputInternal regression (#1969892)
d4fbb9
d4fbb9
* Tue May 25 2021 David King <dking@redhat.com> - 2.9.12-2
d4fbb9
- Fix multiarch conflict in devel subpackage (#1964346)
d4fbb9
d4fbb9
* Fri May 14 2021 David King <dking@redhat.com> - 2.9.12-1
d4fbb9
- Rebase to 2.9.12 (#1960623)
d4fbb9
d4fbb9
* Thu May 13 2021 David King <dking@redhat.com> - 2.9.10-12
d4fbb9
- Fix CVE-2021-3516 (#1956969)
d4fbb9
- Fix CVE-2021-3517 (#1957002)
d4fbb9
- Fix CVE-2021-3518 (#1957029)
d4fbb9
- Fix CVE-2021-3537 (#1957285)
d4fbb9
d4fbb9
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.9.10-11
d4fbb9
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
d4fbb9
d4fbb9
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.10-10
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
d4fbb9
d4fbb9
* Thu Nov 12 11:57:41 CET 2020 Victor Stinner <vstinner@python.org> - 2.9.10-9
d4fbb9
- Build the Python extension with the PY_SSIZE_T_CLEAN macro to make it
d4fbb9
  compatible with Python 3.10.
d4fbb9
- Fixes: rhbz#1890878.
d4fbb9
d4fbb9
* Wed Nov 11 2020 Richard W.M. Jones <rjones@redhat.com> - 2.9.10-8
d4fbb9
- Add correct fix for CVE-2020-24977 (RHBZ#1877788), thanks: Jan de Groot.
d4fbb9
d4fbb9
* Fri Sep 11 2020 Richard W.M. Jones <rjones@redhat.com> - 2.9.10-7
d4fbb9
- Add fix for CVE-2020-24977 (RHBZ#1877788).
d4fbb9
d4fbb9
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.10-6
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
d4fbb9
d4fbb9
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 2.9.10-5
d4fbb9
- Rebuilt for Python 3.9
d4fbb9
d4fbb9
* Mon Feb 10 2020 David King <amigadave@amigadave.com> - 2.9.10-4
d4fbb9
- Fix CVE-2019-20388 (#1799736)
d4fbb9
- Fix CVE-2020-7595 (#1799786)
d4fbb9
d4fbb9
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.10-3
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
d4fbb9
d4fbb9
* Fri Jan 03 2020 Jan Pokorny <jpokorny@fedoraproject.org> - 2.9.10-2
d4fbb9
- Fix relaxed approach to nested documents on object disposal (#1780573)
d4fbb9
d4fbb9
* Fri Nov 01 2019 David King <amigadave@amigadave.com> - 2.9.10-1
d4fbb9
- Update to 2.9.10 (#1767151)
d4fbb9
d4fbb9
* Thu Oct 31 2019 Miro Hrončok <mhroncok@redhat.com> - 2.9.9-7
d4fbb9
- Subpackage python2-libxml2 has been removed
d4fbb9
  See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
d4fbb9
d4fbb9
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.9.9-6
d4fbb9
- Rebuilt for Python 3.8.0rc1 (#1748018)
d4fbb9
d4fbb9
* Fri Aug 23 2019 Florian Weimer <fweimer@redhat.com> - 2.9.9-5
d4fbb9
- Rebuild to fix corrupted libxml2-static package on aarch64 (#1745020)
d4fbb9
d4fbb9
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 2.9.9-4
d4fbb9
- Rebuilt for Python 3.8
d4fbb9
d4fbb9
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.9-3
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
d4fbb9
d4fbb9
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.9-2
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
d4fbb9
d4fbb9
* Fri Jan 25 2019 David King <amigadave@amigadave.com> - 2.9.9-1
d4fbb9
- Update to 2.9.9
d4fbb9
d4fbb9
* Sun Jan 06 2019 Björn Esser <besser82@fedoraproject.org> - 2.9.8-5
d4fbb9
- Add patch to fix crash: xmlParserPrintFileContextInternal mangles utf8
d4fbb9
d4fbb9
* Thu Aug 02 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.9.8-4
d4fbb9
- Backport patches from upstream
d4fbb9
d4fbb9
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.8-3
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
d4fbb9
d4fbb9
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.9.8-2
d4fbb9
- Rebuilt for Python 3.7
d4fbb9
d4fbb9
* Tue Apr 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.9.8-1
d4fbb9
- Update to 2.9.8
d4fbb9
d4fbb9
* Sat Feb 24 2018 Florian Weimer <fweimer@redhat.com> - 2.9.7-4
d4fbb9
- Rebuild with new LDFLAGS from redhat-rpm-config
d4fbb9
d4fbb9
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.7-3
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d4fbb9
d4fbb9
* Tue Jan 30 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.9.7-2
d4fbb9
- Switch to %%ldconfig_scriptlets
d4fbb9
d4fbb9
* Wed Jan 24 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.9.7-1
d4fbb9
- Update to 2.9.7
d4fbb9
- Cleanups in packaging
d4fbb9
d4fbb9
* Tue Jan 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.9.5-3
d4fbb9
- Update Python 2 dependency declarations to new packaging standards
d4fbb9
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
d4fbb9
d4fbb9
* Fri Sep 22 2017 Petr Pisar <ppisar@redhat.com> - 2.9.5-2
d4fbb9
- Fix reporting error about undefined XPath variables (bug #1493613)
d4fbb9
d4fbb9
* Mon Sep  4 2017 Daniel Veillard <veillard@redhat.com> - 2.9.5-1
d4fbb9
- update to 2.9.5
d4fbb9
d4fbb9
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.9.4-5
d4fbb9
- Python 2 binary package renamed to python2-libxml2
d4fbb9
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
d4fbb9
d4fbb9
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-4
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
d4fbb9
d4fbb9
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-3
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d4fbb9
d4fbb9
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-2
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
d4fbb9
d4fbb9
* Wed Dec 21 2016 Kevin Fenzi <kevin@scrye.com> - 2.9.4-1
d4fbb9
- Update to 2.9.4.
d4fbb9
- Apply very hacky patch that removes the no longer in python-3.6 PyVerify_fd symbol.
d4fbb9
d4fbb9
* Mon Dec 12 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.9.3-5
d4fbb9
- Rebuild for Python 3.6
d4fbb9
d4fbb9
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.3-4
d4fbb9
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
d4fbb9
d4fbb9
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.3-3
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d4fbb9
d4fbb9
* Wed Dec 02 2015 Kalev Lember <klember@redhat.com> - 2.9.3-2
d4fbb9
- Fix obsoletes versions now that F22 has libxml2 2.9.3 (#1287262)
d4fbb9
d4fbb9
* Fri Nov 20 2015 Daniel Veillard <veillard@redhat.com> - 2.9.2-1
d4fbb9
- upstream release of 2.9.3
d4fbb9
- Fixes for CVE-2015-8035, CVE-2015-7942, CVE-2015-7941, CVE-2015-1819
d4fbb9
  CVE-2015-7497, CVE-2015-7498, CVE-2015-5312, CVE-2015-7499, CVE-2015-7500
d4fbb9
  and CVE-2015-8242
d4fbb9
- many other bug fixes
d4fbb9
d4fbb9
* Fri Nov 06 2015 Robert Kuska <rkuska@redhat.com> - 2.9.2-9
d4fbb9
- Rebuilt for Python3.5 rebuild
d4fbb9
- Python3.5 has new naming convention for byte compiled files
d4fbb9
d4fbb9
* Tue Nov  3 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 2.9.2-8
d4fbb9
- Remove executable permissions from documentation.  Complies with packaging
d4fbb9
  guidelines and solves issue of libxml2-python3 package depending on python2
d4fbb9
d4fbb9
* Thu Aug 27 2015 Miro Hrončok <mhroncok@redhat.com> - 2.9.2-7
d4fbb9
- Remove dependency on python2 from python3 subpackage, rhbz#1250940
d4fbb9
d4fbb9
* Sat Aug 22 2015 Kalev Lember <klember@redhat.com> - 2.9.2-6
d4fbb9
- Rename the Python 3 subpackage to python3-libxml2 as per guidelines
d4fbb9
d4fbb9
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.2-5
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d4fbb9
d4fbb9
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.9.2-4
d4fbb9
- Rebuilt for Fedora 23 Change
d4fbb9
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
d4fbb9
d4fbb9
* Wed Jan 21 2015 Tomas Radej <tradej@redhat.com> - 2.9.2-3
d4fbb9
- Added Python 3 subpackage
d4fbb9
d4fbb9
* Thu Oct 16 2014 Lubomir Rintel <lkundrak@v3.sk> - 2.9.2-2
d4fbb9
- Avoid corrupting the xml catalogs
d4fbb9
d4fbb9
* Thu Oct 16 2014 Daniel Veillard <veillard@redhat.com> - 2.9.2-1
d4fbb9
- upstream release of 2.9.2
d4fbb9
- Fix for CVE-214-3660 billion laugh DOS
d4fbb9
- many other bug fixes
d4fbb9
d4fbb9
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.1-5
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d4fbb9
d4fbb9
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 2.9.1-4
d4fbb9
- fix license handling
d4fbb9
d4fbb9
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.1-3
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d4fbb9
d4fbb9
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.1-2
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d4fbb9
d4fbb9
* Fri Apr 19 2013 Daniel Veillard <veillard@redhat.com> - 2.9.1-1
d4fbb9
- upstream release of 2.9.1
d4fbb9
- a couple more API entry point
d4fbb9
- compatibility with python3
d4fbb9
- a lot of bug fixes
d4fbb9
d4fbb9
* Mon Feb 11 2013 Daniel Veillard <veillard@redhat.com> - 2.9.0-4
d4fbb9
- fix --nocheck build which I broke in october rhbz#909767
d4fbb9
d4fbb9
* Mon Nov 19 2012 Jaroslav Reznik <jreznik@redhat.com> - 2.9.0-3
d4fbb9
- workaround for crc/len check failure, rhbz#877567
d4fbb9
d4fbb9
* Thu Oct 11 2012 Daniel Veillard <veillard@redhat.com> - 2.9.0-2
d4fbb9
- remaining cleanups from merge bug rhbz#226079
d4fbb9
- do not put the docs in the main package, only in -devel rhbz#864731
d4fbb9
d4fbb9
* Tue Sep 11 2012 Daniel Veillard <veillard@redhat.com> - 2.9.0-1
d4fbb9
- upstream release of 2.9.0
d4fbb9
- A few new API entry points
d4fbb9
- More resilient push parser mode
d4fbb9
- A lot of portability improvement
d4fbb9
- Faster XPath evaluation
d4fbb9
- a lot of bug fixes and smaller improvement
d4fbb9
d4fbb9
* Fri Aug 10 2012 Daniel Veillard <veillard@redhat.com> - 2.9.0-0rc1
d4fbb9
- upstream release candidate 1 of 2.9.0
d4fbb9
- introduce a small API change, but ABI compatible, see
d4fbb9
  https://mail.gnome.org/archives/xml/2012-August/msg00005.html
d4fbb9
  patches for php, gcc/libjava and evolution-data-connector are upstream
d4fbb9
  Grab me in cases of problems veillard@redhat.com
d4fbb9
- many bug fixes including security aspects and small improvements
d4fbb9
d4fbb9
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-2
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d4fbb9
d4fbb9
* Wed May 23 2012 Daniel Veillard <veillard@redhat.com> - 2.8.0-1
d4fbb9
- upstream release of 2.8.0
d4fbb9
- add lzma compression support
d4fbb9
- many bug fixes and small improvements
d4fbb9
d4fbb9
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.8-7
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d4fbb9
d4fbb9
* Fri Mar  4 2011 Daniel Veillard <veillard@redhat.com> - 2.7.8-6
d4fbb9
- fix a double free in XPath CVE-2010-4494 bug 665965
d4fbb9
d4fbb9
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.8-5
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d4fbb9
d4fbb9
* Fri Nov  5 2010 Daniel Veillard <veillard@redhat.com> - 2.7.8-4
d4fbb9
- reactivate shared libs versionning script
d4fbb9
d4fbb9
* Thu Nov  4 2010 Daniel Veillard <veillard@redhat.com> - 2.7.8-1
d4fbb9
- Upstream release of 2.7.8
d4fbb9
- various bug fixes, including potential crashes
d4fbb9
- new non-destructive formatting option
d4fbb9
- date parsing updated to RFC 5646
d4fbb9
d4fbb9
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.7.7-2
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
d4fbb9
d4fbb9
* Mon Mar 15 2010 Daniel Veillard <veillard@redhat.com> - 2.7.7-1
d4fbb9
- Upstream release of 2.7.7
d4fbb9
- fix serious trouble with zlib >= 1.2.4
d4fbb9
- xmllint new option --xpath
d4fbb9
- various HTML parser improvements
d4fbb9
- includes a number of nug fixes
d4fbb9
d4fbb9
* Tue Oct  6 2009 Daniel Veillard <veillard@redhat.com> - 2.7.6-1
d4fbb9
- Upstream release of 2.7.6
d4fbb9
- restore thread support off by default in 2.7.5
d4fbb9
d4fbb9
* Thu Sep 24 2009 Daniel Veillard <veillard@redhat.com> - 2.7.5-1
d4fbb9
- Upstream release of 2.7.5
d4fbb9
- fix a couple of Relax-NG validation problems
d4fbb9
- couple more fixes
d4fbb9
d4fbb9
* Tue Sep 15 2009 Daniel Veillard <veillard@redhat.com> - 2.7.4-2
d4fbb9
- fix a problem with little data at startup affecting inkscape #523002
d4fbb9
d4fbb9
* Thu Sep 10 2009 Daniel Veillard <veillard@redhat.com> - 2.7.4-1
d4fbb9
- upstream release 2.7.4
d4fbb9
- symbol versioning of libxml2 shared libs
d4fbb9
- very large number of bug fixes
d4fbb9
d4fbb9
* Mon Aug 10 2009 Daniel Veillard <veillard@redhat.com> - 2.7.3-4
d4fbb9
- two patches for parsing problems CVE-2009-2414 and CVE-2009-2416
d4fbb9
d4fbb9
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.3-3
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
d4fbb9
d4fbb9
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.3-2
d4fbb9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
d4fbb9
d4fbb9
* Sun Jan 18 2009 Daniel Veillard <veillard@redhat.com> - 2.7.3-1
d4fbb9
- new release 2.7.3
d4fbb9
- limit default max size of text nodes
d4fbb9
- special parser mode for PHP
d4fbb9
- bug fixes and more compiler checks
d4fbb9
d4fbb9
* Wed Dec  3 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.7.2-7
d4fbb9
- Pull back into Python 2.6
d4fbb9
d4fbb9
* Wed Dec  3 2008 Caolán McNamara <caolanm@redhat.com> - 2.7.2-6
d4fbb9
- AutoProvides requires BuildRequires pkgconfig
d4fbb9
d4fbb9
* Wed Dec  3 2008 Caolán McNamara <caolanm@redhat.com> - 2.7.2-5
d4fbb9
- rebuild to get provides(libxml-2.0) into HEAD rawhide
d4fbb9
d4fbb9
* Mon Dec  1 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.7.2-4
d4fbb9
- Rebuild for pkgconfig logic
d4fbb9
d4fbb9
* Fri Nov 28 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.7.2-3
d4fbb9
- Rebuild for Python 2.6
d4fbb9
d4fbb9
* Wed Nov 12 2008 Daniel Veillard <veillard@redhat.com> - 2.7.2-2.fc11
d4fbb9
- two patches for size overflows problems CVE-2008-4225 and CVE-2008-4226
d4fbb9
d4fbb9
* Fri Oct  3 2008 Daniel Veillard <veillard@redhat.com> 2.7.2-1.fc10
d4fbb9
- new release 2.7.2
d4fbb9
- Fixes the known problems in 2.7.1
d4fbb9
- increase the set of options when saving documents
d4fbb9
d4fbb9
* Thu Oct  2 2008 Daniel Veillard <veillard@redhat.com> 2.7.1-2.fc10
d4fbb9
- fix a nasty bug in 2.7.x, http://bugzilla.gnome.org/show_bug.cgi?id=554660
d4fbb9
d4fbb9
* Mon Sep  1 2008 Daniel Veillard <veillard@redhat.com> 2.7.1-1.fc10
d4fbb9
- fix python serialization which was broken in 2.7.0
d4fbb9
- Resolve: rhbz#460774
d4fbb9
d4fbb9
* Sat Aug 30 2008 Daniel Veillard <veillard@redhat.com> 2.7.0-1.fc10
d4fbb9
- upstream release of 2.7.0
d4fbb9
- switch to XML 1.0 5th edition
d4fbb9
- switch to RFC 3986 for URI parsing
d4fbb9
- better entity handling
d4fbb9
- option to remove hardcoded limitations in the parser
d4fbb9
- more testing
d4fbb9
- a new API to allocate entity nodes
d4fbb9
- and lot of fixes and clanups
d4fbb9
d4fbb9
* Mon Aug 25 2008 Daniel Veillard <veillard@redhat.com> 2.6.32-4.fc10
d4fbb9
- fix for entities recursion problem
d4fbb9
- Resolve: rhbz#459714
d4fbb9
d4fbb9
* Fri May 30 2008 Daniel Veillard <veillard@redhat.com> 2.6.32-3.fc10
d4fbb9
- cleanup based on Fedora packaging guidelines, should fix #226079
d4fbb9
- separate a -static package
d4fbb9
d4fbb9
* Thu May 15 2008 Daniel Veillard <veillard@redhat.com> 2.6.32-2.fc10
d4fbb9
- try to fix multiarch problems like #440206
d4fbb9
d4fbb9
* Tue Apr  8 2008 Daniel Veillard <veillard@redhat.com> 2.6.32-1.fc9
d4fbb9
- upstream release 2.6.32 see http://xmlsoft.org/news.html
d4fbb9
- many bug fixed upstream
d4fbb9
d4fbb9
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.6.31-2
d4fbb9
- Autorebuild for GCC 4.3
d4fbb9
d4fbb9
* Fri Jan 11 2008 Daniel Veillard <veillard@redhat.com> 2.6.31-1.fc9
d4fbb9
- upstream release 2.6.31 see http://xmlsoft.org/news.html
d4fbb9
- many bug fixed upstream
d4fbb9
d4fbb9
* Thu Aug 23 2007 Daniel Veillard <veillard@redhat.com> 2.6.30-1
d4fbb9
- upstream release 2.6.30 see http://xmlsoft.org/news.html
d4fbb9
- many bug fixed upstream
d4fbb9
d4fbb9
* Tue Jun 12 2007 Daniel Veillard <veillard@redhat.com> 2.6.29-1
d4fbb9
- upstream release 2.6.29 see http://xmlsoft.org/news.html
d4fbb9
- many bug fixed upstream
d4fbb9
d4fbb9
* Wed May 16 2007 Matthias Clasen <mclasen@redhat.com> 2.6.28-2
d4fbb9
- Bump revision to fix N-V-R problem
d4fbb9
d4fbb9
* Tue Apr 17 2007 Daniel Veillard <veillard@redhat.com> 2.6.28-1
d4fbb9
- upstream release 2.6.28 see http://xmlsoft.org/news.html
d4fbb9
- many bug fixed upstream
d4fbb9
d4fbb9
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 2.6.27-2
d4fbb9
- rebuild against python 2.5
d4fbb9
d4fbb9
* Wed Oct 25 2006 Daniel Veillard <veillard@redhat.com> 2.6.27-1
d4fbb9
- upstream release 2.6.27 see http://xmlsoft.org/news.html
d4fbb9
- very large amount of bug fixes reported upstream
d4fbb9
d4fbb9
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6.26-2.1.1
d4fbb9
- rebuild
d4fbb9
d4fbb9
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6.26-2.1
d4fbb9
- rebuild
d4fbb9
d4fbb9
* Wed Jun  7 2006 Daniel Veillard <veillard@redhat.com> 2.6.26-2
d4fbb9
- fix bug #192873
d4fbb9
* Tue Jun  6 2006 Daniel Veillard <veillard@redhat.com> 2.6.26-1
d4fbb9
- upstream release 2.6.26 see http://xmlsoft.org/news.html
d4fbb9
d4fbb9
* Tue Jun  6 2006 Daniel Veillard <veillard@redhat.com>
d4fbb9
- upstream release 2.6.25 broken, do not ship !
d4fbb9