libhtml-tokeparser-simple-perl 3.16-4 source package in Ubuntu

Changelog

libhtml-tokeparser-simple-perl (3.16-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Remove constraints unnecessary since stretch:
    + Build-Depends: Drop versioned constraint on libmodule-build-perl.
  * Bump debhelper from old 12 to 13.

  [ gregor herrmann ]
  * Add libwww-perl to Build-Depends-Indep and Depends.
    Thanks to Felix Lechner for the bug report. (Closes: #1001164)
  * Update years of packaging copyright.
  * Declare compliance with Debian Policy 4.6.0.
  * Set Rules-Requires-Root: no.
  * Annotate test-only build dependencies with <!nocheck>.

 -- gregor herrmann <email address hidden>  Sun, 05 Dec 2021 17:21:43 +0100

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 main perl
Noble release main perl
Mantic release main perl
Lunar release main perl
Jammy release universe perl

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhtml-tokeparser-simple-perl_3.16-4.dsc 2.6 KiB 7b856e192ccdbe49ab61dae90cc26ed687eb00d17b16863b34baf1ecea690ba6
libhtml-tokeparser-simple-perl_3.16.orig.tar.gz 19.5 KiB ed11135c6839e6e0eaf96952e6ac353a2f22ebb40a721659671e5d2dcc0e4a9d
libhtml-tokeparser-simple-perl_3.16-4.debian.tar.xz 3.2 KiB 154f653a09a4b0b92db2262b38c8bd2467aa76dcbc2fb43bdb15c62422347841

Available diffs

No changes file available.

Binary packages built by this source

libhtml-tokeparser-simple-perl: Perl module used to tokenize HTML documents

 HTML::TokeParser::Simple is a subclass of HTML::TokeParser that uses
 easy-to-remember method calls to work with tokens. For instance,
 rather than writing code like this:
 .
    $token->[0] eq 'S' and $token->[1] eq 'form' .
 .
 you can instead write something simpler like this:
 .
    $token->is_start_tag( 'form' )