libxml-dtdparser-perl 2.01-6 source package in Ubuntu

Changelog

libxml-dtdparser-perl (2.01-6) unstable; urgency=medium

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Bump debhelper from old 12 to 13.
  * Apply multi-arch hints. + libxml-dtdparser-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Mon, 21 Nov 2022 13:14:14 +0000

Upload details

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

See full publishing history Publishing

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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libxml-dtdparser-perl_2.01-6.dsc 2.1 KiB d83a61520fcf46168feabaedbfec0e55989ce19212c782e3daa24d18cf1edfa2
libxml-dtdparser-perl_2.01.orig.tar.gz 6.6 KiB 213b21066b3fa1af60299df32c27645a1d6f14bd514d108cb9426b47e2162d43
libxml-dtdparser-perl_2.01-6.debian.tar.xz 2.5 KiB f94109add97b869657428576c59aa172b45f10c4367f07b470ef0fb1250d9137

Available diffs

No changes file available.

Binary packages built by this source

libxml-dtdparser-perl: perl module providing a quick and dirty DTD parser

 XML::DTDParser parses a DTD file and creates a data structure containing info
 about all tags, their allowed parameters, children, parents, optionality etc.
 .
 The module should be able to parse just about anything, but it
 intentionaly looses some information. Eg. if the DTD specifies that a tag
 should contain either CHILD1 or CHILD2 you only get that CHILD1 and CHILD2
 are optional. That is the DTD contains
 .
 <!ELEMENT FOO (BAR|BAZ)> the result will be the same is if it contained
 .
 <!ELEMENT FOO (BAR?,BAZ?)>
 .
 You get the original unparsed parameter list as well so if you need this
 information you may parse it yourself.