From 17e94c10b450dc86eb671745f99abc700ed6caa4a38ea6c74cf395897a577baa Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Fri, 8 Feb 2008 20:08:27 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-XML-LibXSLT?expand=0&rev=2 --- XML-LibXSLT-1.59.tar.gz | 3 --- XML-LibXSLT-1.66.tar.bz2 | 3 +++ perl-XML-LibXSLT.changes | 19 ++++++++++++++ perl-XML-LibXSLT.spec | 56 ++++++++++++++++++++++++++-------------- 4 files changed, 59 insertions(+), 22 deletions(-) delete mode 100644 XML-LibXSLT-1.59.tar.gz create mode 100644 XML-LibXSLT-1.66.tar.bz2 diff --git a/XML-LibXSLT-1.59.tar.gz b/XML-LibXSLT-1.59.tar.gz deleted file mode 100644 index ef9be9b..0000000 --- a/XML-LibXSLT-1.59.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d0b2330ad6dc0d8ba9a9574b229eb0dd43592e928a47bb6edd141c985fcc6eb -size 32002 diff --git a/XML-LibXSLT-1.66.tar.bz2 b/XML-LibXSLT-1.66.tar.bz2 new file mode 100644 index 0000000..e52f36f --- /dev/null +++ b/XML-LibXSLT-1.66.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37ecfde80beac2c4d4ead6d690afed3e3df7f94853fa64ec81d0da3f86fd937 +size 69812 diff --git a/perl-XML-LibXSLT.changes b/perl-XML-LibXSLT.changes index 3ba02d5..f6e1ef2 100644 --- a/perl-XML-LibXSLT.changes +++ b/perl-XML-LibXSLT.changes @@ -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 + ) + * 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 diff --git a/perl-XML-LibXSLT.spec b/perl-XML-LibXSLT.spec index 659dea0..d6aa679 100644 --- a/perl-XML-LibXSLT.spec +++ b/perl-XML-LibXSLT.spec @@ -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 # package are under the same license as the package itself. # @@ -11,16 +11,16 @@ # norootforbuild Name: perl-XML-LibXSLT -BuildRequires: libxslt-devel -Version: 1.59 +BuildRequires: libxslt-devel perl-XML-LibXML +Version: 1.66 Release: 1 Requires: perl = %{perl_version} -Autoreqprov: on +AutoReqProv: on Group: Development/Libraries/Perl 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 -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 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 that you can find at http://www.xmlsoft.org/XSLT/. -Performance is currently about twice that of XML::Sablotron (based on -XSLTMark tests converted to Perl). The libxslt processor is also highly -standard compliant, with practically all of XSLT 1.0 being supported in -version 0.9 of libxslt. +The performance is currently about twice that of XML::Sablotron (based +on XSLTMark tests converted to Perl). The libxslt processor is also +highly standard compliant, with practically all of XSLT 1.0 being +supported in version 0.9 of libxslt. @@ -41,7 +41,9 @@ version 0.9 of libxslt. %build perl Makefile.PL make -#make test + +%check +make test %install make DESTDIR=$RPM_BUILD_ROOT install_vendor @@ -58,13 +60,29 @@ rm -rf $RPM_BUILD_ROOT %{perl_vendorarch}/auto/XML /var/adm/perl-modules/%{name} -%changelog -n perl-XML-LibXSLT -* Tue Aug 08 2006 - ke@suse.de +%changelog +* 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 + ) + * 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: -- (revision bumped to match XML::LibXML) -- adapted for new XML::LibXML::InputCallback API -- support for static linking against libxml2 -* Wed Jan 25 2006 - mls@suse.de + - (revision bumped to match XML::LibXML) + - adapted for new XML::LibXML::InputCallback API + - support for static linking against libxml2 +* Wed Jan 25 2006 mls@suse.de - converted neededforbuild to BuildRequires -* Mon Dec 12 2005 - ke@suse.de +* Mon Dec 12 2005 ke@suse.de - New package: version 1.58.