libxml-filter-saxt-perl 0.01-9 source package in Ubuntu

Changelog

libxml-filter-saxt-perl (0.01-9) unstable; urgency=medium

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

  [ Debian Janitor ]
  * Wrap long lines in changelog entries: 0.01-5.
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Bump debhelper from old 12 to 13.

 -- Jelmer Vernooij <email address hidden>  Tue, 06 Dec 2022 18:25:40 +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-filter-saxt-perl_0.01-9.dsc 2.1 KiB 2220a03bf7d9ba0456f0c2e04473797cfaa62473381f85ffc442ab2bcaf925f3
libxml-filter-saxt-perl_0.01.orig.tar.gz 2.8 KiB c68c3cb2cc018b24e0b0b743f7cbd8163e252f3d5c896652a86768253cb67fc5
libxml-filter-saxt-perl_0.01-9.debian.tar.xz 3.1 KiB 7485f2ea367db36952c96de134815e0303939f7e34175f8c46fcc68255b8bb40

Available diffs

No changes file available.

Binary packages built by this source

libxml-filter-saxt-perl: Perl module for replicating events to several event handlers

 The XML::Filter::SAXT module is like the Unix 'tee' command in that it
 multiplexes the input stream to several output streams. In this case, the
 input stream is a PerlSAX event producer (like XML::Parser::PerlSAX) and
 the output streams are PerlSAX handlers or filters.
 .
 The SAXT constructor takes a list of hash references. Each hash
 specifies an output handler. The hash keys can be: DocumentHandler,
 DTDHandler, EntityResolver or Handler, where Handler is a combination
 of the previous three and acts as the default handler. E.g. if
 DocumentHandler is not specified, it will try to use Handler.