2015-03-06 15:56:36 +00:00
|
|
|
%undefine _hardened_build
|
|
|
|
|
2004-09-09 07:53:57 +00:00
|
|
|
Summary: Library providing the Gnome XSLT engine
|
2004-09-09 07:52:58 +00:00
|
|
|
Name: libxslt
|
2017-03-08 19:40:42 +00:00
|
|
|
Version: 1.1.29
|
2017-08-19 13:38:54 +00:00
|
|
|
Release: 5%{?dist}%{?extra_release}
|
2004-09-09 07:53:57 +00:00
|
|
|
License: MIT
|
2004-09-09 07:52:58 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz
|
|
|
|
URL: http://xmlsoft.org/XSLT/
|
2012-09-12 07:03:58 +00:00
|
|
|
BuildRequires: libxml2-devel >= 2.6.27
|
2010-10-21 05:47:37 +00:00
|
|
|
BuildRequires: python2-devel
|
2004-09-09 07:54:40 +00:00
|
|
|
BuildRequires: libxml2-python
|
2005-03-13 19:50:40 +00:00
|
|
|
BuildRequires: libgcrypt-devel
|
2012-09-12 07:03:58 +00:00
|
|
|
BuildRequires: automake autoconf
|
2010-10-21 05:47:37 +00:00
|
|
|
|
2012-09-12 07:03:58 +00:00
|
|
|
# Fedora specific patches
|
2006-06-06 15:37:15 +00:00
|
|
|
Patch0: multilib.patch
|
2011-03-20 02:56:10 +00:00
|
|
|
Patch1: libxslt-1.1.26-utf8-docs.patch
|
2004-09-09 07:52:58 +00:00
|
|
|
|
|
|
|
%description
|
2004-09-09 07:53:57 +00:00
|
|
|
This C library allows to transform XML files into other XML files
|
|
|
|
(or HTML, text, ...) using the standard XSLT stylesheet transformation
|
2006-10-26 13:57:58 +00:00
|
|
|
mechanism. To use it you need to have a version of libxml2 >= 2.6.27
|
2004-09-09 07:53:57 +00:00
|
|
|
installed. The xsltproc command is a command line interface to the XSLT engine
|
2004-09-09 07:52:58 +00:00
|
|
|
|
|
|
|
%package devel
|
2010-10-21 05:47:37 +00:00
|
|
|
Summary: Development files for %{name}
|
2004-09-09 07:52:58 +00:00
|
|
|
Group: Development/Libraries
|
2007-07-26 13:10:30 +00:00
|
|
|
Requires: libxslt = %{version}-%{release}
|
2010-12-17 17:31:38 +00:00
|
|
|
Requires: libgcrypt-devel
|
2004-09-09 07:52:58 +00:00
|
|
|
|
2012-09-12 07:03:58 +00:00
|
|
|
|
2004-09-09 07:52:58 +00:00
|
|
|
%description devel
|
2010-10-21 05:47:37 +00:00
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
2004-09-09 07:52:58 +00:00
|
|
|
|
2017-08-19 13:38:54 +00:00
|
|
|
%package -n python2-libxslt
|
|
|
|
%{?python_provide:%python_provide python2-libxslt}
|
|
|
|
# Remove before F30
|
|
|
|
Provides: %{name}-python%{?_isa} = %{version}-%{release}
|
|
|
|
Obsoletes: %{name}-python < %{version}-%{release}
|
2004-09-09 07:53:57 +00:00
|
|
|
Summary: Python bindings for the libxslt library
|
|
|
|
Group: Development/Libraries
|
2007-07-26 13:10:30 +00:00
|
|
|
Requires: libxslt = %{version}-%{release}
|
2010-10-21 05:47:37 +00:00
|
|
|
Requires: libxml2-python
|
2004-09-09 07:53:57 +00:00
|
|
|
|
2017-08-19 13:38:54 +00:00
|
|
|
%description -n python2-libxslt
|
2004-09-09 07:53:57 +00:00
|
|
|
The libxslt-python package contains a module that permits applications
|
|
|
|
written in the Python programming language to use the interface
|
|
|
|
supplied by the libxslt library to apply XSLT transformations.
|
|
|
|
|
|
|
|
This library allows to parse sytlesheets, uses the libxml2-python
|
|
|
|
to load and save XML and HTML files. Direct access to XPath and
|
|
|
|
the XSLT transformation context are possible to extend the XSLT language
|
|
|
|
with XPath functions written in Python.
|
2004-09-09 07:56:38 +00:00
|
|
|
|
2004-09-09 07:52:58 +00:00
|
|
|
%prep
|
2004-09-09 07:53:14 +00:00
|
|
|
%setup -q
|
2006-06-06 15:37:15 +00:00
|
|
|
%patch0 -p1
|
2011-03-20 02:56:10 +00:00
|
|
|
%patch1 -p1 -b .utf8
|
|
|
|
# Now fix up the timestamps of patched docs files
|
|
|
|
# ChangeLog needs to be retouched before gzip as well
|
|
|
|
# since timestamp affects output
|
|
|
|
touch -r ChangeLog.utf8 ChangeLog
|
|
|
|
gzip -9 ChangeLog
|
|
|
|
touch -r ChangeLog.utf8 ChangeLog.gz
|
|
|
|
touch -r NEWS.utf8 NEWS
|
2010-10-21 05:47:37 +00:00
|
|
|
|
|
|
|
chmod 644 python/tests/*
|
|
|
|
|
2004-09-09 07:52:58 +00:00
|
|
|
%build
|
2010-05-24 21:13:43 +00:00
|
|
|
%configure --disable-static
|
2010-10-21 05:47:37 +00:00
|
|
|
make %{?_smp_mflags}
|
2004-09-09 07:52:58 +00:00
|
|
|
|
|
|
|
%install
|
2010-10-21 05:47:37 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
2005-05-23 18:28:21 +00:00
|
|
|
|
2008-05-13 16:15:41 +00:00
|
|
|
# multiarch crazyness on timestamp differences
|
2010-10-21 05:47:37 +00:00
|
|
|
touch -m --reference=$RPM_BUILD_ROOT/%{_includedir}/libxslt/xslt.h $RPM_BUILD_ROOT/%{_bindir}/xslt-config
|
2008-05-13 16:15:41 +00:00
|
|
|
|
2013-08-06 06:59:29 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/%{name}{,-python}-%{version}
|
2013-06-22 02:44:51 +00:00
|
|
|
|
|
|
|
%check
|
2010-10-21 05:47:37 +00:00
|
|
|
make tests
|
2004-09-09 07:52:58 +00:00
|
|
|
|
2010-10-21 05:47:37 +00:00
|
|
|
%post -p /sbin/ldconfig
|
2004-09-09 07:52:58 +00:00
|
|
|
|
2010-10-21 05:47:37 +00:00
|
|
|
%postun -p /sbin/ldconfig
|
2004-09-09 07:52:58 +00:00
|
|
|
|
|
|
|
%files
|
2010-10-21 05:47:37 +00:00
|
|
|
%defattr(-, root, root,-)
|
|
|
|
%doc AUTHORS ChangeLog.gz NEWS README Copyright FEATURES
|
2004-09-09 07:53:14 +00:00
|
|
|
%doc %{_mandir}/man1/xsltproc.1*
|
2004-09-09 07:56:38 +00:00
|
|
|
%{_libdir}/lib*.so.*
|
2006-05-01 21:39:51 +00:00
|
|
|
%{_libdir}/libxslt-plugins
|
2010-10-21 05:47:37 +00:00
|
|
|
%{_bindir}/xsltproc
|
2004-09-09 07:52:58 +00:00
|
|
|
|
|
|
|
%files devel
|
2010-10-21 05:47:37 +00:00
|
|
|
%defattr(-, root, root,-)
|
2004-09-09 07:56:38 +00:00
|
|
|
%doc doc/libxslt-api.xml
|
2004-09-09 07:57:38 +00:00
|
|
|
%doc doc/libxslt-refs.xml
|
|
|
|
%doc doc/EXSLT/libexslt-api.xml
|
|
|
|
%doc doc/EXSLT/libexslt-refs.xml
|
2004-09-09 07:57:26 +00:00
|
|
|
%doc %{_mandir}/man3/libxslt.3*
|
|
|
|
%doc %{_mandir}/man3/libexslt.3*
|
2009-09-17 15:30:57 +00:00
|
|
|
%doc doc/*.html doc/html doc/*.gif doc/*.png
|
|
|
|
%doc doc/images
|
|
|
|
%doc doc/tutorial
|
|
|
|
%doc doc/tutorial2
|
|
|
|
%doc doc/EXSLT
|
2004-09-09 07:56:38 +00:00
|
|
|
%{_libdir}/lib*.so
|
|
|
|
%{_libdir}/*.sh
|
2010-10-21 05:47:37 +00:00
|
|
|
%{_datadir}/aclocal/libxslt.m4
|
|
|
|
%{_includedir}/*
|
|
|
|
%{_bindir}/xslt-config
|
2004-09-09 07:56:38 +00:00
|
|
|
%{_libdir}/pkgconfig/libxslt.pc
|
2004-09-09 07:57:38 +00:00
|
|
|
%{_libdir}/pkgconfig/libexslt.pc
|
2004-09-09 07:56:38 +00:00
|
|
|
|
2017-08-19 13:38:54 +00:00
|
|
|
%files -n python2-libxslt
|
2010-10-21 05:47:37 +00:00
|
|
|
%defattr(-, root, root,-)
|
|
|
|
%{python_sitearch}/libxslt.py*
|
|
|
|
%{python_sitearch}/libxsltmod*
|
2004-09-09 07:53:57 +00:00
|
|
|
%doc python/libxsltclass.txt
|
|
|
|
%doc python/tests/*.py
|
|
|
|
%doc python/tests/*.xml
|
|
|
|
%doc python/tests/*.xsl
|
|
|
|
|
2004-09-09 07:52:58 +00:00
|
|
|
%changelog
|
2017-08-19 13:38:54 +00:00
|
|
|
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.1.29-5
|
|
|
|
- Python 2 binary package renamed to python2-libxslt
|
|
|
|
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
2017-08-03 02:34:13 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 20:02:39 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.29-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-26 14:51:02 +00:00
|
|
|
* Mon Jun 26 2017 Petr Pisar <ppisar@redhat.com> - 1.1.29-2
|
|
|
|
- Rebuild against glibc without xlocale.h (bug #1464640)
|
|
|
|
|
2017-03-08 19:40:42 +00:00
|
|
|
* Wed Mar 08 2017 Petr Šabata <contyk@redhat.com> - 1.1.29-1
|
|
|
|
- 1.1.29 bump
|
|
|
|
|
2017-02-10 19:45:14 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.28-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-07-19 07:49:13 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.28-13
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-02-04 04:12:24 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.28-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 18:02:17 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.28-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-03-06 15:56:36 +00:00
|
|
|
* Fri Mar 6 2015 Daniel Veillard <veillard@redhat.com> 1.1.28-10
|
|
|
|
- desactivate the hardened build as it seems buggy #1199522
|
|
|
|
|
2015-02-21 21:22:45 +00:00
|
|
|
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.1.28-9
|
|
|
|
- Rebuilt for Fedora 23 Change
|
|
|
|
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
|
|
|
2014-08-17 07:00:59 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.28-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 06:14:03 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.28-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-24 12:00:48 +00:00
|
|
|
* Thu Apr 24 2014 Tomas Mraz <tmraz@redhat.com> - 1.1.28-6
|
|
|
|
- Rebuild for new libgcrypt
|
|
|
|
|
2013-08-06 06:59:29 +00:00
|
|
|
* Tue Aug 6 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.1.28-5
|
|
|
|
- Fix build with unversioned %%{_docdir_fmt}, ship Python examples only once.
|
|
|
|
|
2013-08-03 07:37:39 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.28-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-22 02:44:51 +00:00
|
|
|
* Fri Jun 21 2013 Matthias Clasen <mclasen@redhat.com> - 1.1.28-3
|
|
|
|
- Don't ship api docs twice (they were included in both
|
|
|
|
the main and the devel package, by accident (need to save
|
|
|
|
space on the f19 live images)
|
|
|
|
|
2013-02-14 05:34:38 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.28-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-21 13:32:50 +00:00
|
|
|
* Wed Nov 21 2012 Daniel Veillard <veillard@redhat.com> - 1.1.28-1
|
|
|
|
- upstream release of libxslt-1.1.28
|
|
|
|
- a few bug fixes and cleanups
|
|
|
|
|
2012-10-09 03:02:35 +00:00
|
|
|
* Tue Oct 9 2012 Daniel Veillard <veillard@redhat.com> - 1.1.27-2
|
|
|
|
- fix a regression in default namespace handling
|
|
|
|
|
2012-09-12 07:03:58 +00:00
|
|
|
* Wed Sep 12 2012 Daniel Veillard <veillard@redhat.com> - 1.1.27-1
|
|
|
|
- upstream release of libxslt-1.1.27
|
|
|
|
- a lot of bug fixes and improvements
|
|
|
|
|
2012-07-19 21:45:37 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.26-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-13 08:43:04 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.26-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-03-20 02:56:10 +00:00
|
|
|
* Sun Mar 20 2011 Michel Salim <salimma@fedoraproject.org> - 1.1.26-8
|
|
|
|
- ChangeLog: fix character encoding
|
|
|
|
- Restore timestamps for patched documentation files
|
|
|
|
|
2011-02-08 13:00:23 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.26-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-17 17:31:38 +00:00
|
|
|
* Fri Dec 17 2010 Dan Horák <dan[at]danny.cz> - 1.1.26-6
|
|
|
|
- libexslt needs libgcrypt-devel via its pkgconfig file
|
|
|
|
|
2010-10-28 03:39:14 +00:00
|
|
|
* Mon Oct 25 2010 Parag Nemade <paragn AT fedoraproject.org> - 1.1.26-5
|
|
|
|
- Patch from Paul Howarth for converting files to utf8 (#226088)
|
|
|
|
|
2010-10-21 05:47:37 +00:00
|
|
|
* Tue Oct 05 2010 Parag Nemade <paragn AT fedoraproject.org> - 1.1.26-4
|
|
|
|
- Merge-review cleanup (#226088)
|
|
|
|
|
2010-07-22 02:24:19 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.1.26-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-05-24 21:13:43 +00:00
|
|
|
* Mon May 24 2010 Tom "spot" Callaway <tcallawa@redhat.com> 1.1.26-2
|
|
|
|
- disable static libs
|
|
|
|
|
2009-09-24 14:51:45 +00:00
|
|
|
* Thu Sep 24 2009 Daniel Veillard <veillard@redhat.com> 1.1.26-1
|
|
|
|
- couple of bug fixes
|
|
|
|
- export a symbol needed by lxml
|
|
|
|
|
2009-09-21 09:09:50 +00:00
|
|
|
* Mon Sep 21 2009 Daniel Veillard <veillard@redhat.com> 1.1.25-2
|
|
|
|
- fix a locking bug in 1.1.25
|
|
|
|
|
|
|
|
* Thu Sep 17 2009 Daniel Veillard <veillard@redhat.com> 1.1.25-1
|
2009-09-17 15:30:57 +00:00
|
|
|
- release of 1.1.25
|
|
|
|
- Add API versioning for libxslt shared library
|
|
|
|
- xsl:sort lang support using the locale
|
|
|
|
- many bug fixes
|
|
|
|
|
2009-07-25 08:59:30 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.24-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-25 20:12:19 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.24-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-11-29 05:26:42 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 1.1.24-3
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-10-08 14:02:19 +00:00
|
|
|
* Wed Oct 8 2008 Daniel Veillard <veillard@redhat.com> 1.1.24-2.fc10
|
|
|
|
- CVE-2008-2935 fix
|
|
|
|
|
2008-05-13 16:15:41 +00:00
|
|
|
* Tue May 13 2008 Daniel Veillard <veillard@redhat.com> 1.1.24-1.fc10
|
|
|
|
- release of 1.1.24
|
|
|
|
- fixes a few bugs including the key initialization problem
|
|
|
|
- tentative fix for multiarch devel problems
|
|
|
|
|
2008-04-28 15:39:23 +00:00
|
|
|
* Mon Apr 28 2008 Daniel Veillard <veillard@redhat.com> 1.1.23-3.fc10
|
|
|
|
- and the previous patch was incomplte breaking the python bindings
|
|
|
|
see 444317 and 444455
|
|
|
|
|
2008-04-22 15:49:56 +00:00
|
|
|
* Tue Apr 22 2008 Daniel Veillard <veillard@redhat.com> 1.1.23-2.fc10
|
|
|
|
- revert a key initialization patch from 1.1.23 which seems broken
|
|
|
|
see rhbz#442097
|
|
|
|
|
2008-04-08 17:24:55 +00:00
|
|
|
* Tue Apr 8 2008 Daniel Veillard <veillard@redhat.com> 1.1.23-1.fc9
|
|
|
|
- upstream release 1.1.23
|
|
|
|
- bugfixes
|
|
|
|
|
2008-02-20 06:47:28 +00:00
|
|
|
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.1.22-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-08-23 15:50:21 +00:00
|
|
|
* Thu Aug 23 2007 Daniel Veillard <veillard@redhat.com> 1.1.22-1
|
|
|
|
- upstream release 1.1.22 see http://xmlsoft.org/XSLT/news.html
|
|
|
|
|
2007-06-12 17:09:26 +00:00
|
|
|
* Tue Jun 12 2007 Daniel Veillard <veillard@redhat.com> 1.1.21-1
|
|
|
|
- upstream release 1.1.21 see http://xmlsoft.org/XSLT/news.html
|
|
|
|
|
2007-02-15 15:33:38 +00:00
|
|
|
* Thu Feb 15 2007 Adam Jackson <ajax@redhat.com>
|
|
|
|
- Add dist tag to Release to fix 6->7 upgrades.
|
|
|
|
|
2007-01-17 15:20:06 +00:00
|
|
|
* Wed Jan 17 2007 Daniel Veillard <veillard@redhat.com>
|
|
|
|
- upstream release 1.1.20 see http://xmlsoft.org/XSLT/news.html
|
|
|
|
|
2006-12-07 16:25:23 +00:00
|
|
|
* Thu Dec 7 2006 Jeremy Katz <katzj@redhat.com> - 1.1.19-2
|
|
|
|
- rebuild against python 2.5
|
|
|
|
|
2006-11-29 15:18:38 +00:00
|
|
|
* Wed Nov 29 2006 Daniel Veillard <veillard@redhat.com>
|
|
|
|
- upstream release 1.1.19 see http://xmlsoft.org/XSLT/news.html
|
|
|
|
|
2006-10-26 13:57:58 +00:00
|
|
|
* Thu Oct 26 2006 Daniel Veillard <veillard@redhat.com>
|
|
|
|
- upstream release 1.1.18 see http://xmlsoft.org/XSLT/news.html
|
2006-11-29 15:18:38 +00:00
|
|
|
|
2006-07-12 07:12:20 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.1.17-1.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-06-06 15:37:15 +00:00
|
|
|
* Tue Jun 6 2006 Daniel Veillard <veillard@redhat.com>
|
|
|
|
- upstream release 1.1.17 see http://xmlsoft.org/XSLT/news.html
|