libhtml-tokeparser-simple-perl 3.16-2 source package in Ubuntu
Changelog
libhtml-tokeparser-simple-perl (3.16-2) unstable; urgency=medium [ gregor herrmann ] * Strip trailing slash from metacpan URLs. [ Salvatore Bonaccorso ] * Update Vcs-Browser URL to cgit web frontend [ gregor herrmann ] * debian/control: update Module::Build dependency. * Add debian/upstream/metadata. * Update years of packaging copyright. * Declare compliance with Debian Policy 3.9.6. * Mark package as autopkgtest-able. -- gregor herrmann <email address hidden> Sun, 31 May 2015 13:38:45 +0200
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 | Published | Component | Section | |
---|---|---|---|---|
Focal | release | universe | perl | |
Bionic | release | universe | perl | |
Xenial | release | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libhtml-tokeparser-simple-perl_3.16-2.dsc | 2.4 KiB | 7647941927027688919ed969bf3e726c9cd0b8752dc6fa5b2862ddbbdc34280f |
libhtml-tokeparser-simple-perl_3.16.orig.tar.gz | 19.5 KiB | ed11135c6839e6e0eaf96952e6ac353a2f22ebb40a721659671e5d2dcc0e4a9d |
libhtml-tokeparser-simple-perl_3.16-2.debian.tar.xz | 2.5 KiB | fde4188096089159bd375a229996118230ff1b59047f963f430341377257d37f |
Available diffs
- diff from 3.16-1 to 3.16-2 (1.5 KiB)
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' )