libxml-parser-perl 2.36-1.1build3 source package in Bilimbi Test

Changelog

libxml-parser-perl (2.36-1.1build3) lucid; urgency=low

  * rebuild rest of main for armel armv7/thumb2 optimization;
    UbuntuSpec:mobile-lucid-arm-gcc-v7-thumb2
 -- Alexander Sack <email address hidden>   Sun, 07 Mar 2010 00:55:35 +0100

Upload details

Uploaded by:
Alexander Sack
Uploaded to:
Lucid
Original maintainer:
Debian XML/SGML Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Angry Aardvark release universe perl

Builds

Lucid: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libxml-parser-perl_2.36.orig.tar.gz 224.6 KiB 9fd529867402456bd826fe0e5588d35b3a2e27e586a2fd838d1352b71c2ed73f
libxml-parser-perl_2.36-1.1build3.diff.gz 8.3 KiB a72903857ab0ab0e03d8bd305c4c2815b8ba28437021f60ad29b59a31fd8c18e
libxml-parser-perl_2.36-1.1build3.dsc 2.1 KiB 02d15829f62d8572ee8d760742bf67e0175b46044375149d0089950f4539156b

Available diffs

View changes file

Binary packages built by this source

libxml-parser-perl: Perl module for parsing XML files

 This module provides ways to parse XML documents. It is built on top
 of XML::Parser::Expat, which is a lower level interface to James
 Clark's expat library. Each call to one of the parsing methods
 creates a new instance of XML::Parser::Expat which is then used to
 parse the document. Expat options may be provided when the
 XML::Parser object is created. These options are then passed on to
 the Expat object on each parse call. They can also be given as extra
 arguments to the parse methods, in which case they override options
 given at XML::Parser creation time.
 .
 The behavior of the parser is controlled either by Style and/or
 Handlers options, or by setHandlers method. These all provide
 mechanisms for XML::Parser to set the handlers needed by
 XML::Parser::Expat. If neither Style nor Handlers are specified,
 then parsing just checks the document for being well-formed.
 .
 When underlying handlers get called, they receive as their first
 parameter the Expat object, not the Parser object.