libxml-descent-perl 1.04-6 source package in Ubuntu

Changelog

libxml-descent-perl (1.04-6) unstable; urgency=medium

  * Bump Standards-Version to 4.6.1, no changes.
  * Add Rules-Requires-Root to control file.
  * Update spelling errors patch.

 -- Bas Couwenberg <email address hidden>  Fri, 02 Dec 2022 09:27:24 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libxml-descent-perl_1.04-6.dsc 2.2 KiB 09cc42479bbca57dd17059c4487dfc24275321cece8311f9f12fc45b3845e53e
libxml-descent-perl_1.04.orig.tar.gz 14.9 KiB a711b856f8cdf5e647a44c71f967d48c096035b9dbd3f1efbdbea40605afbd50
libxml-descent-perl_1.04-6.debian.tar.xz 3.3 KiB 465b65f96781cd184d53cb67d4f16f390b58e7a097bd802c96645ac81ab4e58e

Available diffs

No changes file available.

Binary packages built by this source

libxml-descent-perl: Perl module for recursive descent XML parsing

 The conventional models for parsing XML are either DOM (a data structure
 representing the entire document tree is created) or SAX (callbacks are
 issued for each element in the XML).
 .
 XML grammar is recursive - so it's nice to be able to write recursive parsers
 for it. XML::Descent allows such parsers to be created.