forked from pool/perl-XML-LibXSLT
This commit is contained in:
committed by
Git OBS Bridge
parent
0c77d3fa54
commit
17e94c10b4
BIN
XML-LibXSLT-1.59.tar.gz
(Stored with Git LFS)
BIN
XML-LibXSLT-1.59.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
XML-LibXSLT-1.66.tar.bz2
(Stored with Git LFS)
Normal file
BIN
XML-LibXSLT-1.66.tar.bz2
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 5 16:32:54 CET 2008 - anicka@suse.cz
|
||||||
|
|
||||||
|
- update to 1.66
|
||||||
|
* sync the binary internals to those of XML::LibXML 1.66
|
||||||
|
* use pkg-config to determine linker flags for libexslt
|
||||||
|
* added XML::LibXML-like API to retrieve libxslt version
|
||||||
|
* added output_as_bytes() and output_as_chars()
|
||||||
|
* added regression tests for output_as_* to 11utf8.t
|
||||||
|
* output_as_string documentation fixed to match reality
|
||||||
|
* fixed error reporting: die on fatal errors, warn otherwise
|
||||||
|
(in particular, warn rather than die on
|
||||||
|
<xsl:message terminate="no">)
|
||||||
|
* using call_* instead of perl_call_* (perl_ variants are obsolete)
|
||||||
|
* in callbacks, POPs on error before croaking, otherwise it has no
|
||||||
|
effect (and we probably leak)
|
||||||
|
* bugfixes, test fixes
|
||||||
|
- enable tests in %check
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 8 11:17:40 CEST 2006 - ke@suse.de
|
Tue Aug 8 11:17:40 CEST 2006 - ke@suse.de
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-XML-LibXSLT (Version 1.59)
|
# spec file for package perl-XML-LibXSLT (Version 1.66)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@@ -11,16 +11,16 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
Name: perl-XML-LibXSLT
|
Name: perl-XML-LibXSLT
|
||||||
BuildRequires: libxslt-devel
|
BuildRequires: libxslt-devel perl-XML-LibXML
|
||||||
Version: 1.59
|
Version: 1.66
|
||||||
Release: 1
|
Release: 1
|
||||||
Requires: perl = %{perl_version}
|
Requires: perl = %{perl_version}
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
License: Artistic License
|
License: Artistic License
|
||||||
URL: http://search.cpan.org/dist/XML-LibXSLT/
|
Url: http://www.cpan.org/modules/by-module/XML/
|
||||||
Summary: XML::LibXSLT Perl Module
|
Summary: XML::LibXSLT Perl Module
|
||||||
Source: http://search.cpan.org/CPAN/authors/id/P/PA/PAJAS/XML-LibXSLT-%{version}.tar.gz
|
Source: XML-LibXSLT-%{version}.tar.bz2
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Requires: perl-XML-LibXML
|
Requires: perl-XML-LibXML
|
||||||
|
|
||||||
@@ -28,10 +28,10 @@ Requires: perl-XML-LibXML
|
|||||||
This module is a fast XSLT library, based on the GNOME libxslt engine
|
This module is a fast XSLT library, based on the GNOME libxslt engine
|
||||||
that you can find at http://www.xmlsoft.org/XSLT/.
|
that you can find at http://www.xmlsoft.org/XSLT/.
|
||||||
|
|
||||||
Performance is currently about twice that of XML::Sablotron (based on
|
The performance is currently about twice that of XML::Sablotron (based
|
||||||
XSLTMark tests converted to Perl). The libxslt processor is also highly
|
on XSLTMark tests converted to Perl). The libxslt processor is also
|
||||||
standard compliant, with practically all of XSLT 1.0 being supported in
|
highly standard compliant, with practically all of XSLT 1.0 being
|
||||||
version 0.9 of libxslt.
|
supported in version 0.9 of libxslt.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -41,7 +41,9 @@ version 0.9 of libxslt.
|
|||||||
%build
|
%build
|
||||||
perl Makefile.PL
|
perl Makefile.PL
|
||||||
make
|
make
|
||||||
#make test
|
|
||||||
|
%check
|
||||||
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
||||||
@@ -58,13 +60,29 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{perl_vendorarch}/auto/XML
|
%{perl_vendorarch}/auto/XML
|
||||||
/var/adm/perl-modules/%{name}
|
/var/adm/perl-modules/%{name}
|
||||||
|
|
||||||
%changelog -n perl-XML-LibXSLT
|
%changelog
|
||||||
* Tue Aug 08 2006 - ke@suse.de
|
* Tue Feb 05 2008 anicka@suse.cz
|
||||||
|
- update to 1.66
|
||||||
|
* sync the binary internals to those of XML::LibXML 1.66
|
||||||
|
* use pkg-config to determine linker flags for libexslt
|
||||||
|
* added XML::LibXML-like API to retrieve libxslt version
|
||||||
|
* added output_as_bytes() and output_as_chars()
|
||||||
|
* added regression tests for output_as_* to 11utf8.t
|
||||||
|
* output_as_string documentation fixed to match reality
|
||||||
|
* fixed error reporting: die on fatal errors, warn otherwise
|
||||||
|
(in particular, warn rather than die on
|
||||||
|
<xsl:message terminate="no">)
|
||||||
|
* using call_* instead of perl_call_* (perl_ variants are obsolete)
|
||||||
|
* in callbacks, POPs on error before croaking, otherwise it has no
|
||||||
|
effect (and we probably leak)
|
||||||
|
* bugfixes, test fixes
|
||||||
|
- enable tests in %%check
|
||||||
|
* Tue Aug 08 2006 ke@suse.de
|
||||||
- Version 1.59; Changes:
|
- Version 1.59; Changes:
|
||||||
- (revision bumped to match XML::LibXML)
|
- (revision bumped to match XML::LibXML)
|
||||||
- adapted for new XML::LibXML::InputCallback API
|
- adapted for new XML::LibXML::InputCallback API
|
||||||
- support for static linking against libxml2
|
- support for static linking against libxml2
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Mon Dec 12 2005 - ke@suse.de
|
* Mon Dec 12 2005 ke@suse.de
|
||||||
- New package: version 1.58.
|
- New package: version 1.58.
|
||||||
|
Reference in New Issue
Block a user