%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0} Summary: Library providing the Gnome XSLT engine Summary(ja): XSLT エンジンライブラリ Name: libxslt Version: 1.1.28 Release: 2%{_dist_release} License: MIT Group: System Environment/Libraries URL: http://xmlsoft.org/XSLT/ Source0: ftp://xmlsoft.org/XSLT/%{name}-%{version}.tar.gz # from upstream Patch0: libxslt-1.1.28-CVE-2015-7995.patch BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: libxml2-devel >= 2.6.27 BuildRequires: zlib-devel >= 1.1.4 BuildRequires: python python-devel perl libxml2-python Requires: libxml2 >= 2.6.27 Vendor: Project Vine Distribution: Vine Linux %description This C library allows to transform XML files into other XML files (or HTML, text, ...) using the standard XSLT stylesheet transformation mechanism. To use it you need to have a version of libxml2 >= 2.6.15 installed. The xsltproc command is a command line interface to the XSLT engine %description -l ja XSLTスタイルシートを使ってXML型式をHTML型式に変換するためのライブラリです。 %package devel Summary: Libraries, includes, etc. to embed the Gnome XSLT engine Summary(ja): XSLT 開発用ファイル Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: libxml2-devel >= 2.6.27 %description devel This C library allows to transform XML files into other XML files (or HTML, text, ...) using the standard XSLT stylesheet transformation mechanism. To use it you need to have a version of libxml2 >= 2.6.15 installed. %description devel -l ja XSLTのための開発用ファイルです。 %package static Summary: Static library for %{name} Summary(ja): %{name} のスタティックライブラリ Group: Development/Libraries Requires: libxslt-devel = %{version}-%{release} %description static The libxslt-static package contains the static library for libxslt. %package python Summary: Python bindings for the libxslt library Group: Development/Libraries Requires: libxslt = %{version}-%{release} Requires: libxml2 >= 2.6.27 Requires: python %description python 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. # compat32 %package -n compat32-%{name} Summary: Library providing the Gnome XSLT engine Summary(ja): XSLT エンジンライブラリ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: compat32-libxml2 >= 2.6.27 %description -n compat32-%{name} This C library allows to transform XML files into other XML files (or HTML, text, ...) using the standard XSLT stylesheet transformation mechanism. To use it you need to have a version of libxml2 >= 2.6.15 installed. The xsltproc command is a command line interface to the XSLT engine %description -n compat32-%{name} -l ja XSLTスタイルシートを使ってXML型式をHTML型式に変換するためのライブラリです。 %package -n compat32-%{name}-devel Summary: Libraries, includes, etc. to embed the Gnome XSLT engine Summary(ja): XSLT 開発用ファイル Group: Development/Libraries Requires: %{name}-devel = %{version}-%{release} Requires: compat32-%{name} = %{version}-%{release} Requires: compat32-libxml2-devel >= 2.6.27 %description -n compat32-%{name}-devel This C library allows to transform XML files into other XML files (or HTML, text, ...) using the standard XSLT stylesheet transformation mechanism. To use it you need to have a version of libxml2 >= 2.6.15 installed. %description -n compat32-%{name}-devel -l ja XSLTのための開発用ファイルです。 %prep %setup -q %patch0 -p1 -b .CVE-2015-7995 %build %configure --without-crypto make %{?_smp_mflags} %install [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.{a,la} # # 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"; \ # make PYTHON="%{prefix}/bin/python$py_version" \ # PYTHON_VERSION="$py_version" \ # prefix=$RPM_BUILD_ROOT%{prefix} \ # mandir=$RPM_BUILD_ROOT%{_mandir} install) # fi #done %clean [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %post -n compat32-%{name} -p /sbin/ldconfig %postun -n compat32-%{name} -p /sbin/ldconfig %files %defattr(-, root, root) %doc AUTHORS ChangeLog NEWS README Copyright TODO FEATURES %doc doc/*.html doc/html doc/tutorial doc/EXSLT %{_bindir}/xsltproc %{_libdir}/lib*.so.* %{_mandir}/man1/xsltproc.1* %files devel %defattr(-, root, root) %doc AUTHORS ChangeLog NEWS README Copyright TODO FEATURES %{_includedir}/* %{_libdir}/lib*.so %{_libdir}/*.sh %{_libdir}/pkgconfig/*.pc %{_bindir}/xslt-config %{_datadir}/aclocal/*.m4 %{_mandir}/man3/* %files static %defattr(-, root, root) %{_libdir}/lib*.a %files python %defattr(-, root, root) %doc AUTHORS ChangeLog NEWS README Copyright FEATURES %doc python/TODO %doc python/libxsltclass.txt %doc python/tests/*.py %doc python/tests/*.xml %doc python/tests/*.xsl %{_libdir}/python*/site-packages/libxslt.py %{_libdir}/python*/site-packages/libxsltmod* # compat32 %if %{build_compat32} %files -n compat32-%{name} %defattr(-, root, root) %{_libdir}/lib*.so.* %files -n compat32-%{name}-devel %defattr(-, root, root) %{_libdir}/lib*.so %{_libdir}/lib*.a %{_libdir}/*.sh %endif %changelog * Thu Oct 29 2015 Yoji TOYODA 1.1.28-2 - add Patch0 (libxslt-1.1.28-CVE-2015-7995.patch) * Sat Mar 29 2014 Yoji TOYODA 1.1.28-1 - update to 1.1.28 * Mon Dec 30 2013 Yoji TOYODA 1.1.27-2 - rebuild with VineSeed environment * Thu Sep 27 2012 Yoji TOYODA 1.1.27-1 - new upstream release * Thu Feb 16 2012 Yoji TOYODA 1.1.26-7 - rebuild with python-2.7.2 * Tue Sep 21 2010 IWAI, Masaharu 1.1.26-6 - build with rpm-4.8.1-1 for pkg-config file * Fri Feb 12 2010 MATSUBAYASHI Kohji - 1.1.26-5 - rebuilt with gcc-4.4.3-3 on ppc * Sat Feb 6 2010 Ryoichi INAGAKI 1.1.26-4 - removed %%{_libdir}/python*/site-packages/*.{a,la} * Tue Feb 02 2010 Shu KONNO 1.1.26-3 - rebuild with python-2.6 * Tue Feb 2 2010 MATSUBAYASHI Kohji - 1.1.26-2 - rebuilt with new toolchain * Wed Jan 20 2010 Ryoichi INAGAKI 1.1.26-1 - new upstream release - split static libraries to subpackage * Mon Jul 13 2009 NAKAMURA Kenta 1.1.23-3 - added compat32 package for x86_64 arch support * Fri Jul 18 2008 Shu KONNO 1.1.23-2 - rebuilt with python-2.5.2 * Tue Apr 29 2008 Ryoichi INAGAKI 1.1.23-1 - new upstream release - remove *.la file from devel package * Wed Oct 3 2007 Ryoichi INAGAKI 1.1.22-0vl1 - new upstream release * Sun Feb 4 2007 Ryoichi INAGAKI 1.1.20-0vl1 - new upstream release - updated BuildRequires: libxml2-devel >= 2.6.27 - updated Requires: libxml2 >= 2.6.27 * Sat Aug 05 2006 NAKAMURA Kenta 1.1.17-0vl1 - added --libdir=%%{_libdir} to ./configure option * Fri Jul 14 2006 Ryoichi INAGAKI 1.1.17-0vl1 - new upstream release - updated libxml2 dependancy * Mon Oct 17 2005 AKIYAMA Kazuhito 1.1.15-0vl1 - new upstream release * Tue Apr 12 2005 Satoshi MACHINO 1.1.14-0vl1 - new upstream release * Sun Apr 03 2005 Shu KONNO 1.1.12-0vl3 - rebuild with python-2.4.1-0vl1 * Thu Nov 11 2004 AKIYAMA Kazuhito 1.1.12-0vl2 - build without libgcrypt (add --without-crypto to configure option) - remove lines about snapshot release - use %%makeinstall - add %%{_libdir}/python*/site-packages/libxsltmod* to python package * Thu Nov 11 2004 AKIYAMA Kazuhito 1.1.12-0vl1 - source upgrade (security fix) - BuildPrereq: libxml2-devel >= 2.6.15 - Requires: libxml2 >= 2.6.15 - add doc/EXSLT to %%doc * Tue Sep 07 2004 Satoshi MACHINO 1.1.9-0vl1 - new upstream version * Tue Apr 27 2004 AKIYAMA Kazuhito 1.1.6-0vl1 - source upgrade - BuildPrereq: libxml2-devel >= 2.6.8 - Requires: libxml2 >= 2.6.8 * Sat Apr 17 2004 Shu KONNO 1.1.4-0vl2 - rebuild with python-2.3.3-0vl1 * Sat Apr 10 2004 Shu KONNO 1.1.4-0vl1.1 - rebuild with python-2.3.3-0vl0.3 (for TestPkg) * Thu Mar 25 2004 Ryoichi INAGAKI 1.1.4-0vl1 - new upstream release * Thu Jan 29 2004 Ryoichi INAGAKI 1.1.2-0vl1 - new upstream release - BuildPrereq: libxml2-devel >= 2.6.3 - Requires: libxml2 >= 2.6.3 * Fri Sep 05 2003 Daisuke SUZUKI 1.0.32-0vl1 - new upstream release * Sun Jul 20 2003 AKIYAMA Kazuhito 1.0.31-0vl1 - source upgrade * Sat May 17 2003 AKIYAMA Kazuhito 1.0.30-0vl1 - source upgrade * Mon Feb 17 2003 Ryoichi INAGAKI 1.0.26-0vl1 - source upgrade - BuildPrereq: libxml2-devel >= 2.5.2 - Requires: libxml2 >= 2.5.2 * Sun Dec 15 2002 AKIYAMA Kazuhito 1.0.23-0vl1 - source upgrade - build with new toolchains * Tue Oct 29 2002 Ryoichi INAGAKI 1.0.22-0vl1 - source update to 1.0.22 - BuildPrereq: libxml2-devel >= 2.4.23 - Requires: libxml2 >= 2.4.23 * Sun May 26 2002 AKIYAMA Kazuhito 1.0.17-1vl1 - merged with 1.0.17-1 -- Fri Feb 8 2002 Daniel.Veillard - added the python module - clean up spec - BuildPrereq: libxml2-devel >= 2.4.17 - Requires: libxml2 >= 2.4.17 * Mon Mar 18 2002 AKIYAMA Kazuhito 1.0.10-0vl2 - changed License to MIT (not LGPL) - add BuildPrereq: zlib-devel >= 1.1.4 perl * Sun Feb 24 2002 AKIYAMA Kazuhito 1.0.10-0vl1 - source update - BuildPrereq: libxml2-devel >= 2.4.13 * Thu Oct 11 2001 AKIYAMA Kazuhito 1.0.9-0vl1 - add gtk-doc to BuildPrereq * Thu Oct 11 2001 AKIYAMA Kazuhito - 1.0.1-1vl2 - Build for VineSeed * Fri Aug 24 2001 Tuscus Pino-potamus Japonus - 1.0.1-1vl1 - cleaning * Fri Jul 27 2001 Tuscus Pino-potamus Japonus - 1.0.1-1vl0 - modify for Vine Linux 2.1x * Mon Jan 22 2001 Daniel.Veillard - created based on libxml2 spec file