libxml-parser-perl 2.44-1build1 source package in Ubuntu

Changelog

libxml-parser-perl (2.44-1build1) xenial; urgency=medium

  * Rebuild for Perl 5.22.1.

 -- Colin Watson <email address hidden>  Thu, 17 Dec 2015 16:26:11 +0000

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Xenial
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Xenial release main perl

Downloads

File Size SHA-256 Checksum
libxml-parser-perl_2.44.orig.tar.gz 231.8 KiB 1ae9d07ee9c35326b3d9aad56eae71a6730a73a116b9fe9e8a4758b7cc033216
libxml-parser-perl_2.44-1build1.debian.tar.xz 51.8 KiB 39546664d4fa9b5c5bf0a6ee3cde4ab79b2a2f9525a94b5247df5c166313a420
libxml-parser-perl_2.44-1build1.dsc 2.1 KiB d468328630ff44f3cfb5e25d457f221059ea40c0402e532063df5f2fc30f459a

Available diffs

View changes file

Binary packages built by this source

libxml-parser-perl: No summary available for libxml-parser-perl in ubuntu yakkety.

No description available for libxml-parser-perl in ubuntu yakkety.

libxml-parser-perl-dbgsym: debug symbols for package libxml-parser-perl

 The XML::Parser 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.