| OLD | NEW |
| 1 Summary: Library providing the GNOME XSLT engine | 1 Summary: Library providing the GNOME XSLT engine |
| 2 Name: libxslt | 2 Name: libxslt |
| 3 Version: @VERSION@ | 3 Version: 1.1.28 |
| 4 Release: 1 | 4 Release: 1 |
| 5 License: MIT | 5 License: MIT |
| 6 Group: Development/Libraries | 6 Group: Development/Libraries |
| 7 Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz | 7 Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz |
| 8 BuildRoot: %{_tmppath}/%{name}-%{version}-root | 8 BuildRoot: %{_tmppath}/%{name}-%{version}-root |
| 9 URL: http://xmlsoft.org/XSLT/ | 9 URL: http://xmlsoft.org/XSLT/ |
| 10 Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@ | 10 Requires: libxml2 >= 2.6.27 |
| 11 BuildRequires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@ | 11 BuildRequires: libxml2-devel >= 2.6.27 |
| 12 BuildRequires: python python-devel | 12 BuildRequires: python python-devel |
| 13 BuildRequires: libxml2-python | 13 BuildRequires: libxml2-python |
| 14 BuildRequires: libgcrypt-devel | 14 BuildRequires: libgcrypt-devel |
| 15 Prefix: %{_prefix} | 15 Prefix: %{_prefix} |
| 16 Docdir: %{_docdir} | 16 Docdir: %{_docdir} |
| 17 | 17 |
| 18 %description | 18 %description |
| 19 This C library allows to transform XML files into other XML files | 19 This C library allows to transform XML files into other XML files |
| 20 (or HTML, text, ...) using the standard XSLT stylesheet transformation | 20 (or HTML, text, ...) using the standard XSLT stylesheet transformation |
| 21 mechanism. To use it you need to have a version of libxml2 >= @LIBXML_REQUIRED_V
ERSION@ | 21 mechanism. To use it you need to have a version of libxml2 >= 2.6.27 |
| 22 installed. The xsltproc command is a command line interface to the XSLT engine | 22 installed. The xsltproc command is a command line interface to the XSLT engine |
| 23 | 23 |
| 24 %package devel | 24 %package devel |
| 25 Summary: Libraries, includes, etc. to embed the GNOME XSLT engine | 25 Summary: Libraries, includes, etc. to embed the GNOME XSLT engine |
| 26 Group: Development/Libraries | 26 Group: Development/Libraries |
| 27 Requires: libxslt = %{version}-%{release} | 27 Requires: libxslt = %{version}-%{release} |
| 28 Requires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@ | 28 Requires: libxml2-devel >= 2.6.27 |
| 29 Requires: libgcrypt-devel | 29 Requires: libgcrypt-devel |
| 30 Requires: pkgconfig | 30 Requires: pkgconfig |
| 31 | 31 |
| 32 %description devel | 32 %description devel |
| 33 This C library allows to transform XML files into other XML files | 33 This C library allows to transform XML files into other XML files |
| 34 (or HTML, text, ...) using the standard XSLT stylesheet transformation | 34 (or HTML, text, ...) using the standard XSLT stylesheet transformation |
| 35 mechanism. To use it you need to have a version of libxml2 >= @LIBXML_REQUIRED_V
ERSION@ | 35 mechanism. To use it you need to have a version of libxml2 >= 2.6.27 |
| 36 installed. | 36 installed. |
| 37 | 37 |
| 38 %package python | 38 %package python |
| 39 Summary: Python bindings for the libxslt library | 39 Summary: Python bindings for the libxslt library |
| 40 Group: Development/Libraries | 40 Group: Development/Libraries |
| 41 Requires: libxslt = %{version}-%{release} | 41 Requires: libxslt = %{version}-%{release} |
| 42 Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@ | 42 Requires: libxml2 >= 2.6.27 |
| 43 Requires: libxml2-python >= @LIBXML_REQUIRED_VERSION@ | 43 Requires: libxml2-python >= 2.6.27 |
| 44 Requires: python | 44 Requires: python |
| 45 | 45 |
| 46 %description python | 46 %description python |
| 47 The libxslt-python package contains a module that permits applications | 47 The libxslt-python package contains a module that permits applications |
| 48 written in the Python programming language to use the interface | 48 written in the Python programming language to use the interface |
| 49 supplied by the libxslt library to apply XSLT transformations. | 49 supplied by the libxslt library to apply XSLT transformations. |
| 50 | 50 |
| 51 This library allows to parse sytlesheets, uses the libxml2-python | 51 This library allows to parse sytlesheets, uses the libxml2-python |
| 52 to load and save XML and HTML files. Direct access to XPath and | 52 to load and save XML and HTML files. Direct access to XPath and |
| 53 the XSLT transformation context are possible to extend the XSLT language | 53 the XSLT transformation context are possible to extend the XSLT language |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 %doc AUTHORS ChangeLog.gz NEWS README Copyright FEATURES | 119 %doc AUTHORS ChangeLog.gz NEWS README Copyright FEATURES |
| 120 %{_libdir}/python*/site-packages/libxslt.py* | 120 %{_libdir}/python*/site-packages/libxslt.py* |
| 121 %{_libdir}/python*/site-packages/libxsltmod* | 121 %{_libdir}/python*/site-packages/libxsltmod* |
| 122 %doc python/TODO | 122 %doc python/TODO |
| 123 %doc python/libxsltclass.txt | 123 %doc python/libxsltclass.txt |
| 124 %doc python/tests/*.py | 124 %doc python/tests/*.py |
| 125 %doc python/tests/*.xml | 125 %doc python/tests/*.xml |
| 126 %doc python/tests/*.xsl | 126 %doc python/tests/*.xsl |
| 127 | 127 |
| 128 %changelog | 128 %changelog |
| 129 * @RELDATE@ Daniel Veillard <veillard@redhat.com> | 129 * Sat Apr 2 2016 Daniel Veillard <veillard@redhat.com> |
| 130 - upstream release @VERSION@ see http://xmlsoft.org/XSLT/news.html | 130 - upstream release 1.1.28 see http://xmlsoft.org/XSLT/news.html |
| OLD | NEW |