auto-import changelog data from libxslt-1.0.33-2.src.rpm
Fri Sep 12 2003 Daniel Veillard <veillard@redhat.com> - upstream release 1.0.33 see http://xmlsoft.org/XSLT/news.html - this is a bugfix only release over libxslt-1.0.32, fixes gnome.org bugs #120684, #119946, #120684, #120971, #119699, #114563 and #119862 2 of them could lead to a crash of the library
This commit is contained in:
parent
affdd56aa5
commit
066e747870
@ -1 +1 @@
|
|||||||
libxslt-1.0.27.tar.gz
|
libxslt-1.0.33.tar.gz
|
||||||
|
49
libxslt.spec
49
libxslt.spec
@ -1,43 +1,42 @@
|
|||||||
Summary: Library providing the Gnome XSLT engine
|
Summary: Library providing the Gnome XSLT engine
|
||||||
Name: libxslt
|
Name: libxslt
|
||||||
Version: 1.0.27
|
Version: 1.0.33
|
||||||
Release: 3
|
Release: 2
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz
|
Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
URL: http://xmlsoft.org/XSLT/
|
URL: http://xmlsoft.org/XSLT/
|
||||||
Requires: libxml2 >= 2.5.2
|
Requires: libxml2 >= 2.5.6
|
||||||
BuildRequires: libxml2-devel >= 2.5.2
|
BuildRequires: libxml2-devel >= 2.5.6
|
||||||
BuildRequires: python python-devel
|
BuildRequires: python python-devel
|
||||||
BuildRequires: libxml2-python
|
BuildRequires: libxml2-python
|
||||||
Prefix: %{_prefix}
|
Prefix: %{_prefix}
|
||||||
Docdir: %{_docdir}
|
Docdir: %{_docdir}
|
||||||
Patch0: unix.patch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This C library allows to transform XML files into other XML files
|
This C library allows to transform XML files into other XML files
|
||||||
(or HTML, text, ...) using the standard XSLT stylesheet transformation
|
(or HTML, text, ...) using the standard XSLT stylesheet transformation
|
||||||
mechanism. To use it you need to have a version of libxml2 >= 2.5.2
|
mechanism. To use it you need to have a version of libxml2 >= 2.5.6
|
||||||
installed. The xsltproc command is a command line interface to the XSLT engine
|
installed. The xsltproc command is a command line interface to the XSLT engine
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Libraries, includes, etc. to embed the Gnome XSLT engine
|
Summary: Libraries, includes, etc. to embed the Gnome XSLT engine
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: libxslt = %{version}
|
Requires: libxslt = %{version}
|
||||||
Requires: libxml2-devel >= 2.5.2
|
Requires: libxml2-devel >= 2.5.6
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This C library allows to transform XML files into other XML files
|
This C library allows to transform XML files into other XML files
|
||||||
(or HTML, text, ...) using the standard XSLT stylesheet transformation
|
(or HTML, text, ...) using the standard XSLT stylesheet transformation
|
||||||
mechanism. To use it you need to have a version of libxml2 >= 2.5.2
|
mechanism. To use it you need to have a version of libxml2 >= 2.5.6
|
||||||
installed.
|
installed.
|
||||||
|
|
||||||
%package python
|
%package python
|
||||||
Summary: Python bindings for the libxslt library
|
Summary: Python bindings for the libxslt library
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: libxslt = %{version}
|
Requires: libxslt = %{version}
|
||||||
Requires: libxml2 >= 2.5.2
|
Requires: libxml2 >= 2.5.6
|
||||||
Requires: python
|
Requires: python
|
||||||
|
|
||||||
%description python
|
%description python
|
||||||
@ -52,7 +51,6 @@ with XPath functions written in Python.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
@ -63,25 +61,6 @@ rm -fr %{buildroot}
|
|||||||
|
|
||||||
%makeinstall
|
%makeinstall
|
||||||
|
|
||||||
#
|
|
||||||
# this is a bit ugly but tries to generate the bindings for all versions
|
|
||||||
# of python installed
|
|
||||||
#
|
|
||||||
for i in %{prefix}/include/python*
|
|
||||||
do
|
|
||||||
py_version=`echo $i | sed "s+%{prefix}/include/python++"`
|
|
||||||
if test -x %{prefix}/bin/python$py_version
|
|
||||||
then
|
|
||||||
echo generating bindings for Python $py_version
|
|
||||||
(cd python ; make clean ; \
|
|
||||||
make PYTHON="%{prefix}/bin/python$py_version" \
|
|
||||||
PYTHON_VERSION="$py_version"; \
|
|
||||||
%makeinstall PYTHON="%{prefix}/bin/python$py_version" \
|
|
||||||
PYTHON_VERSION="$py_version" \
|
|
||||||
prefix=$RPM_BUILD_ROOT%{prefix})
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -fr %{buildroot}
|
rm -fr %{buildroot}
|
||||||
|
|
||||||
@ -106,8 +85,8 @@ rm -fr %{buildroot}
|
|||||||
%doc AUTHORS ChangeLog NEWS README Copyright TODO FEATURES
|
%doc AUTHORS ChangeLog NEWS README Copyright TODO FEATURES
|
||||||
%doc doc/libxslt-api.xml
|
%doc doc/libxslt-api.xml
|
||||||
%doc doc/libexslt-api.xml
|
%doc doc/libexslt-api.xml
|
||||||
%doc %{_mandir}/man4/libxslt.4*
|
%doc %{_mandir}/man3/libxslt.3*
|
||||||
%doc %{_mandir}/man4/libexslt.4*
|
%doc %{_mandir}/man3/libexslt.3*
|
||||||
%{_libdir}/lib*.so
|
%{_libdir}/lib*.so
|
||||||
%{_libdir}/*a
|
%{_libdir}/*a
|
||||||
%{_libdir}/*.sh
|
%{_libdir}/*.sh
|
||||||
@ -129,9 +108,11 @@ rm -fr %{buildroot}
|
|||||||
%doc python/tests/*.xsl
|
%doc python/tests/*.xsl
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Feb 24 2003 Daniel Veillard <veillard@redhat.com> 1.0.27-3
|
* Fri Sep 12 2003 Daniel Veillard <veillard@redhat.com>
|
||||||
- upstream release 1.0.27 see http://xmlsoft.org/XSLT/news.html
|
- upstream release 1.0.33 see http://xmlsoft.org/XSLT/news.html
|
||||||
- Fixes bug RH #84801 and GNOME #106789 #106788 #106554
|
- this is a bugfix only release over libxslt-1.0.32, fixes gnome.org
|
||||||
|
bugs #120684, #119946, #120684, #120971, #119699, #114563 and #119862
|
||||||
|
2 of them could lead to a crash of the library
|
||||||
|
|
||||||
* Wed Oct 23 2002 Daniel Veillard <veillard@redhat.com>
|
* Wed Oct 23 2002 Daniel Veillard <veillard@redhat.com>
|
||||||
- revamped the spec file, cleaned up some rpm building problems
|
- revamped the spec file, cleaned up some rpm building problems
|
||||||
|
Loading…
Reference in New Issue
Block a user